firegambler
Technical User
hi folks,
i am trying to load a movie into level 10 of another one (which works just fine). the container clip contains a movieclip that works as a timer so that the movie in level 10 should jump to another frame every 5 seconds.
these frames have names such as bewegung1, bewegung2, ...
i tried to make the timer-script generate the path to the frame dynamically as follows:
i am just not able to make flash accept the path to the frame.
please, what am i doing wrong?
you can get the fla's on
regards
Firegambler
i am trying to load a movie into level 10 of another one (which works just fine). the container clip contains a movieclip that works as a timer so that the movie in level 10 should jump to another frame every 5 seconds.
these frames have names such as bewegung1, bewegung2, ...
i tried to make the timer-script generate the path to the frame dynamically as follows:
Code:
onClipEvent (load) {
timer = getTimer()+5000;
bewegungsnummer = 1;
logomove = "bewegung"+bewegungsnummer;
}
onClipEvent (enterFrame) {
verweildauer = getTimer();
if (verweildauer>timer) {
_level10.logo.gotoAndStop(logomove);
timer += 5000;
bewegungsnummer += 1;
}
}
please, what am i doing wrong?
you can get the fla's on
regards
Firegambler