Question About Windows.Projectors

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

fscommand(“fullscreen”, true);
and for the exit button:

on(release){
fscommand("quit");
}

for complete fscommand, search tutorial section & this forum…

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

Thanks Guys, I was just thumbing through the Book :slight_smile: