Referencing the current movie clip

how do you reference a current movie clip?

for instance, a sequence of movie clips are playing one after another and if i were to press the “skip intro” button, i would like to stop the current movie clip.

stop();

?

kind of broad.

let’s say my flash movie consists of 10 movie clips (1-10). movie clip #1 plays and after it finishes, movie clip #2 plays, and so on. i have a “skip intro” button. if this button is pressed, i would like to advance all the way to movie clip #10. i can get this latter part to happen, but the problem is, the other movie clips are still playing.

for example, if i clicked the button while movie clip #2 was playing, both movie clip #10 and #2 would be playing.

Can you post your .fla? It would be clearer for us to see what’s the problem

Ubik

Why don’t you just turn the whole sequence into 1 mc?
Then make 10 framelabels, one for each section.
Then on your button, just say


gotoAndPlay("yourLabel");