I have created a Movie, it needs to be a projector or .exe format
the question I have is how do I get it to go “full screen” cntl+F on its own after its launched, and when the movies end I guess I would add an [exit] button.
Has anyone done this?
Thank You
system
April 24, 2003, 4:57pm
2
fscommand(“fullscreen”, true);
and for the exit button:
on(release){
fscommand("quit");
}
for complete fscommand, search tutorial section & this forum…
system
April 24, 2003, 5:02pm
3
indojepang beat me to it but
fscommand(“fullscreen”, “true”);
this will open up full h+w of window
setting it to false will retain movie dimensions…
fscommand(“allowscale”, “true”);
this will let it scale to fit the window without distortion
set it to false if you want the stage to remain the same size…
your background colour will be the same as the stage
fscommand(“showmenu”, “false”);
hides the menu if the user was to right click
exit as in above post by indojepang
system
April 24, 2003, 5:09pm
4
Thanks Guys, I was just thumbing through the Book