Is this possible?

… to save your flash file as a ‘exe’ set to automatically view at 100% and Full Screen when you open the file?

Thanks.

when u publish a movie open the .swf and go to file > create projector. that will save it as an exe

For full screen put this code on the first frame of the movie

fscommand(“fullscreen”,“true”)

that will tell it to open up full screen :slight_smile:

Thanks, that worked. Is there a way to make view default to 100% instead of Show All? I looked in the publish settings and didnt see anything. Is this done through AS as well? Thank for the help…

fullscreen
fscommand(“fullscreen”, “true”);
size (original or fill the window)
fscommand(“allowscale”, “true”);
//or false
to not or show the menu
fscommand(“showmenu”, “true”);
//or false

:smiley:

(actions+browser/network+fscommand)