Movie Clip Buttons
Movie Clip Buttons
- Started
- Last post
- 2 Responses
- nosaj
I'm looking to have Movie Clips in Flash act as buttons. I can get it to work if I have the "on (release) {..." commands in the Action SCript on the button, but can't seems to get it to work by calling it from the main timeline. Any suggestions or links that could help me out?
- ********0
have you given the clips a name... e.g... myButton_mc
just do...
myButton_mc.onPress = function() {
trace ("I was clicked")
}unless you're doing AS3.0 or something... then its all together different
- nosaj0
thanks mimeartist