Trying to find a tutorial on fucntions for the mouse right button. I would like something like this running.
onClipEvent (rightMouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
Obviously this doesnt work but is it possible to get something similar working?
system
2
no. A published Flash movie does not support right clicking.
system
3
thanks for quick reply and the bad news. 
-woj-
system
4
onClipEvent (enterFrame) {
if (Key.isDown(2)) {
xend = _root._xmouse;
yend = _root._ymouse;
}
}

of course, the stupid menu will show up on everytime right click… :-\