Ok, so you have a folder with a flash file in it plus another totally independent .exe file. How do you create a script that will run the exe file when you press a button inside the flash movie?
You should have the button already to go and you just need it to run the .exe file.
So, on that button you paste the following actionscript code:
on(release){
fscommand(“exec”, “your_app_name.exe”);
}
Related posts:
Thenk you very much