PDA

View Full Version : controlling movie clip


toto
01-09-2002, 02:34 AM
Hello,

I am just beginning to learn action scripting. So, please be patient w/my simple questions.
I have a movie clip on the main timeline, which is controlled by a button. The movie clip is comprised of several symbols that play in sequence. When you roll out you stop at a particular image. As I have it now, when you roll back on - it starts to play the sequence from the beginning. I would like NOT to go back to the beginning, but to continue to the next symbol. Any suggestions would be appreciated. Attached is simplified Fla. in case I am not making myself clear. Thank you.

Billy T
01-09-2002, 04:15 AM
just change the tell target to

on (rollOver) {
_root.mc1.play();
}

that way it plays from wherever it is up to

cheers

toto
01-09-2002, 04:35 AM
Thank you Billy T, that does the job:)