flash button for right click
flash button for right click
Out of context: Reply #6
- Started
- Last post
- 7 Responses
- Mishga0
Ok, i was skeptical about the right click be able to interact with a movieclip, after a research, i found this:
my_mc._alpha = 0;
var rootMenu = new ContextMenu();
rootMenu.hideBuiltInItems();
_root.menu = rootMenu;
_root.onEnterFrame = function() {
if (Key.isDown(2)) {
trace("Right Mouse button has been hit");
my_mc._alpha = 100;
}
};Works for me...Now, you need to find a way to disable the native flash context menu, which i think it's not feasible..
via http://flashmove.com/forum/archiā¦- check the link and try the javascript method displayed by FrozenMedia
Mishga
- check the link and try the javascript method displayed by FrozenMedia