Hi
I’m using the following code:
[AS]var my_cm:ContextMenu = new ContextMenu();
my_cm.hideBuiltInItems();
this.menu = my_cm;[/AS]
… and in doing so, all the normal buttons fail to work. I’m using these kind of commands for my buttons:
[AS]menu.btn2.onRelease = function() {
gotoAndStop(3);
}[/AS]
Any ideas as to why it’s doing this?