Thank you for the nice application.
How to pass a variable to "SL4A"?
This code does not work.
Automagic Action
ACTION TYPE = Plugin (Experimental)
PLUGIN = SL4A
OVERRIDE SETTINGS
//putBoolean("com.googlecode.android_scripting.extra.EXTRA_LAUNCH_IN_BACKGROUND", true);
//putString("com.googlecode.android_scripting.extra.SCRIPT_PATH", "/mnt/sdcard/sl4a/scripts/test.py");
putString("TEST", "TEST Message!");
SL4A PythonScript (/mnt/sdcard/sl4a/scripts/test.py)
import sys
import android
droid = android.Android()
try:
teststr = droid.getIntent().result[u'extras'][u'TEST']
droid.makeToast(teststr)
except:
droid.makeToast('Error') <-----

sys.exit(1)
----
Best Regards