'twice loop' in Flash?
'twice loop' in Flash?
Out of context: Reply #2
- Started
- Last post
- 7 Responses
- smartK0
just put this on the last frame:
frame 1: count=1;
last frame:
count++;
if (count>2) {
stop();
}
else {
gotoAndPlay(1);
}
just put this on the last frame:
frame 1: count=1;
last frame:
count++;
if (count>2) {
stop();
}
else {
gotoAndPlay(1);
}