It's easy to do :Originally posted by speck
Thanks, Flash N' Pack and Justmade. I've downloaded both and haven't gotten either to work yet.
In Flash 'N Pack my loadmovie commands are not working. In the preview window the movies load and function fine but when I run the .exe they don't.
Here is how:
If your Movie is in the same Directory as the projector .exe file then you would use this under a button:
Note the Flash Variable [SrcDir] which returns the Path to where the projector.exe is running from...Code:on (release) { result = [SrcDir] add "Movie2.swf"; loadMovieNum (result, 0); }
If you Embed your Movie .swf file inside the .exe file trough ADD Files Section then you would use :
Where [TempDir] holds the Path to Windows Temp Folder. To learn more about the Predefined variables please go here : http://www.flashnpack.com/helpCode:on (release) { result = [TempDir] add "Movie2.swf"; loadMovieNum (result, 0); }
Thank you for taking the time to evaluate our product if you have any other questions please don't hesitate to contact us @ [email protected]




Reply With Quote