ActionScript 3.0 :: Adding Sound On MOUSE_OVER?
Nov 18, 2009
how can I add sound to a button on rollover?
I have tried this but the sound plays when the page is loaded aswell as when ouse over.
Code:
var aboutBtnsnd:Sound = new Sound(new URLRequest("clook.mp3"));
var aboutBtnchannel:SoundChannel = aboutBtnsnd.play();
var aboutBtnpausePosition:int = aboutBtnchannel.position;
[Code]....
View 3 Replies
Similar Posts:
Aug 2, 2010
I need to add in a mouse over event listener for an object, when I'm already over it. If my mouse leaves the object and comes back, then the listener works, but for some reason, when if I just move my mouse around over the object, it doesn't work. Hopefully that is enough to go on without posting code...
View 1 Replies
Mar 18, 2009
I am trying to create a container MovieClip with several TextField elements contained within it. I then need the TextFields to react to ROLL_OVER or MOUSE_OVER. This works fine if the fields are placed outside of the container, but not when I do
Code:
container.addChild(textField);
The TextFields are added after the container, and new ones may be created or removed later during the running of the movie. I've tried changing the value of container.mouseChildren but that didn't seem to make a difference.
View 3 Replies
Jan 21, 2010
How to import sound with AS? Cuz i have tried it and my sound just wount play. Can you explain me where my sound should be and what is the as code for importing cuz i use
mysound = new Sound();
mysound.attachSound("SoundOn");
mysound.start();
and this SoundON from where i get it, i try to add linkage to the sound file but in CS4 i cant find the option;. I do it from the library, adding text into the linkage field but still my sound doesn't want to play?
View 15 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
Jan 12, 2010
I am doing a game such that when the score++, there is a certain sound. And when the score--, there is another sound. Cause I'm not really sure if this is the correct way. So I have two sound files, linkage "hit" and "miss" The actionscript goes like this on my movie clip:
[Code].....
View 2 Replies
Mar 9, 2009
I am very very new to flash...I created a quick little slide show...in which I want to add to add an mp3 file too...the slide show works as such.. Each frame has a picture and next button, so when I test the movie. The pictures are stopped, I click the next button and it
goes to the next frame......pretty straight forward. How do I add sound? I just want the music to start when I open it, and stop when the slide show is over.
The funny thing is...if I insert music into a file with no buttons and just let it stream (and stop on the last frame) it works great, the music plays...Only now that I have a movie with buttons, it doesn't even start. I have been thumbing around the actions panel, but for the most part I'm lost.
View 6 Replies
Sep 14, 2010
adding a simple sound to a movie with AS? I'd prefer this, since I already have simple "Roll On", and "Roll Out" script in place.
I have imported the sound file. In Properties, under Label, I have named it "tire_squeal". (Also, created a layer within the movie, and dragged the file onto the stage - all done.) Is this necessary when using Actionscript, or not?
The sound file loaded into my Library is named, "tire_screech.wav"
I want the sound to load "stopped", then play OnRollOver, and quit OnRollOut. (See previous AS code in string.)
View 7 Replies
Feb 28, 2011
so i am making a spinner and i want it to be like a see and say toy. How would i go about adding sound so that when the spinner lands on the picture that the sound will play. I have pictures and I have sounds. how would i do this?
View 2 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
Dec 17, 2003
i have a presentation and i have more then 1 scene is there a way to have music playing thoughout them all?
View 1 Replies
Mar 29, 2011
When I tried to import music to flash animations I have created, I received error message that: One or more files were not imported because there were problems reading them.
The platform: Mac AA audio file Encoded with iTunes 10.1.2, Quick Time 7.6.6
Is it because of the audio file format that music cannot be imported? If so, how can i convert it to the compatible format?
View 5 Replies
Aug 15, 2011
i'm trying to make a little game for a school assignment. The problem is, when im adding sound to my game, this error appears:
Error #2044: Niet-afgehandelde IOErrorEvent:. text=Error #2032: Streamfout.
at herkansing/controleerOpHit()[C:UsersChrisAdobe Flash Builder 4herkansingsrcherkansing.as:145]
[code].....
View 2 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:
stop();
//-----------<send form>------------\
//-----------</send form>------------\
//--------------------<submit button AS>---------------------[code]...........
View 3 Replies
Oct 1, 2011
I tried something I did on a soundBoard I made with an external folder, but then I thought that folder will never be added on the phone, so how am I going to do this?
View 7 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
Dec 30, 2009
i'm trying to add a rollover sound to a movie clip. i've read a bunch of tutorials but I can't seem to get it working here is the code for the first frame of my movieclip:
stop();
this.onEnterFrame = function(){
if(rewind == true){[code]....
View 2 Replies
Jan 16, 2009
I made a movie clip button, which is a custom cursor, and i want to know if it's possible to add a clicking sound into it. Or is there any way for a sound to be played everytime the custom cursor is in the clicking state??
View 2 Replies
Oct 22, 2008
I'm trying to figure out how to add a sound to a movieclip button so when the user clicks on it a sound is played.
View 10 Replies
Nov 15, 2008
I was wondering how I could add sound to a gallery that is driven by xml.I have a gallery that loads the picture, Title and description. the gallery is downloadable here.The regular gallery loads a web page when the picture is clicked. I am trying to make each picture load a different mp3.I have the general Idea of how it would be done but I don't know how put it to actionscript.I figured you would basically create a sound object that loads the specific mp3 from the xml file when the picture is clicked from the gallery.I think I might have some what of the idea right but I get an error everytime I load the swf file.
"ArgumentError: Error #2068: Invalid sound.
at flash.media::Sound/play()
at MethodInfo-6()"
[code].....
View 3 Replies
Apr 24, 2002
Can someone tell how to add a soundclip (*.wav) to the following scenario:[code]
View 2 Replies
Mar 28, 2010
I have built a SoundClass which handles my sound. Any time I want to call upon a sound, I call upon the class and its function. Problem is, there is like a buffering time or something. For instance, when I jump with my character, I am trying to play the jump from the SoundClass I created. It plays, but takes about 3 seconds. Btw, it does this regardless of if its in its own class, or in the same class I am calling it from. The jump.mp3 is only 4KB.
Here is how I have it set up
Code:
package {
import flash.display.Sprite;
import flash.events.*;
[code]....
If I am in another class, I can call upon this by using "soundClass.jumpS();" It plays, but takes a few seconds. I have a trace on the function jumpS() and it traces immediately.
View 2 Replies
Apr 22, 2005
Any tutorials on adding right and wrong sounds to a game? Im making this game where on a wrong answer there is a wrong sound and on a right answer a right sound! How to get the code to do this!
View 1 Replies
Dec 10, 2010
I`d like to say that i`m total newbie regarding to as3. Ok, lets look at my problem.. I have 2 scenes (first is main menu with New Game button; second scene is intro for game). I`m having difficulties to make two functions within one button. Why do I need that? First function is to go to next scene (in my case, IntroScene). Second is for turning off sounds, so I can`t hear them in next scene. Here is the code:
[Code]...
View 9 Replies
Jul 12, 2008
I have 1012 different sound files named Sound 1, sound 2, sound 3, etc. On the second frame I created a storage movie clip to house them all. What I need to do is add a layer for every sound in the MC and add one sound to each one. Now instead of making 1012 layers by hand, is there a JSFL file I can use to do it for me?What it needs to do is add one layer, add sound 1, and hit stop in the properties. Then it should add another layer, add sound 2, and hit stop in the properties.
View 4 Replies
Dec 12, 2009
For the typewriter effect, I'm trying to add a typewriter "click" sound every time this function (within a class) writes a letter:
private function setLetter(n:Number) {
var correctLetter:String = text.charAt(n); var part1:String = text.substr(0, n); temp_text = part1 + correctLetter + cursor;
[code].....
View 2 Replies
Jun 20, 2009
I've created a menu that scrolls down when my mouse is over the click zone but somehow when I move my mouse out of the click zone it stays up and will not go back to my first frame. Here's my code
stop()
medczone.addEventListener(MouseEvent.MOUSE_OVER,med2);medczone.addEventListener(MouseEvent.MOUSE_OUT,med4);
function med2(e:MouseEvent):void { play();}
function med4(e:MouseEvent):void { gotoAndStop(1);}
View 6 Replies
Aug 9, 2010
I have some trails data that I am adding to an interactive map. The trails were imported from Illustrator and are lines that have been converted to movieclips upon import. I'd like to add effects and some interactivity to the lines upon click and mouse_over. The difficult piece is that Flash treats movie clip like a box making it dificult to click on just the trail you'd like info for. For example, if there are two trails next to one another, clicking on the one you want can be difficult.
Is there a way that I can make it so that only the line part of the MC is the piece that responds to mouse action (rather than the whole box which encompasses its extent)?
View 2 Replies
Aug 25, 2009
I have two sprites A and B, both are irreuglar drawn shapes (both with a transparent fill) that overlap certain points. The current result is B on top (though which is on top is not really relevant, as the same problem will exist if A is on top). They are both children of the same UIComponent.
Both are listening for the MouseEvent.MOUSE_MOVE event. It is to occur when a corner on either shape is passed over by the mouse. Though, when the mouse moves over the corner of A and this corner is behind B the MouseEvent is never raised.From my investigation I've found when i turn the fill off on the sprites and just draw the outline of the shape the mouse event will raise, but this is not what is wanted. how can I get *both* the objects listening and responding even when the corners of one is overlapping the other?
View 3 Replies
Jun 7, 2009
I got this accordion from http:[url]....and I would like to have a MOUSE_OVER event on the buttons.The problem is that I don't know how to target the movieclips that are in the library of the accordion.fla file.
View 3 Replies