Hello,
I currently have a pause/play button and a replay button that controls a movieclip animation and audio as well.

My movieclip anim. is only 30 seconds and the audio is longer than that, so right now if the play button is pressed, it replays the movieclip animation over again. Here's the code:

playpause_btn.onRelease = function() {
if (audioplay == true) {
p = Math.round(_root.Sound2.position / 1000);
_root.Sound2.stop();
audioplay = false;
play_mc._visible = true;
pause_mc._visible = false;
content2anim_mc.stop();

} else {
stopAllSounds();
_root.Sound2.start(p, 0);
audioplay = true;
pause_mc._visible = true;
play_mc._visible = false;
content2anim_mc.play();
}
};

So, you can see that my movieclip animation called content2anim_mc is told to play if the play button is pressed, but I don't want it to do that if it's already done playing through once. Thanks in advance for any assistance with this!