Back

SetSharedApp

JS Py
Hello World

Define a DroidScript Project which will be automatically started when DS received shared data.

app.SetSharedApp( name )

Check out the 'Shared Data' sample in the DS samples section.

See Also: SetAutoStart

Example - Example

function OnStart()
{
    app.SetSharedApp( "Hello World" );
}
from native import app

def OnStart():
    app.SetSharedApp("Hello World")
Copy All       Run      
String: “AppName”