CS3 Sound On/Off Button In Movieclip?
Nov 17, 2009
I'm trying to make a button that when clicked executes a sound clip and plays all the way through. Also, if the button is clicked while the sound is still playing the sound needs to stop. They have me first place this code in the first frame:
my_sound = new Sound();
my_sound.attachSound("bubble_01sound");
play();
Next I create two buttons, an on and an off which are placed separately in the second and third frames respectively. Code is applied directly to the buttons.
The on button:
on (release) {
_root.my_sound.start(0,1000);
_root.gotoAndStop("stop");
[code]...
Finally, I name the 2nd frame "play" and 3rd frame "stop" and add stop(); to both frames. Oh I also set up the linkage so that the sound's identifier is "bubble_01sound".
This is all well and good however, here's the rub. Unlike their example which takes place in the main timeline, my button needs to bob up and down. So I put everything from the tutorial in a movieclip and on the main timeline animate the movieclip as I like. When this plays the button does not play sound. I took this as the initial sound code not being activated because its in the movieclip. If I take the sound code out of the movieclip and place it in the first frame of the main timeline, the button does play sound but the stop function does not work. I can keep clicking the button which repeats the sound on top of the already playing sound.
So it seems to me there are three options. One, I need to find a way for the sound code to be activated when its seated in the movieclip. Or two, with the sound code in the main timeline, I need a way for the on/off buttons to reference the code which is one level up in the main timeline. Or the third option would be that I'm completely wrong... I'd put my money on the third option.
View 3 Replies
Similar Posts:
Dec 14, 2004
I have a movieclip button that I want to add a sound to when press can someone tell me how to do this? The code I have for the contact form is:
stop();
//-----------<send form>------------\
//-----------</send form>------------\
//--------------------<submit button AS>---------------------[code]...........
View 3 Replies
Feb 22, 2006
I have created a MC button & i was wondering if anyone could tell me how to attach sound to the rollOver event? Current AS is;
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
[code].....
View 4 Replies
Feb 28, 2007
I have a sound on/off button inside of a movie clip that loads prior to the 'home state' It has a sound loop running and can be turned on and off with the button. However, when you turn the sound button off and return to a button state that it was previously running under, the sound starts up again.
View 1 Replies
Dec 14, 2004
I have a movieclip button that I want to add a sound to when press can someone tell me how to do this? The code I have for the contact form is:
[Code]...
View 3 Replies
Mar 24, 2012
I'm having trouble trying to manipulate music using buttons. I can't seem to make music1 autoplay and loop when the movie starts. I want to stop music1 and play music2 when I press a button:
music1 in main timeline button to change music is inside a movie clip so far here is the code I found on the internet but I'm not sure how I can change it to do what I need:
var mySound:Sound;
var myChannel:SoundChannel;
var isPlaying:Boolean = false;
var isPaused:Boolean = false;
[Code]...
View 2 Replies
Apr 15, 2010
I've assigned a sound to the button over frame and a different one to the button down frame. When i over over the button the button over sound plays. When I then click the button, the button over sound plays AND the the sound I put in the button down frame plays.
View 8 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
Sep 21, 2011
how to add mute sound and unmute sound script in a single button?
View 2 Replies
Aug 5, 2010
I have a bit of a problem with sound.. I have a main container animation with background sound that's loaded with soundChannel..I also have an externally loaded SWFs with Movie Clip buttons that have a sound ON ROLLOVER on the timeline..after rolling off - I place the:SoundMixer.stopAll();to stop the button from playing the sound once the mouse is rolled off.. However, the problem I'm running into is that it also stops the sound of the main container movie cli
View 1 Replies
Oct 19, 2010
I'm sure this is a common problem, I tried looking around on the forum for a problem like mine but was unable to find anything. I'm using Flash CS3, Actionscript 2.0, and am making a soundboard. I have two scenes, one that's the title screen, of which has a sound file loaded via the timeline, (I think) set to Event and Loop, and a button which takes you to the next scene and makes a short sound when it's pressed. My second scene has background music as well, also set to Event and Loop.
Problem is that when I press the button, the background music keeps playing into the next scene. I tried using putting stopAllSounds onto the button, but that makes the sound of the button stop as well, and I'd really like to keep it. I've been messing with this for days, and I can't figure it out.
View 3 Replies
Feb 13, 2007
i want to make a single button to play a sound, and if pressed again, stop the sound. and if pressed again, play the sound, and so on...
i know it has to be made with a boolean variable, true/false, but i just can't figure out how.
View 13 Replies
Nov 10, 2011
basically i simply want to give the option of turning of the sound in my flash via a button (If you press it sound goes mute, press it again sound unmutes) I searched around in the tutorials but i could only find (for this purpose) complicated pan sound control stuff.
View 1 Replies
Jan 29, 2011
i'm designing a website in flash8... now i have created some buttons, and i want that when i click on the button stars will fly from them and there will be a sound... i have already created the animation of the stars seperatly and it's in the library, i have also the sound file.... i just can't remember how to put everything together.... when i'll press on the button the stars will be flying from the button and the sound will play?
View 3 Replies
May 22, 2011
I want to stop the sound loop from one button by clicking new button. Does anyone know the code that would stop one button's sound from looping by just clicking another button (for another sound)?So you have these buttons:button 1 button 2 button 3 button 4and after clicking "button 1" a sound loops. when i click "button 2" i want the sound from "button 1' to stop.
View 2 Replies
Apr 16, 2011
I am triggering short sounds dynamically from the library for a game (Specifically Air for Android). When the user clicks a button the sound can take up to 600ms to actually play. I have set it for any silence before the actual sound by calling the sound like so:
[Code]...
All return the same results. I know there are threads here that talk about this but none have offered a real solution that I can find. Is there no way to cache the sound or store it in a buffer?
View 1 Replies
Apr 1, 2011
The only way i can describe this is showing the code I have already then trying to explain what i want to do.Basically, I am creating a soundboard game, where at the bottom of the screen I will have a bar which is a movieclip, and I will be dragging other movieclips onto it and then clicking pay, and using an array and .push they will play in order. I am trying to put the sounds onto the movieclips using code.[code]...
View 2 Replies
Aug 2, 2011
[code]...
how to use that code in flash as3 coding and please give me some example or link, how to create duplicate movieclip in as3 ? how to play/pouse one particular sound in flash as3 ?
View 1 Replies
Mar 3, 2011
i wan't to make a game where the character jumps when i press a key, but i also wan't to play a "jump" sound when the player press the "jump" key. I tried to use this:
ActionScript Code:
onClipEvent(enterFrame) {
if (Key.isDown(Key.SPACE)) {
kirupaSound = new Sound(this);
[Code].....
But it didn't work very well. When i pressed the "space" key it played the sound like 20 times untill it stopped.. It just continued to play the sound. Preview:megaswf(.)com/serve/1031811
View 8 Replies
Jul 16, 2010
Code: Select allimport com.greensock.*;
import com.greensock.easing.*;
TweenLite.to(mc, 2, {volume:0});
i have classes, but only one thing, how to make sound mc.
View 1 Replies
Jul 18, 2004
can i do so a movieclip follows the rhythm in a sound? or do i have to do it manually?
if i can do it, it should be something with set weight and height to max and so on .
View 4 Replies
Sep 4, 2005
I am having trouble controlling sound instance on the main timeline from with a movieclip.
On the main timeline contains the following code:
root.createEmptyMovieClip("beat_mc", 100);
beat = new Sound("beat_mc");
[Code]....
The main timeline will render the sound at the volume 10 value. However, I anticipated the volume to be set at a 100 from the Jukebox's controller.
It would seem logical that the jukebox code should respond to the instance "beat", but it doesn't.
View 5 Replies
Sep 16, 2010
problem - syncing some background music with a movieclip. I am aware that you can place a sound directly onto the timeline of a movieclip: this was my first attempt at syncing the two up. Unfortunately the problem with this is that the sound (which is quite long) then won't STOP until it finishes playing regardless of whether I stop the movieclip or remove it from the stage. I also have no control over the volume this way.The only other method I can come up with involves keeping track of the current frame of the mc and triggering the sound manually, but this still goes out of sync if too much is happening at once and the framerate drops.
View 3 Replies
Jul 18, 2004
can i do so a movieclip follows the rytm in a sound? or do i have to do it manually? if i can do it, it should be something with set weight and height to max and so on.
View 4 Replies
Mar 25, 2009
I am having problems with a flash template that I am redesigning. Currently when the movie loads it automatically starts a song in the background. When you click my music navigation link my music page comes up and there are a few links there that I want to add music to. I also need to stop that background music so the song from the link can play.
View 1 Replies
Nov 28, 2009
In my flash game, every time you click a button, it plays a short sound. Almost all of the buttons work - Except for a few random handful. Those couple play the sound twice. I don't know why either - I double checked everything.None of the frames have sound. The buttons that play twice are only set to play once. I didn't do anything different between the ones that worked and the ones that don't work.
View 2 Replies
Aug 23, 2009
I am having some problems in Flash using sounds for a button. Although I didn't use any code (I used the Button symbol), the file I created is for AS3. The problem is that I have two sounds, one for rollover and one for down state, and when I click both sounds play. I tried creating the button in AS2 and it works fine.One time, I managed to create a movie clip using a single symbol for 5 buttons and only one of them is having this problem. I don't see any logic in this.[URL]..
View 2 Replies
Jul 13, 2010
Why won't my sound play? It should play on Mouseover and stop on Mouseout.
stop();
import flash.display.MovieClip;
import flash.events.MouseEvent;
var req:URLRequest = new URLRequest("squeeak.wav");
var sound:Sound = new Sound();
var controller:SoundChannel;
function soundLoaded(event:Event):void{
controller = sound.play();
[Code] .....
View 1 Replies
Nov 3, 2009
I have a problem playing sound on mouse over event, sound attached from xml file.The question is, can I attach two, or more different (excat) sound to the same movieclip?F.E. I have a movieclip about the dog, and some button on the scene, "name", "sound", "etc".If I click the button "name", and after I pointing the mouse over the dog_mc, the sound would be "a_dog.mp3", but if I click on the button "sound, the played mp3 would to change the "bark.mp3" on mouse over. Of course, there is lot of animals clip, so every clip have to have own sounds.I am would to avoid attach the sound directly inside the movieclip, but not so familiar in XML, so if somebody can me explain it is possible.
View 5 Replies
Oct 13, 2005
I'm having trouble attaching a sound to a movieclip so that it will be played on rollover.I've named the sound "click" and checked export for actionscript in the linkage properties. My movieclip is titled "contact" and has an instance titled "c1"
View 4 Replies