How do i set the frame loop time?
Hi everyone..
i imported pngseq files on animate.
I have specified frames that start and end loop in some frames.
==========================================
loop start frame
-> if(!this.loopsPlayed){
this.loopsPlayed = 0;
loop end frame
-> this.loopsplayed ++;
if(this.loopsplayed == 5){
this.loopsplayed = 0;
return;
} else {
this.gotoandplay(8);
}
==========================================
My question is,
I want to write a script that exits the loop after playing only for a specified amount of time(3min, 9min, 10min...), not counting up.
plz help me.
