TigerGirl7
Programmer
Hey,
My movie clip contains a series of 40 keyframes. I want to program the clip to advance to a the next key frame every 10 seconds or so.
I could place the following actionscript on each keyframe:
function move()
{
nextFrame();
}
setInterval(move, 10000);
but if I ever want to change the interval rate, it would be a nightmare.
How can I create a control clip (i think that's what it's called) that would control the clip as described above in such a way that would make it simple to edit the rate.
any suggestions?
cheers,
jen
My movie clip contains a series of 40 keyframes. I want to program the clip to advance to a the next key frame every 10 seconds or so.
I could place the following actionscript on each keyframe:
function move()
{
nextFrame();
}
setInterval(move, 10000);
but if I ever want to change the interval rate, it would be a nightmare.
How can I create a control clip (i think that's what it's called) that would control the clip as described above in such a way that would make it simple to edit the rate.
any suggestions?
cheers,
jen