ActionScript 2.0 :: Added A Function To Have A Click Sound Play On RollOver?
Jan 24, 2004
should be an easy one, but I tried everything i could think of
I just read this tutorial ::[URL]..Got it to work fine, and even added a function to have a click sound play on rollOver.
The thing is, I can't change the color of the link text on rollOver
View 14 Replies
Similar Posts:
Aug 16, 2009
I created a movie clip that I am using as a button. I created the states in the clip (up, down, over) and the graphics work, but the sound is driving me crazy. I have a rollover loop that plays and a special click sound on the down/press. On the mouseclick, I want the rollover loop to stop and the down/click sound to play. Also, a getURL is happening on the release. Basically, everything works, except you can't hear the down/click sound. All sound just stops on the click.THis is AS2. Here's my code on the first frame. In the clip/button itself, I have the states labeled, the sounds placed using the properties and a stop on each keyframe of each state.:
playa.onRollOver = function() {
playa.gotoAndStop("_ovr");
}[code]/.....
View 1 Replies
Aug 7, 2003
im making a new footer for kirupaforum and i want to have a small sound play on rollover of a certain part of it. i was wondering wat the code was and where should i put it.
View 7 Replies
Nov 9, 2009
Drag and drop game. I'd like the instance to tint red when rolled over after it's been successfully dropped. I'd also like to play a sound file when clicked after successful drop. Here's the code:
ActionScript Code:
addEventListener("dropped", dropper);
function dropper(e:Event):void {
[code]....
View 6 Replies
Mar 26, 2004
how do i play a sound on press?
View 3 Replies
Jul 12, 2010
The sound only plays when I hold the mouse button down. I need it to play when I click it. But it has to stop the sound from playing twice import flash.media.SoundMixer; this.addEventListener(MouseEvent.MOUSE_UP,f); function f(e:Event):void{ SoundMixer.stopAll(); } here is a link to my swf file [URL]
View 4 Replies
Sep 11, 2006
I want to play a sound on click of a button. I can do this in AS 2.0
//Action Script 2.0
Code:
snd=new Sound();
snd.attachSound("try");
snd.start();
[Code].....
View 11 Replies
Apr 17, 2011
i want to gotoAndPlay more than one sound Ex: when i click the button i want to play frame label m2 and frame labe m1 sound
playy.addEventListener(MouseEvent.CLICK ,pl);
function pl(event:MouseEvent):void
{
so.gotoAndPlay("m2");
so.gotoAndPlay("m1");
}
the sound play in the same time i want to finsh play frame label m2 then stop then play frame labe m1 and stop.
View 3 Replies
Aug 13, 2006
how to play a sound when a user mouse click on anywhere in the stage?
View 1 Replies
Sep 21, 2006
I have been trying to deal with sound attachment. Attached is the source file that i am dealing with(I deleted the sound files because the size is too big): Simply, i have to click on the objects first before clicking on the play button. Each objects i clicked represents a different sound and will be stored in the array. So i will be clicking the objects in sequence and when i click on the play button, the music will play. Now comes the problem with my coding, I was unable to let my music coming out one by one at the time in sequence.
View 10 Replies
Apr 20, 2011
The target effect: Rolling over each of the two buttons on the main stage plays different sound. The code below works. However, I need to embed it in another application (Articulate) which doesnot allow the use of "_root" and "attachSound". I was recommended to use "loadSound" instead. However, not a coding person, I am at a loss.to change the script below to remove "_root" and "attachSound" and use "loadSound" instead
var mySound:Sound = new Sound();mcButton5.onRollOver = function() { _root.mySound.attachSound("sound1"); _root.mySound.start();
var mySound:Sound = new Sound();mcButton6.onRollOver = function() {
[code].....
View 15 Replies
Jun 22, 2009
Hereļæ½s my doubt i give the search a try but thereļæ½s nothing similar, Iļæ½ve made this simple function, then I call on especific frames, the doubt is, I just want to "play" the mc one time because it have a sound inside, the sound must be played just one time and then finish, how can I achieve that...?[code]...
View 5 Replies
May 5, 2004
How can I change the following so it won't conflict with sounds inserted manually in keyframes. Currently when this function is active, the loop sound works but the other sounds don't play..
[Code]...
View 13 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
Jun 28, 2004
I want to attach a sound to the main timeline (rollover sound) that i can call from on(rollover) button events. I will be attaching the same sound to several buttons.
View 1 Replies
Jun 28, 2004
I want to attach a sound to the main timeline (rollover sound) that i can call from on(rollover) button events. I will be attaching the same sound to several buttons.
View 1 Replies
Apr 17, 2009
I create a button(MC) and want to duplicate it and easily change the text inside this button... basically I have an mc that acts as a button so inside the mc I have text that I added that animates on mouse rollover. Now I duplicate this mc in the library go into the mc and want to change the text, and when I do, the text in the original button also changes. This happens because the text is a Tween so it's using the same tween from the library for the new button. Is there a quick way to avoid this? I don't see anyway other than typing in the text again in the new button and animating it again.
View 6 Replies
Mar 8, 2010
How do I do a onRollOver detect without using the onRollOver function?I have a movieclip and when it's rolled over I have it zooming using the AS2 tween function.In that movieclip there's a form with fields, and if I use the onRollOver function on the movieclip to zoom, the whole movieclip becomes a button thus preventing any input into the form fields. Is there an alternative I can use?
View 6 Replies
Jul 29, 2008
simple one this, or so i thought! basically, i want a mc to play from start to finish (11 frames) upon rollover and upon rollout i want it to play backwards to the first frame. Accurately.
ActionScript Code:
on (rollOver) {
if (activ.currentFrame <= 11)
{
[Code]....
Currently i JUST goes to the next frame. So i need something like currentFrame +1 or something?
View 7 Replies
Sep 7, 2010
So I have a main swf and when the user clicks on certain buttons, an external swf is added to the stage, which is an mp3 player.There is a sound playing in the main swf that I want to pause when that swf has been added to the stage and then resume when it is removed.How would I accomplish that? I assumed I would put a conditional statement that if the loaded swf's current frame was less than 16 (16 is when it closes), to pause the sound and if it was larger than 16 to resume the sound at its current position. But this isnt working.
ActionScript Code:
var soundClip:Sound=new Sound();
var sndChannel:SoundChannel=new SoundChannel();
[code]....
View 0 Replies
Jun 11, 2011
I'm trying to make this so that every time I click a numeric stepper and the value of it rises another row is added,and every time the value sinks one is removed.So far I have this:
[Code]...
It adds rows whenever I click the stepper's buttons only.I'd like to know what the code should look like if this was to be the way I pictured it,and also how do I get rid of the event when I click the stepper's button,it adds one first,then another click adds one underneath the first one AND one OVER the first one o.o which makes the computer go slower and thats not what I planned :S
View 1 Replies
Apr 3, 2010
When using sound in flash you can also do this with loading an external sound.
my sound.load(new URLRequest("audio/mysound.wav"));
But when you load an .mp3 file the effect of the sounds keeps playing too late. So I discovered that when you save a audio file to mp3 format there is automatically with any sound editor an insert of 1/2 to 1 second of silence. So i read on the web that this does not happen when you save it to .wav formatBut when saving it to wav format i don't hear the sound in flash anymore, only when i save the wav file, with a compression of MPG,but then there is also silence added automatically. What compression technique you should use when saving it to wav format?
View 5 Replies
Oct 14, 2009
It's possible to play a sound file through AS, either by loading it from a folder or import it to flash. It's also possible to play a dynamic tone with flash.media.Sound + writeFloat.
But... is it possible to play a sound file with flash.media.Sound + writeFloat in some way? I want to play a sound file without having to deal with any files except the .swf!
View 9 Replies
May 19, 2011
I added a click event to the stage but this event also fires when i'm clicking a movieclip on the stage.How can i make this event fire only if i click directly on the stage?
View 2 Replies
Jun 21, 2010
I am building a flash interface and I would like a menu where it is hidden to begin with (just a tab). You click the tab to expand it, and click again to collapse it. I've made a movieclip with animation of the menu opening up and closing, but I can't seem to work out how I'd go about making the movieclip open and close properly.
View 4 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 12, 2009
I have a test button i would like to have play a movie where a graphic expands. Once stopped, I would like to be able to click that same button and have the graphic go backwards. I would prefer to have timeline reverse, rather than lengthen the timeline of the mc because then i have to line up the start and end, and if one changes, i have to remember to change the other.
btn_test.onRelease = function(){ if (_root.adinstance._currentframe != 1) { while(_root.adinstance._currentframe != 1) { _root.adinstance.prevFrame(); else { _root.adinstance.play(); }}
[code].....
View 3 Replies
Apr 20, 2009
I have a 20 frame MovieClip in the library with a Class attached to it. There is nothing in the Class except the usual stuff pertaining to MovieClips with a Class (import display.movieClip and so on). The first frame in the movieClip timeline is a stop() command. I only want the clip to play sometimes. So in the main document timeline, I add the clip from the library as such:
Code:
var testClip:SampleClass = new SampleClass();
addChild(testClip);
But with this instance, I also want it to begin playing. However the following is not working:
Code:
MovieClip(testClip).play();// doesn't work?
testClip.play();// also doesn't work?
But, if I delay things a bit it DOES work - like this:
Code:
Tweener.addTween(testClip, {y:0, time:.5, onComplete:function() {testClip.play()}});
// works fine, clip begins playing
Why delaying the play command works, but telling it to play on instantiating doesn't?
View 3 Replies
Nov 11, 2009
I'm having some trouble getting the following code to work - trying to use the new Sound.extract() function to get two seconds of a Sound into a ByteArray, and then create a new bytearray with a WAV header, and then output the file. The resulting 'test.wav' file sounds very wrong although slightly recognisable? I think I may have some of the WAV header settings may be wrong but I'm not quite sure what's the matter and after a long time scratching
[Code]...
View 5 Replies
Jul 11, 2009
I have a rollover button and I have assigned actionscript to play a sound when the button is rolled over.
However when the sound plays, it seems to overlap the sound and play it many times! I know it is not repeating the sound as I have tested it with a song and it plays the song many times overlapping, rather than repeating it.
I have the code used below:
[Code]...
View 2 Replies