:: MOUSE EVENTS ::
:: MOUSE EVENTS ::
Out of context: Reply #1
- Started
- Last post
- 18 Responses
- finnpimp0
in flash mx, give the button an instance name, say "foo", then script
on (rollOver) {
foo.enabled = false;
}and the MC to be unloaded:
onClipEvent (unload){
foo.enabled = true;
}working, yes?