setInterval woooooes

Hi y’all. This problem of mine is making the rounds! :slight_smile: This is actually the second forum…still cant figure it out :confused:

Basically what I am trying to do is use setInterval to start playing mc’s that are already place on the stage. The clips are named waiting1, waiting2, waiting3, etc. All mc’s are placed on the _root as well as the following code.

var mN = 0

function startMovie() {
mN = mN+1
nextClip = “waiting”+mN;
nextClip.gotoAndPlay(2);
}

setInterval(startMovie, 3000)

stop();

This all works but it doesnt :slight_smile: If I trace nextClip, I get waiting1, waiting2, etc…so the interval and function are working, but the movies arent playing :? Im baffled :? Can anyone see anything weird about this? Thanks in adv!

best,
JTK