[RESOLVED] Pause Music Located in an External SWF
Ok, I have a site that loads an external mp3 player. Now I want to pause the sound when the "video" button is pressed. In the mqin swf file, there is a movie clip called "MP3_Player", in that clip is the loaded mp3 player. I used this method to call the mp3 swf file.
Code:
this.createEmptyMovieClip("image", this.getNextHighestDepth());
image.loadMovie("mp3.swf");
image._x = 0;
image._y = 0;
This code pauses the music.
Code:
playbtn.icon.gotoAndStop(1);
playbtn.sound.stop();
playing = false;
Now what path/s do apply to the button in the main swf file to get the music to pause.
Thank you in advance.