On some flash websites the zoom in out feature is turned off on the movie. How do you turn this off so right clicking doesn't allow this?
Regards,
mastacraft,
> On some flash websites the zoom in out feature is turned off
> on the movie. How do you turn this off so right clicking doesn't
> allow this?
You can either set this in the HTML that embeds your SWF (deselect
"Display menu" in the HTML tab of the Publish Settings dialog box) or use
the following three lines in frame 1:
var menu:ContextMenu = new ContextMenu();
menu.hideBuiltInItems();
this.menu = menu;
... which instantiates a new ContextMenu object, hides its items (except for
a few that must always show) and sets the main timeline's MovieClip.menu
property to that menu.
David Stiller
Adobe Community Expert
Dev blog, http://www.quip.net/blog/
"Luck is the residue of good design."