Hey, I’m a newbie, and would like to know how I can get a movie clip to play from a button on mouse release, stop on the last frame, and then make the clip disappear when the button is clicked again. thanks for your help…
Ok this is just an example but
i. Make your movie clip (with all the animations inside). After the last frame put a blank frame. Click on the first frame of this movieclip and press f9. Put these actions on:
stop();
ii. Give this movieclip an instance name of ‘myMovie’
iii. Make your button.
iv. Select your button and press f9. Put these actions on it:
on (release) {
_root.myMovie.play();
}
That should do the trick.