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!

Disable resize in exe created by flash

Status
Not open for further replies.

SERT

Technical User
Sep 17, 2003
3
US
I want to disable resize option in exe file created from flash.
can anyone help me out.
thanks,
anil
 
On the first frame, add this Frame action:

fscommand ("allowscale", "false");

Regards,

new.gif
 
thanks
i tried that but it doesnot disable the resize icon in the menubar.
 
fscommand ("allowscale", "false");
fscommand ("showmenu", "false");

Next question? Fullscreen maybe? [pipe]

Regards,

new.gif
 
sorry i tried all but i am not able to solve the problem.
do you have any other idea to help me out of this.
thanks.
anil
 
If you're on Windows,

fscommand ("allowscale", "false");
fscommand ("showmenu", "false");

Will at least disable the menus (right-click & top)
Add...

fscommand ("fullscreen", "true");

Which will rid you of the title bar!

Regards,
new.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top