Changing playback rate - faked

Any hints/code/examples on how to control a movie clip to play, say every 3rd frame instead of every 1? Thus creating the illusion it is playing faster…

cheers in advance.

bump

Maybe make some empty movie clip with some code like:


onClipEvent(enterFrame){
playFrame = 1;
gotoAndPlay("playFrame");
playFrame += 2;
}

hmmm, speedy and spot on (and so simple I feel bad for asking) :smiley:

thanks for your time.

:cheers: