PDA

View Full Version : Loading clip in different frame rate


Aladdin610
12-17-2003, 02:03 AM
Hi,

My question is how to make the loaded clip's frame rate be slower from the main file.

-Nando

Billy T
12-17-2003, 02:27 AM
bit of a hack but you could halve the speed by putting something like this on the main timeline of the extenral movie


i=0;
this.onEnterFrame=function(){
i++;
if(i==2){
gotoAndStop(_currentframe+1);
i=0;
}
}


cheers

Aladdin610
12-17-2003, 09:56 PM
Thanks! I'll go try it.

-Nando