ActionScript 3.0 :: Make A Button Turn On/off A Sound When Pressed?
Jan 29, 2009
I am trying to make a button turn on/off a sound when pressed. I have tried to code it, but it does nothing everytime.
I have a sound in the library, with a linkage name of "sound" it is on the first frame in the main timeline. And i need a button to turn it off, and then on again.
View 0 Replies
Similar Posts:
Nov 16, 2004
I have a function on root:
_root.fadeBox_mc.onEnterFrame = function (){
if (fade){
this.nextFrame();[code]....
This causes a mc to fade in and out on rollover/rollout. But what I wanna make is a box that fades in when pressed on the button and fade out when pressed for the second time. But if I say
on (press){
_root.fade = true;
}
the mc fades in, but I cant do another on (press) to fade out. Is this too confusing?
View 2 Replies
Jul 27, 2005
I am looking for a way to play music when the movie loads, but when a button is pressed, the sound will fade to 0, then when the button is clicked again, it will fade to 100. Here is a link to the file I've been working on...
View 3 Replies
Oct 27, 2003
Basically I am working on my personal portfolio and am not that good with AS. I have made a volume box that appears once the sound button is pressed. This box includes on and off buttons. The problem is how do I make the box stay, once the user clicks on a different button e.g. home? Its it simply a case of using keyframing or is it AS? and example of what I am trying to create is [URL]. Check the sound options.
View 1 Replies
Aug 4, 2009
What button event should I use to make the program understands to DO SOMETHING only when the button is pressed/dragged. In my sample code below, I want something to happens only if the button is dragged beyond 200 in y axis. I tried onRelease, onRollOver and onDragOver but still not working
[Code]....
View 6 Replies
Sep 26, 2009
I have a function that executes when a button is pressed:
btnRandomAll.addEventListener(MouseEvent.CLICK, clickHandlerBtnRandomAll);
function clickHandlerBtnRandomAll(e:Event)
{
...but, I need it to also execute once, upon the file loading.
View 7 Replies
Jan 10, 2006
how to make some htmltxt for my flash site turn into a button to email. i know in dreamweaver I use mailto"blabla@bla.com" but this doesn't seem to work in htmltxt.I also like some functions like underline,bold, how to go to a certain url,etc.
View 3 Replies
Mar 27, 2004
How do I make a MC vibrate when a button is pressed? I made a button but I don't know what to put after the event handler:
View 2 Replies
Jan 4, 2009
I have a very basic question. I have a custom class called caurina. I've imported the class and it works great. What i did is use that as a function called slide().
What I would like to do is make that function play when a button is pressed. I can't seem to find out how to do this anywhere. I am using as3.
Summary: When btn is pressed go play function slide()
View 6 Replies
Jul 14, 2010
What command would i use if i wanted to be able to click a button and when i do that text apears in teh dynamic textbox?
View 3 Replies
Mar 25, 2011
I wish to have a numeric stepper which allows me to choose the no of balls I want, then when i press the button I want all these balls to fall down..but when I press the button the x no of balls are generated but not falling down.
View 6 Replies
Aug 4, 2003
i am trying to make a flash site, and anyway i got some problems i want to make a button that when pressed opens a window (set size of 500 400) what actions should the button have?
View 4 Replies
Jul 28, 2009
I have several buttons in a movie and I want to be able to rollover an individual button and play the sound for that button and when I rolloff I want the sound for that button to stop.
View 6 Replies
Nov 6, 2010
button to reset position (action-script 3) how do you make a button that when pressed it resets/changes the position of a object yes i am new to action script 3 but not to flash i want button to change the x y coordinates back to the original but dont know how?
View 1 Replies
Mar 24, 2011
I have a numeric stepper which allows the user to choose as many balls as they want, then they shud press the button and all of those balls should fall down. How can I do this???
View 1 Replies
Jan 21, 2003
I want to incorporate sound into my main movie but I also want to be able to turn the sound off and on.
View 1 Replies
Jun 21, 2011
1. How to make a button that when pressed, creates a movie clip from the library? So let's say there's a movie clip called "Guy". When I press the button, it creates "Guy" at a certain position.
2. I have a shooterish game, and I want different enemies to affect the healthbar differently. So what I have for my healthbar is a 150 frame tween of a healthbar going down. On a basic enemy that deals 1 damage/frame, I have this:
[Code]...
"marine" is my character, and "bar" is the healthbar. So to make it go down multiple frames at one time, the only way I know of is:
[Code]...
View 9 Replies
Feb 22, 2003
I am trying to create a button that when pressed will make an movie clip visible and set it to a specific position on the screen. When this same button is pressed a second time the movie clip will become invisible.
View 2 Replies
Mar 27, 2010
I have added a flash sound file to our homepage. How do I add an option for the visitor to turn the sound off? I don't have the .fla file for it.
View 1 Replies
Sep 10, 2009
I have a very simple project. I just need a flash video that has a sound file and a button to turn on/off.
View 1 Replies
Dec 27, 2009
I have some sounds in a timeline ( i purposely put them on time line rather then through AS3). But is there a way to turn off all sound in the swf, like is there a global sound channel?
View 1 Replies
Oct 23, 2011
How do you turn off the sound in a game only? I ask because I have two buttons in my settings: turn music on/off and sound on/off. turning music on and off is really easy because it uses a specific sound channel. But How do you turn off the volume the sound only (e.g. music is still playing but not the sound of the game)?
When I mute the sound via SoundMixer.soundtransform you can't hear anything so that's not what I wanted to have. In my game all sounds are thrown into an array. My first idea was that I go through all sounds listed in the array and turn off the volume but that's not working.
Code:
//not working
private var sounds:Array;
private var soundChannels:Array = [];
[code]....
View 1 Replies
Feb 3, 2010
I have a sound-file (.wav, could be any format) saved in a ByteArray. How can I play it as a Sound? I've heard it should work with SoundChannels and stuff, but I don't know how...
View 9 Replies
Oct 23, 2011
How do you turn off the sound in a game only? I ask because I have two buttons in my settings: turn music on/off and sound on/off. turning music on and off is really easy because it uses a specific sound channel. But How do you turn off the volume the sound only (e.g. music is still playing but not the sound of the game)?
When I mute the sound via SoundMixer.soundtransform you can't hear anything so that's not what I wanted to have. In my game all sounds are thrown into an array. My first idea was that I go through all sounds listed in the array and turn off the volume but that's not working.
[Code]...
View 2 Replies
Apr 18, 2011
So i want the sound button to be both the same on and off like [code]...
So i want to know WHAT as2 code can i make to make it so out of the on &off button can be the SAME button on the SAME button can have the SAME on button SAME off button when you click the same thing.
View 2 Replies
May 26, 2010
I can download video from youtube as FLV.Want to play back in my Flash swf file without sound.How do I mute the sound during user playback?
View 1 Replies
Nov 30, 2003
I have an animation that plays a couple of different sound effects (depending on what button is pushed). I have a checkbox that I would like to use to turn on/off the sound effects. I have read somewhere that it is possible to set up sort of a global sound that if stopped, stops all sound effects. I have tried to set this sort of thing up but no success . When I test getValue() of my checkbox it seems to work (defaulted to true) but nothing happens when I uncheck the box. What am I doing wrong? p.s. In what forum would I make the suggestion to have a new category for just sound problems? Does anyone else think it would be a good thing to sequester sound issues in their own category?
View 8 Replies
Sep 4, 2008
I've been trying to make a button to play a sound, I've created the button and have a sound in the library, but can't manage to get the button to play the sound!!! I get this error: 1120: Access of undefined property knock_sound.
I think I need to give the sound an instance name but it says I need to use AC2 to do that!!
View 3 Replies
Mar 26, 2011
I have been working on flash in school, and the school upgraded from flash MX to flash CS5, i have then gone to make my project in AS3, however, it is very diffrent from AS2
My problem, is, all i want is a button to play a song from the libray (not from a URL on the internet like the code snippet) and my ICT teachers have no idea how to use AS3. I also need is a play, stop and pause button, and a volume control slider, i CAN do all these on AS2, i infact have it set up (but without a pause button) but, i cannot do this in AS3 and i need it done bady.
View 4 Replies
Oct 14, 2010
I have a pop up page with a swf file that will call a second swf file: var myLoader:Loader = new Loader(); addChild(myLoader); var url:URLRequest= new URLRequest("File2.swf"); myLoader.load(url);But the sound keeps playing even after the popup page closed.I did some research, got this code, but don't know how to implement it into the codes above:
SoundMixer.stopAll();
View 5 Replies