Title: Disable context menu in Flash
Author: StatusQuo
e-mail: StatusQu0@hotmail.com

This movie shows how completely to disable context menu of the flash player (settings, about, etc.)
The tricks is in <param name=wmode value=transparent> tag. This will make the movie transparent and when you click with mouse
over it an event will be send to both flash player and browser. Then you can capture the mouse event with JavaScript and do what
you want. To make flash context menu disappear i have use alert('') action. You can send message to flash message that right or middle
mouse button is pressed. But without alert the context menu will appear again. To send variable to movie use this:
eval('movie.SetVariable("variable","value")');
Unfortunately you can use this feature only in:
Flash version:
	6,0,65,0 (Windows)
	6,0,67,0 (Macintosh)
	or higher
Browsers:
	Internet Explorer 3 or higher (Windows)
	Internet Explorer 5.1* and 5.2* (Macintosh)
	Netscape 7.0*
	Mozilla 1.0 or higher*
	AOL* 
	CompuServe* 


Enjoy!