Apr 2, 2004 #1 hoja Technical User Joined Dec 3, 2003 Messages 102 Location US How can you disable the richt click so the end-user does not have the options of zooming in or out of the flash movie? help please thank you
How can you disable the richt click so the end-user does not have the options of zooming in or out of the flash movie? help please thank you
Apr 2, 2004 #2 oldnewbie Technical User Joined Dec 6, 2000 Messages 9,142 Location CA From MX and up, you can use the following on the first frame... Stage.showMenu = false; That will only work with the Flash player version 6 and up. For previous versions of the Flash player, you'll have to use the following in your html's object and embed tags... ...<PARAM NAME=menu VALUE=false>... (object) ... menu=false... (embed) You can somewhat change the context menu from MX2004... http://www.actionscripts.org/tutorials/intermediate/context_menu/index.shtml Upvote 0 Downvote
From MX and up, you can use the following on the first frame... Stage.showMenu = false; That will only work with the Flash player version 6 and up. For previous versions of the Flash player, you'll have to use the following in your html's object and embed tags... ...<PARAM NAME=menu VALUE=false>... (object) ... menu=false... (embed) You can somewhat change the context menu from MX2004... http://www.actionscripts.org/tutorials/intermediate/context_menu/index.shtml