Playing a simple sound

pleas help me
I want to play a simple mp3 is located in library
by what kind simple method i can play it in a button
or mc .
thank you

simple method?

create a new movie clip.

Create a new keyframe at frame 2

select frame two, and then drag the sound from your library to the stage.

place a stop(); action in frame 1

go back to the stage and place your movie clip on it’s own layer.

open your “instance” panel, and with the movie clip selected, enter an instance name into the panel.

On the button have the following script

on(release){

  • theMovieClipInstanceName*.play();
    }