Hi Everyone,
I've had a look around but couldn't find any answers so thought I'd ask you lot. :)
I'm using actionscript 2.0. What I have on my stage is a button that when you mouse over it, pops up a movie clip. Then when you move you mouse off it, it disappears after about 3 seconds. What I'd like it to do is fade out after 3 seconds rather than disappearing. For some reason this seems to be pretty much impossible with my existing code. Please help!
This is what I have so far:
Cheers,
Tom
I've had a look around but couldn't find any answers so thought I'd ask you lot. :)
I'm using actionscript 2.0. What I have on my stage is a button that when you mouse over it, pops up a movie clip. Then when you move you mouse off it, it disappears after about 3 seconds. What I'd like it to do is fade out after 3 seconds rather than disappearing. For some reason this seems to be pretty much impossible with my existing code. Please help!
This is what I have so far:
Code:
on (rollOut) { function wait() { var myInterval = setInterval(function () { _root.nigeria_text._visible = false; clearInterval(myInterval); }, 3*500); } wait(); }
Cheers,
Tom
Comment