I am struck up with movie speed control from panel. It is like volue control though but don’t know how it applies on movie speed contol.
The requirement is : user need to have control of speed control so that he can speed up the viewing of particuler moive. although i guess it’s like volume control where user can increase or decrease the volume in same manner user should change the spped of movie here.
If you use AS3 you can control the frame rate of the movie.
You can also write a little script that would play every other frame 2 times or skip every 3rd frame. Doing it this way will force you to drop frames and takes away from the quality.
[quote=ajcates;2324915]If you use AS3 you can control the frame rate of the movie.
You can also write a little script that would play every other frame 2 times or skip every 3rd frame. Doing it this way will force you to drop frames and takes away from the quality.[/quote]
thanks but can you tell me where i can find that code so far i am using
function clipSpeed(){
mc1._currentframe == mc1._totalframes ?
mc1.play() : mc1.nextFrame();
updateAfterEvent();
};
speedID = setInterval(clipSpeed,10);
// 40 milliseconds is about 25 fps
// mc1 has a looping timeline
but this causes only increment in speed and not reduction while i need both…