I need a snippet of code to add to my Flash website file to disable the right click options.
Most options can be disabled by adding a few lines of code. More detail below.
To disable most of the options in the right-click menu, you need to set the menu to false:
<object type="application/x-shockwave-flash" menu="false" data="index.swf" width="550" height="400"> <param name="movie" value="index.swf" /> <param name="menu" value="false" />
This solution was provided by Paul Trani.
+