Avg. Rating 5.0

Problem

I need a snippet of code to add to my Flash website file to disable the right click options.

Solution

Most options can be disabled by adding a few lines of code. More detail below.

Detailed explanation

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.


+
This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License. Permissions beyond the scope of this license, pertaining to the examples of code included within this work are available at Adobe.

Report abuse

Related recipes