MC slower speed

Hi macromedia forum,
I’m trying to make a movieclip move slower at a certent place in my movieclip. This means, that the speed needs to be lowered when e.g. showing af picture.

Here is the situation. I have a movieclip running different pictures. E.g. the first runs for 115frames and fades out. Instead of runing 115 frames i want the movieclip to run 5 frames (picture fading in) and the stops or delays for 10sek and then goes to frame 6 from where the picture fades out.

Where in the movieclip should i place this Action Script?

Hope some on has an idea to solve this problem

BR.
Mikael Klint

You could try something like this on frame 5:


stop()
function framepause(){
nextFrame()
clearInterval(ID)
}

ID=setInterval(framepause, 10000)

should work,
Adam