RightClick in Flash
Tuesday, July 12th, 2005Do you need catch right-click in Flash?
Here is the code:
[as]
function onEnterFrame()
{
if(Key.isDown(2))
{
onRightMouseDown();
}
}
function onEnterFrame()
{
if(Key.isDown(2))
{
onRightMouseDown();
}
}
function onRightMouseDown()
{
trace(”right mouse clicked”);
}
[/as]
It would be fine to know how to disable context menu on right-click, but I think this is still good information for you.
[via FlashCoders list]
tagged under:





No Comments Yet
You can be the first to comment!
Live Preview
Leave a comment