EasyManua.ls Logo

MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE - Stop Function; Stopallsounds Function

MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE
1378 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
Global Functions 103
stop function
stop() : Void
Stops the SWF file that is currently playing. The most common use of this action is to control
movie clips with buttons.
Availability: ActionScript 1.0; Flash Player 2
See also
gotoAndStop function, gotoAndStop (MovieClip.gotoAndStop method)
stopAllSounds function
stopAllSounds() : Void
Stops all sounds currently playing in a SWF file without stopping the playhead. Sounds set to
stream will resume playing as the playhead moves over the frames in which they are located.
Availability: ActionScript 1.0; Flash Player 3
Example
The following code creates a text field, in which the song's ID3 information appears. A new
Sound object instance is created, and your MP3 is loaded into the SWF file. ID3 information
is extracted from the sound file. When the user clicks
stop_mc, the sound is paused. When
the user clicks
play_mc, the song resumes from its paused position.
this.createTextField("songinfo_txt", this.getNextHighestDepth, 0, 0,
Stage.width, 22);
var bg_sound:Sound = new Sound();
bg_sound.loadSound("yourSong.mp3", true);
bg_sound.onID3 = function() {
songinfo_txt.text = "(" + this.id3.artist + ") " + this.id3.album + " - " +
this.id3.track + " - "
+ this.id3.songname;
for (prop in this.id3) {
trace(prop+" = "+this.id3[prop]);
}
trace("ID3 loaded.");
};
this.play_mc.onRelease = function() {
/* get the current offset. if you stop all sounds and click the play
button, the MP3 continues from
where it was stopped, instead of restarting from the beginning. */
var numSecondsOffset:Number = (bg_sound.position/1000);
bg_sound.start(numSecondsOffset);
};

Table of Contents

Related product manuals