A movieclip/actionscript question

Alright so heres the deal:

I have a movie clip that is played in one frame of scene1. The movie clip is a 800X200 clip that consists of 5 images… each 160X200.

What the movie clip does is it shows the first image on the horizontal line for a second or two, then it fades out, and then the next image fades in for a second or two, etc… It shows a girl walking along a wall.

What I need to know how to do is… when you put your curser over any of the slots where the pictures are/were, I want the movie clip to stop until the curser is moved and I want an image to show where the curser is. (Ex. if the curser moves over the first image, I want the first image to be shown and the rest of them to stop popping up until the curser is off of the flash movie). Can anyone help me with how to do this? I’m rather newbish to flash and any help would be great.

Thanks in advance.

**attatch file (zipIt prefferably)

gotta see how you have it set up

Use some mouse actions. When you roll the cursor over the movie clip, make the fading girl clip stop, then when you roll out, make it play again.

Put this on the fading girl movie clip:


on(rollOver){
this.stop();
}
on(rollOut){
this.play();
}

this won’t work if you are using hte main timeline to animate the girl. make sure each fading girl is a movie clip of its own. At the end of each fading girl movie clip, you can put an action that says play the next one. Eg. at the end the first clip, pout an action that says


_root.girl2MC.play();

to make the image show when you roll over, use a similar script to the former:


on(rollOver){
_root.pictureMC._visible = true;
}

or to fade it in


on(rollOver){
_root.pictureMC._alpha +=10;
}

use a rollOut action to hide the movie clip.

Hope it helps.