-
1. Re: Actionscript 2.0 clear all movie clips
kglad Jan 16, 2013 7:28 AM (in response to mhartington)what do you mean by "..clears all previous clips.."?
previous to what? by clear, do you mean you want the movieclips removed from the stage? or move the playhead to the first frame of those movieclips?
-
2. Re: Actionscript 2.0 clear all movie clips
mhartington Jan 16, 2013 7:39 AM (in response to kglad)my apologies, its sort of animate tooltip file, where when you hover over a number, a animate clip of the tooltip comes to screen. As of now, if I would to roll over more than 1 number, both tooltips would visible. I want to to be that if i went from one number to another, as soon as I roll over the second number, the previous one automatically dissapears.
-
3. Re: Actionscript 2.0 clear all movie clips
kglad Jan 16, 2013 8:36 AM (in response to mhartington)copy and paste your tooltip code.
-
4. Re: Actionscript 2.0 clear all movie clips
mhartington Jan 16, 2013 8:42 AM (in response to kglad)eh that may not be possible, but what the set up is each tooltip is its own layer with the clips pasted in.
In each clip theres about 5 layers that are involved with the animate. My code to activate it is
on(rollover){
gotoAndPlay(2);}
that triggers the animation. then theres a simple "close" button that just plays everything in reverse.
-
5. Re: Actionscript 2.0 clear all movie clips
kglad Jan 16, 2013 9:06 AM (in response to mhartington)then you'll need to use the timeline to remove previous tooltips and that may not be practical if you have to use the timeline to account for all possible tooltip sequences.
-
6. Re: Actionscript 2.0 clear all movie clips
mhartington Jan 16, 2013 10:03 AM (in response to kglad)I was able to resolve it but just placing this in the rollover action
on(rollOver){
_root.mc1.gotoAndStop(1);
}
It may not be the practical way to do things, but it gets the job done



