Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Exit after Escaping out of full screen mode.

Status
Not open for further replies.

mark01

Technical User
Jan 17, 2001
600
0
0
US
In Flash MX, how would I go about Exiting after escaping out of full screen mode?
 
Hi,

I'm not sure, but it sounds like you're exporting the file as an EXE or projector. If so, you can use the fscommand to shut down the presentation.

Put this command in the first frame of your movie:
fscommand("fullscreen", "true");

Then attach this command to a button:
on(release){
fscommand("quit", );
}
To find this is Flash online help, look up fscommand.

Regards,
Kesey Seven
 
Yes, I am exporting the file as an EXE. Thank you!

Is there anyway to prevent the user from hitting Escape to exit?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top