hi…
I created a movie clip which pause and play the animation. This is the action script attached to the movie clip
on(release){
if(moviePlay == true){ //movie is already playing.
this.stop(); //this or what ever the movie name is.
moviePlay = false;
}else{
this.play(); //once again this or whatever the movie name is.
moviePlay = true;
}
}
i would like to attach a sound (mp3) to this movie clip. When the movie clip plays the sound plays and pauses when it pauses.
tahnks!
:pleased: