views:

619

answers:

1

Simple question. I have a movieclip. I have an onrollover event for it:

this.mc.onRollOver = function() {

}

Whats the equivelent for a mouse click event? I tried onMouseClick but it didnt work. I havent used flash in a long time and im a little lost :(

+1  A: 

You can use either button.onRelease or button.onPress

Kesty
onRelease was what I needed. Thanks
Ozzy