Running python app from Adobe Air and Flash

Started by
2 comments, last by Black Knight 13 years, 9 months ago
Hello guys,

Anyone got an idea on how to run a python application from a flash application.

The flash app is a menu with multiple buttons and when one of the buttons is clicked I want to launch a python file.

This is running on the XO laptops which are running a modified version of fedora.
Advertisement
Desperate bump.
The Adobe AIR 2.0 runtime has a function to launch applications... don't remember the class, unfortunately.

EDIT: It's NativeProcess.
We have found the following :
link

We will try to run the python script directly if that doesn't work we will try to run a native c application like the following.

#include <stdlib.h>
int main(int argc,char* argv[])
{
system("python launcher.py")
return 1;
}

This topic is closed to new replies.

Advertisement