basic actionscript help
basic actionscript help
Out of context: Reply #4
- Started
- Last post
- 5 Responses
- ********0
in the button in the MC:
on(rollOver){
thething = 'true';
}
on(rollOut){
thething = 'false';
}the MC's onenter:
onClipEvent(enterFrame){
if(thething){
whatever += 1;
}
}I reckon.