actionscript help?
actionscript help?
- Started
- Last post
- 3 Responses
- nicedream
hi all. i'm trying to control a movieclip within a movie with the script i found here: http://www.kirupa.com/developer/…
it advances frame by frame at the set interval, but once the movie loads the movieclip a second time, the timing is all off. any ideas on what i'm missing?
- unclesize0
Do you use a clearInterval(); anywhere? Its possible its counting twice when it loads again.
- nicedream0
yes, using clearInterval. with no luck.
- unclesize0
I think the best resource for this would be the Flash AS help dictionary. This is a generic function:
function Bouncer() {
_root.gotoAndPlay(4);
clearInterval(Clearing);
}
var Clearing;
Clearing = setInterval(Bouncer, 1000);