views:

393

answers:

0

How can I run a Python script from a Flash Lite SWF?


One such method is using SWF2GO to package the SWF + Py script together, after which you can launch the Python script by flash commands.

Intelli-Launch Technology v2: Python for S60 background script launcher


Another hopeful is Flash Lite's fscommand("Launch","myapp.app") function, but it looks like this method does not run Python scripts properly.

We have attempted naïve approaches such as
fscommand("launch", "e:\\System\\Apps\\Python\\my\\myprog.py, arg1, arg2") or
fscommand("launch", "e:\\System\\Apps\\Python\\Python.app, e:\\System\\Apps\\Python\\my\\myprog.py, arg1, arg2"),
but to no avail.