RightClick in Flash
Utorok, Júl 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]
No Comments Yet
You can be the first to comment!
Sorry, comments for this entry are closed at this time.