tags:

views:

529

answers:

4

How can we invoke a python script using AIR 1.5?

+1  A: 

You cannot directly invoke system commands or run an executable (the python interpreter) from within an AIR application. If it's possible to share what exactly you want to do, maybe we can suggest alternatives.

If it's really really (that's two reallys) important to run an executable from AIR lookup the CommandProxy demo.

dirkgently
A: 

For example through AMF: http://pyamf.org/

vartec
A: 

Hypothetically, Adobe Alchemy technology may allow you to port Python interpreter to Flash.

Though I seriously doubt that's the approach you want to use. Depending on task there should be easier solutions.

dragonfly
A: 

Air 2.0 has a native process API.

toddstavish

related questions