Has anyone come across this?
I’ve created a button with a rollover state and everything. Popped it on the stage and gave it an instance name of “myBtn_btn”.
on root i wrote this:
myBtn_btn.onRelease = function(){
trace(“hello world”);
}
but nothing happens.
I have many other buttons. all do different things and work find.
everything has a different instance name. no linkage is the same.
I’ve double checked and triple checked that the name is “myBtn_btn” in the function AND the button. I’ve even tried recreating a different button with different names and still nothing. It’s like I can’t make any more button actions.
any clues?