Is there a function in Roomle to import a Layout, that i want to change ? (.dwg, .dxf,) - roomle

i want to import a Layout in Roomle, but i can only see the function to make it myself. Is there a function to import a ".dwg" or a ".dxf"
We have the task to change a existing Layout in Roomle.
Thanks in advance.

It's not possible to import a plan into Roomle using a .dwg or .dxf file.
You can change an existing plan in the iOS App or in the Web App (https://www.roomle.com/app/login).

Related

tweepy first program: doesn't recognize API call

I am trying to write my first "helloworld" program to post on Twitter.
The program works fine with print("helloworld").
It also works with import tweepy.
But as soon as I try to assign my IDs, I get errors that it doesn't recognize the API calls. (see attached screenshot)
Maybe its obvious, but I am a beginner Python programmer, and I'm basically copying what I saw in a YouTube video.
code+terminal screenshot
You should be able to fix this issue by replacing the import with
from tweepy.auth import OAuthHandler
and then replace your auth= line with
auth = OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
Now as to why this is occuring - it could be dependant on what's being imported. If you have another tweepy.py file for example, it could be getting picked up as the file to import from, which of course, is likely wrong. Using the from import resolves this. You can find out which file was being used by adding (still using the code from the version in the image you posted)
print(tweepy.__file__)
This'll give you an idea whether the correct file was being imported or not.
Hope that helps.
I accidentally typed “python helloworld.py” instead of “python3”and it magically worked! So now I just run it that way.

ios - how to import user external XLS/CSV files into the application

My user needs to create lists with 2 or 3 columns. It will be a pain to do one-by-one with iOS keyboard.
So, is there any way the user can import XLS or CSV files into the application? How can I do this? Maybe a document picker?
PS: this is not a file already on app. This is a file user can create on computer and then import to application.

Sharing class and database with Share extension

I am trying to share class and database from my app to app extension . I have tried to add classes from the TARGET Membership, but on adding following issue comes
Could any one help me to access my class and database in share extension.
Thanks in advance
To access UIApplication object you must import the UIKit framework like:
import UIKit
or if you only want to import UIApplication class you can write
import class UIKit.UIApplication
Also note that if you want to use CoreData in your Share extension, you will need to create new container and set the storeURL to point to created container.

Xcode Playground: new pages cannot refer to source files

I was very excited to view the video on WWDC2015 Session 405 Authoring Rich Playgrounds , in that they seem to promise to reuse a piece of code in Sources, among different Pages.
However, it seems not happen automatically. I mean, a new page cannot aceess a func which is defined in a Source swift file.
What should I do to access func defined in a source file?
Thanks
You need to make the function or class public.

Origami couldn't export iOS code (Swipe-away navigation)

I am trying to export the swipe-away navigation iOS code from the following example but it return only an empty m file. Anything I missed?
http://facebook.github.io/origami/tutorials/
Alex
You can only export nodes that belongs to Pop/Rebound library. Swipe, interaction and hit zones are not part of that library.

Resources