mc.onRollover= function() {
mc.onRollover= function() {
- Started
- Last post
- 2 Responses
- ********
You know when you make a movieclip into a button...
Well how do you remove that?
As sometimes in a project I'm doing there may have a button inside one, and if that clip has been used for a button before... it doesn't let the button inside become active.
- rafalski0
mc.onRollover = null
or
mc.onRollover = undefined
but more elegant way is
delete mc.onRollover
- ********0
cool... thanks... will see how i get on :)