:: MOUSE EVENTS ::
:: MOUSE EVENTS ::
Out of context: Reply #13
- Started
- Last post
- 18 Responses
- unformatted0
make sense - not really.
but let me try anyway, so when you rollover the button, you want to disable that button and at the same time load a movie?
on (rollover) {
buttonName.enabled = false;
loadmovie(blahblah);
}then when that movie is unloaded you want to enable that same button?
onclipevent(unload){
buttonName.enabled = true;
}depending on where your movieclips and buttons are you might try adding _root.buttonName