Ok, I know how to use flash to build simple buttons (mostly rely on script assist)... and thats fine, but I know its possible to centralize all the actionscript assignements for a series of buttons, so that early on in my movie, I click on a frame, add the actionscript that says _root.myMC.button_1.onRollover = function.....
and so on...
I have setup a simple movie to try to learn how to do this but its not working at all -- Im just calling TRACE("some text") and trying to get the button to trigger the trace message in the output window as a simple test.
I have the button inside a movie clip, that doent prevent this sort of thing from working, does it?
heres the A.S. I am using:
What am I missing here?
and so on...
I have setup a simple movie to try to learn how to do this but its not working at all -- Im just calling TRACE("some text") and trying to get the button to trigger the trace message in the output window as a simple test.
I have the button inside a movie clip, that doent prevent this sort of thing from working, does it?
heres the A.S. I am using:
Code:
_root.navigation.button_1.onRollover= function(){
trace("Ok, I see you rolled over this button!")
}
What am I missing here?