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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to remove flash player window when running projector movie

Status
Not open for further replies.

mdundek

Programmer
Sep 30, 2003
1
FR
Hi fellas,

I am working on a Flash CD-rom and I would like to know how I can remove this window frame on my projector movie(Flash player window containing file, view, contol, help menu).

Thanks
Michael
 
Put this code in the first frame of your FLA:

fscommand ("allowscale", "false");
fscommand ("fullscreen", "true");

That should run your projector fullscreen. Just remember if you use this that you should ALWAYS have an EXIT button in plain view with this action on it:

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

That should stop people getting stuck in your projector with no way out
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top