MouseEvent.RIGHT_CLICK not working
So I can't get MouseEvent.RIGHT_CLICK to work. I'm using Flash CS6 and Flash Player version 11.5 (right click events were added in 11.4, I believe) but when I test the movie, right clicking does nothing.
Here is some test code that doesn't work:
public function Main()
{
stage.addEventListener(MouseEvent.RIGHT_CLICK, traceText);
}
private function traceText(e:MouseEvent):void
{
trace("click");
}
This successfully gets rid of the context menu that would normally pop up on the Flash player, but I'm not getting any traced text from right clicking on the stage.