Welcome to Dream.In.Code
Getting Help is Easy!

Join 105,763 Programmers for FREE! Ask your question and get quick answers from experts. There are 1,675 online right now! We've got more than 500 tutorials and 2,000 snippets. Join and find out why Dream.In.Code is the #1 programming help community on the internet! Registration is fast and FREE... Join Now!



How to stop sound in Flash Cs3?

 
Reply to this topicStart new topic

How to stop sound in Flash Cs3?

Jonson
post 1 Jul, 2008 - 08:16 PM
Post #1


New D.I.C Head

*
Joined: 17 Apr, 2008
Posts: 35

Here is my code:
CODE
var s:Sound = new Sound();
var req:URLRequest = new URLRequest("music.mp3");
s.load(req);
s.play(0, 100);

music_txt.mouseEnabled = false;
music_btn.addEventListener(MouseEvent.CLICK,Music);

function Music(event:MouseEvent):void
{
    if(music_txt.text == "Music Off")
    {
        music_txt.text = "Music On";
        try
        {
            s.close();
        }
        catch (error:IOError)
        {
        }

    }
    else
    if(music_txt.text == "Music On")
    {
        music_txt.text = "Music Off";
    }

}


i still cant stop the sound.any idea?
User is offlineProfile CardPM

Go to the top of the page


Jonson
post 1 Jul, 2008 - 11:13 PM
Post #2


New D.I.C Head

*
Joined: 17 Apr, 2008
Posts: 35

Ok guys, i solved it already. Heres the code:

CODE

var s:Sound;
var c:SoundChannel;
var p:int;
var playings:Boolean;

s = new Sound(new URLRequest("music.mp3"));
c = s.play();
//playings= true;

music_txt.mouseEnabled = false;
music_btn.addEventListener(MouseEvent.CLICK,Music);

function Music(event:MouseEvent):void
{
    if(music_txt.text == "Music Off")
    {
        music_txt.text = "Music On";
        p = c.position;
        c.stop();

    }
    else
    if(music_txt.text == "Music On")
    {
        music_txt.text = "Music Off";
        c = s.play(p);
    }

}



User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 8/21/08 01:51PM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month