Hi,
thanks a lot for all the answer. But this doesn't solve my problem. So for now i made a simple example for everyone which will show my problem. I created a python script like this:
import ui
import os
def close(sender):
v.close()
os.abort()
v = ui.load_view()
v.present('sheet')
and a pyui:
[
{
"nodes" : [
{
"nodes" : [
],
"frame" : "{{95, 162}, {80, 55}}",
"class" : "Button",
"attributes" : {
"action" : "close",
"frame" : "{{95, 217}, {80, 32}}",
"title" : "Button",
"uuid" : "B05F9F96-41D2-41C1-B4E1-C27F68D5CD4A",
"class" : "Button",
"name" : "button1",
"font_size" : 15
},
"selected" : true
}
],
"frame" : "{{0, 0}, {270, 466}}",
"class" : "View",
"attributes" : {
"enabled" : true,
"background_color" : "RGBA(1.000000,1.000000,1.000000,1.000000)",
"tint_color" : "RGBA(0.000000,0.478000,1.000000,1.000000)",
"border_color" : "RGBA(0.000000,0.000000,0.000000,1.000000)",
"flex" : ""
},
"selected" : false
}
]
With this script and UI i just add a Button on the Home screen like it is described in Pythonista.
Then i close all app on my iphone. I press the button and the App is opening twice. I press the Button in the UI and it closes. I see the normal Iphone homescren. If i now press the Home screen Button of the App (the shortcut), i only see a screen from Pythonista with a complete green background. I have to close manually from the IOS all pythonista screen and after this i can normally start the shortcut of the script again. So how can help me with this.
Thanks a lot.
cu kami