ActionScript 3.0 :: Audio Toggle - Mute / Play Music Again In SWF?
Dec 30, 2011
I call it a hiccup because the code works; but it's backwards. When I hit the audio button it plays the music and when I hit it again it stops the music. I wish for the music to play automatically when you enter the SWF and then you hit the button to mute the music if you wish; and then hit the button again to play the music again.
Here is the code I have:
toggleButton.addEventListener(MouseEvent.MOUSE_OVER, rolloverToggle);
toggleButton.addEventListener(MouseEvent.MOUSE_OUT, rolloutToggle);
toggleButton.addEventListener(MouseEvent.CLICK, toggleClick);
toggleButton.buttonState = "On";
var song:Sound = new TitleMusic();
[Code] .....
View 7 Replies
Similar Posts:
Sep 2, 2008
how to change this on my 'flash template' and how to successfully mute the background music as my VIDEO starts to play.
I have uploaded my FLA file so that you can see what the problem is:
[URL]
The background music is set as per TEMPLATE that I got. I would like to add a quicktime movie to the website, under the page titled "TRAILER" - and have tried to do so myself by adding the QUICKTIME to the project through another SWF that I got elsewhere (a different 'template' so to speak).
The original quicktime file that I wish to add is available here:
[URL]
I'd like to be able to stop the background music when the viewer visits the TRAILER page of the site, as that is when the trailer starts to play. The music can stop abruptly, that is fine.
I'd like for the music to continue to play (either from the start, or where it was stopped) when any other pages are visited after watching of the trailer.
View 9 Replies
Jun 15, 2009
I am trying to add a music track to some of the pages of my flash website, I imported the mp3 file to the library and dragged it on the stage and it plays when I test it. I want to add play/stop music button on the page, I dragged buttons from the video components to use, but I have no idea where to start with the code??
View 1 Replies
Feb 20, 2009
I can get my mc button to mute it once, but never turn on again.The audio is a voice over in streaming in the main timeline.
Code:
var soundOn:Boolean = true;
onoff_btn.addEventListener(MouseEvent.CLICK,toggleSound);
onoff_btn.buttonMode = true;
[code]....
View 6 Replies
Jan 10, 2011
I'm new to flash and just need to do a simple task but I can't manage to get it to work. I'm trying to import a video (flv) into a SWF container and need to AS functions which should be exposed to JS (using liveconnect or anything else). These two function should toggle sound on/off and toggle play/pause. I dont need any user interface or a full featured player, just these two functions.
View 1 Replies
Jun 3, 2011
Creating the necessary code to make a mute/unmute button in ActionScript 2? I would like the "toggle" button to control a specific sound clip only -- not any other sound within my presentation. Basically I have an intro animation of about 20 seconds that has background music to it. I would like to add a mute toggle button that controls only this music clip and not any other sound found within my presentation. Is this possible? I've seen code for "globally" muting or stopping sounds. I need code for just a specific music clip (sound object?).
View 6 Replies
May 1, 2009
Using Macromedia Flash Professional 8.
I have a website banner made in Flash. I have added a music file to it and Play and Stop buttons. I also have a Replay button to replay the banner animation once it stops.
I have put the music on a separate frame so that it will not play automatically when the banner loads. I have made the Play button direct to the frame the music is located at so that when clicked, it will go to that frame and play the music file.
The problem I am currently having is that if I click the Play button more than once, it will play the music file again on top of the current play-through.
So if I click Play, the music will play. Then if I click it again, the music will play again, but on top of the first instance of the music, so two instances of it will now be playing and it sounds horrible.
I would like to make it so that if you click Play when the music is playing, it will not play the music again until the music has stopped.
View 6 Replies
Jan 28, 2010
I am using the Sound class to play both music and sound in my game (.mp3). I am using the:
SoundMixer.soundTransform = new SoundTransform(0);
But, I will need something to mute only sound or only music, this would mute both.
View 1 Replies
Mar 9, 2011
I have some songs in the same folder as i have my .fla file. I call the .mp3 file on the first frame and i want to be able to pause it or stop it when i click on a button. I would appreciate the code for that. Or maybe any other suggestion on how i should add music to my .fla file.
View 9 Replies
Dec 1, 2011
I got flash player, integrated in website.When I go to my site, backround music start to play automatically But if I stop the music and go to other page of my site, music starts again.[code]...
View 4 Replies
Sep 2, 2007
i have a problem with my music palyer i can't get it to just pause/mute the music. here's the code.
Code:
bgSound = new Sound();
bgSound.loadSound("ChrisBrow-RunIt.mp3",true);
playIt.enabled = false;
[Code]...
View 1 Replies
Jan 28, 2010
I am using the Sound class to play both music and sound in my game (.mp3). I am using the:
SoundMixer.soundTransform = new SoundTransform(0);
But, I will need something to mute only sound or only music, this would mute both...
View 2 Replies
May 24, 2004
i have been stuck with this for days so thought i'd try this forum. on the main timeline i'm trying to have an on/off music toggle button. here's the code on the first frame:
[Code]...
whenever i click the toggle button it restarts the sound and downloads it again. can anyone tell me where my code is wrong or what i have to add?
View 1 Replies
May 31, 2011
The user should be able to toggle on or off the sounds button where clicking (on) will turn on the sounds while the button's label will be changed to 'off'Initially the sound is off.
View 4 Replies
Nov 1, 2010
I'd like to start a music with my animation in mute (volume 0), and then, use a "ON/OFF" button to hear the sound (volume 1 or 0).
View 6 Replies
Dec 7, 2009
I have an .mp3 file which is supposed to be embedded in the timeline. Since it is 6 minutes long, it not practical to run it streaming on to the 7,200 frame. Consequently, in order to get it to run I have set the property to Event rather than sound. Also I have set it to repeat 99 times. How can I put in a volune control, or mute button. Can anyone help as I am quite new to this.
View 1 Replies
Nov 25, 2010
[URL]
I have a small problem I want to mute the music when a person clicks on the video page so they dont have to manually click the speaker to shut the sound off to hear the video. As well when they leave the page I want the music to continue playing. The music does not have to start over again, I just want it to mute while on the video page.
I tried using this: SoundMixer.soundTransform = new SoundTransform(0);
But it even mutes the video sound.
And I tried this: SoundMixer.stopAll();
It does kill off the background music, but I dont know how to turn on the music again when you leave the video page.
I prefer to use: SoundMixer.soundTransform = new SoundTransform(0); as it is easier to work with and you can adjust the volume as you like.
The music script and the video script
This is my action script for the music:
// Assign The URL to the mp3 to play
var req:URLRequest = new URLRequest("101-jakatta-
[Code].....
View 14 Replies
Mar 9, 2011
I have a game with a timer and toggle button that plays music. The AS3 file that runs the timer is the main doc clas(as3 file) and the timer is a custom event as3 file I made, is there a way I can link the 2 so that when I click down onto the toggle the music and timer both run at once.
View 1 Replies
Sep 3, 2007
I have a video and background music in one flash file. I need the background music to fade out when the video is playing, and fade back in when the video is paused. Everything works fine until the Music On/Off button is inserted.If you try out the attached FLA, the background music is able to fade out when the video is played and fade in when the video is paused. But once you toggle the Music On/Off button, the background music fade in/fade out doesn't work anymore.
View 2 Replies
Mar 9, 2009
I need the code to mute/unmute the volume for an internal aif music file using a button.
View 2 Replies
Oct 19, 2010
I just started developing flash recently and I need to globally mute the audio in an swf by javascript ... I've got the following functions in my AS3 already.
Code:
function mute():void
{
var st:SoundTransform = new SoundTransform(0);
SoundMixer.soundTransform = st;
[code]...
Do I need to use addCallback() somehow to trigger this through javascript?
View 4 Replies
Dec 8, 2010
I've been given a avi file that I've turned into an flv and now need to create two versions of that flv, one with all the audio and one with a small section of the audio removed (its narrated and we need to remove the mentioning of a specific item).
I know I can import an flv into the flash timeline but am not sure how to kill the sound for a given portion of frames,
Was considering redoing the flv as two separate flv's, one with video and one with audio and then putting them into the timeline and cutting the audio up, but I would love a cleaner way, preferably with ActionScript
View 1 Replies
Mar 16, 2003
I used http:[url]...tutorial and made a working button to START the sound.This method is the simplest. Can't stop the sound yet.Given that tutorial, what's the simplest way to complete the audio toggle on/off task?
View 1 Replies
Sep 21, 2009
I have modified the original to include more head shots accompanied by audio clips. I have worked out the playing of the clips on release. I realize now that people may not want to listen to entire clip. Each mug shot serves as the button to hear the person talk. I do not know how to modify the button code for it to be a toggle. I guess it would need to be some kind of "play if, stop if" The only part of concern is loading playing the the audio, no changes need to be made to the rollover functionality.
mugWidth = 60; //change these if you change the size of your mugshots
mugHeight = 60; //change to your mugshot height
//instantiate sound and textformat classes
[code]....
View 2 Replies
May 2, 2008
I'm creating a mute button for an audio player that I pieced together, and it seems to be working alright except when I advance to a new track. If the volume is NOT muted and I click a new track it's fine, but if the volume is muted (i.e. at "0") and click a new track it remains at 0 and won't un-mute when I click the button.. though if I click the button to un-mute it and then select a new track it's fine, so I think there's something in my playSong() function that's interfering, I just can't tell what it is.
Code:
stop();
Player Variables
volume = 100;
current_song = 1;
[Code] .....
View 1 Replies
Aug 28, 2010
im using this player [URL] for my site and i am also using [URL] i have 2 instances of advanced player in one page and the backround player. I want to pause the other players when one of the 2 advanced players are playing, something like that: if myadvancedmp3player1 is playing (if i press the play button), pause myadvancedmp3player2 and pause backround_music. if myadvancedmp3player2 is playing, pause myadvancedmp3player1 and pause backround_music
[Code].....
View 5 Replies
Oct 26, 2007
how to mute a audio embedded in a button's timeline from the main stage
View 1 Replies
Aug 25, 2009
I have an audio player that has a custom timeline and playhead. I am using a start and stop drag to move in the time line but the only way i can make it work is to have it play when ever I release the play head. I would like it to stay stopped if the player is paused and play if the player was playing.
[Code]...
View 5 Replies
Apr 13, 2011
My server is streaming binary audio data (mostly mp3 files) to a client (a browser). This client stores the audio data in memory.
What I'm looking for is a flash audio player that I can input the binary audio data so that it can play the audio file.
Preferably, the flash client is merely a bridge to Javascript so that I can handle everything in Javascript and simply use Flash's audio features, but this is not a requirement.
View 1 Replies
Mar 8, 2012
Never thought waiting seven years to update my software would be such a relearning experience...lol In Flash MX to add audio into a movie clip, animation, etc, all you needed to was add the file to your library and drag it onto the frame in which you wanted the audio to play. However when I try this in CS5.5 nothing happens. I'm sure there's just a different implementation now, and I don't know what it is.
View 1 Replies