I am new to SWFKit. I used it to package several SWF files into a single EXE file. We send out flash demos to customers, and one inparticular had a main SWF (being used as a menu) to access other SWF. The external SWFs are loaded into this main menu. So, I needed to package all of these together in one easy-to-use EXE file. So far, everything has worked out perfectly.
Except, one button on the main menu opens up an external Powerpoint slideshow (companyOverview.pps)
Right now, I have the PPS stored in a fscommand folder, and the Actionscript in my main menu executes a .bat file. I imported that fscommand folder into my SWFkit project, but the resulting EXE will not open the PPS. Why?
The Actionscript in my flash file I am using is:
Code:
fscommand ("exec", "companyOverview.bat");
Do I need to put some script in the SWFKit file as well?