flash hates me and I love her.
flash hates me and I love her.
Out of context: Reply #1
- Started
- Last post
- 3 Responses
- unfittoprint0
something here
this.slide_mc.gotoAndPlay
(sceneArray
);should be
this.slide_mc.gotoAndPlay
(sceneArray[num]
);you could also try to put the entire nScene in the setInterval like:
setInterval( function(){
if( num >= sceneArray.length)
{
num=0;
}
// change scene
this.slide_mc.gotoAndPlay
(sceneArray
);
// trace
trace("gotoAndPlay("+scen
eArray
+")");
// up counter
num++;
} , 10*500 );