IDE :: Canceling Sound Before It Finishes

Mar 20, 2009

I have a character that uses the arrow keys to move. Key_Down sends him 10px left or right per press and when you let go he stops. easy as pie. What I've now added in is that when you press either of those keys it also plays a "walk" sound. In order to stop this walk sound I then added Key_Up and specified that the sound should stop via SndChannel.stop();

At first it was working fine, but there was the issue that if you held down a directional button the sound would spawn multiple times and sound like crap. I added in a boolean to disallow this, making it so that only one instance will play at a time and it will loop. The problem now is, however, that the initial SndChannel.stop(); under the Key_Up listener has stopped working. Instead of stopping the sound immediately on key up, it waits until the sound file has finished and simply stops it from repeating.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Slider_mc To Move On Y When Each Sound Finishes?

Feb 2, 2009

I've got a movieclip (slider_mc) -- it's two 800x150 rectangles spaced 450 pxls apart on y. (Stage is 800x600).I load in the sounds, then when each sound is finished playing it launches a function that plays the next sound, this works fine. I'd like slider_mc to move on y when each sound finishes. The first tween works like it should, but nothing happens when playSound_02 is launched -- the sound plays but the tween doesn't work.Here's my code:

import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;

[code]......

View 1 Replies

ActionScript 3.0 :: Replay Streaming Sound After It Finishes

Mar 8, 2010

i am using this code to stream sound [code] i want to know how to replay sound after it finished but without streaming it again

View 3 Replies

ActionScript 2.0 :: Disable Arrow Key Until Sound Finishes Playing?

Mar 10, 2008

I'm trying to make the UP arrow key disabled until a sound has finished playing. Is this possible?This is because other keys also play sounds and I don't want the sounds overlapping each other. Thus I'd also be trying to disable those keys as well whilst a sound is playing.

[code]...

View 1 Replies

ActionScript 3.0 :: Flash To Hold On Frame Till Sound Finishes

Apr 22, 2009

I'd like to know if there's a wait to have flash hold on a frame till a sound finishes playing. I'm guessing that this will require some sort of EventListener but I'm pretty new to AS 3.0 and I'm not sure how to do it. I've searched the forms but cant seem to find anything on how to achieve this either, but I think thats because I'm not sure of the correct terminology.

View 2 Replies

ActionScript 2.0 :: Sound Flash - When The Audio Finishes It Goes To The Next Frame Automatically

Jan 28, 2010

I am trying to make a webinar in flash, I have frames and in those frames I need to insert audio and when the audio finishes it goes to the next frame automatically. but I also have a menu bar and when I click on a button to take me to a frame i get a whole load of audio going on. I just need it to go to that frame and play the audio Just want to be able to have it play though, when the audio finishes it goes to the next frame or if i click a button on the menu it takes me to the frame i need,

View 1 Replies

ActionScript 3.0 :: Variables Canceling Out Each Other?

Sep 15, 2009

Im making an app that ratates images in seperate MCs from seperate arrays. The problem seems to be in the nextImage function, where the currentImage variable doesnt seem to advance, leaving the first image in the array to repeat on the cycle. It works fine when I trigger the function independently, but not when I trigger it twice at the same time. My guess is that maybe the variable is getting rewritten back and for by each instance

Code:
var pic1Container:Sprite = new Sprite;
var pic2Container:Sprite = new Sprite;

[code]....

View 2 Replies

ActionScript 3.0 :: Canceling The Execution Of A Function

Aug 25, 2009

I am having a problem cancelling the execution of a function. When I click on the first of my navigation buttons, I have a fade in tween and an image loader load an external image. If I click on the second navigation button befiore the function for the 1st button finishes, the 1st tween and image loader continue to finish while the tween and image loader function for the 2nd navigation button starts. Essentially, there is an overlap. Is there a way to tell the 2nd navigation button to stop all other functions before it starts its own function? I suspect it has something to do with stopImmediatePropagation, but I am unsure of how to put this into the function.

View 2 Replies

ActionScript 3.0 :: Canceling EnterFrame From Outside The Function

Jun 28, 2011

I have a function that running on ENTER_FRAME inside another function that is called once on COMPLETE.  I need to stop that ENTER_FRAME later on in the timeline.  Here's the basic code:
 
myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, startListener);
function startListener(e:Event):void
{
var mySprite = new Sprite();

[Code]....
 
So you see when myLoader is COMPLETE it creates mySprite that is an ENTER_FRAME and continues to run the function playerBarPos.  The function playerBarPos then traces over and over again "this keeps going and going".  How do I later in the timeline stop this?

View 6 Replies

ActionScript 2.0 :: Drag Box's - Code Canceling S#$T OUT

Aug 9, 2004

I have some code that is canceling out my other code. I have code that is controlling two movie clips. Below i have the code separated in two sections, marked my comments. When i add the second sections "//info box", it disables the code above it. I know the code works, because i have it working separatly. Can anyone tell me what the conflict is?

[Code]....

View 5 Replies

ActionScript 2.0 :: GetUrl Is Canceling Out Animations?

Apr 23, 2008

This is AS2. I have a mc that is functioning as a button. On the mc timeline the actions frame contains the code at the bottom, and it everything works fine. Except when I try to add the getUrl statement. Here is the statement
on (release) {getURL("http://mysite.com", "_blank") ; }

here is how I try to add it. When I'm on the main timeline, I click on the mc. then I click on the actions panel then I insert the above code. When I do, Then all the animations etc. in the button is cancelled out, but It does get the url. How do I get both the animations and the geturl to work together. below is the code contained inside the mc.

// When mouse pointer over the button
box_color.onRollOver = function() {
box_color_play = 1;

[Code]....

View 3 Replies

ActionScript 3.0 :: Canceling MouseEvent.ROLL_OUT On CLICK

Jan 13, 2012

I am using an event listener for both rollOut and rollOver to a button, on roll over it populates a text field, roll out clears the field, however I would like on click to populate the field and leave it persistant untill another roll over event happens, curently the roll_out event takes priority and when I move my mouse it clears the field, regardless of click.

what is the best way to cancel the roll_out event?

View 1 Replies

Internet Explorer 8 - Flash Canceling Png Tiling?

Nov 16, 2010

I have a weird issue that only seems to show itself on IE 8 so far. I have a semi transparent png tiling accross some divs on my site. All works ok. However as soon as i put any flash content on any div on the page, doesn't matter where, IE stops tiling the png and stretches it instead. It only occurs with flash and on ie8.

View 1 Replies

Actionscript 3.0 :: Button Instances Canceling Out MouseEvent?

Feb 17, 2009

I'm trying to make a custom menu for my website. Each of three main menu items contains a set of sub menu items that are button instances.I've managed to set it up like I want, where when you hover the mouse overtop the main menu item it animates beautifully, reveling the sub menu items buttons below it. However, once I touch the button instances themselves it seems to cancel out the mouse_event that caused the animation in the first place (rolling over the main menu item), and sends it back to it's first frame - essentially making the buttons within the submenus inaccessible.

View 2 Replies

ActionScript 2.0 :: Two Buttons Keep Canceling Themselves Out If I Place Them On Top Of Eachother?

Aug 26, 2004

at the end of this tutorial it talks about adding links to the buttons created. I did what it said to do but the two buttons keep canceling themselves out if I place them on top of eachother.

View 1 Replies

Actionscript 3 :: ItemRenderer Is Canceling WordWrap Setting On DataGrid?

Nov 15, 2011

Now, I created two codes. The code of (1) is displayed correctly. However, as for the code of (2),doesn't wrap.

<mx:DataGrid id="myGrid" horizontalScrollPolicy="auto" dataProvider="{mounth}" width="100%" height="100%" variableRowHeight="true" wordWrap="true">
<mx:columns>
<mx:DataGridColumn headerText="Header1" wordWrap="true">

[Code]....

I want to display a character according to the width of DataGridColumn of DataGrid.

Is there how to display by variable length? Incidentally (1) is displayed by variable length.

View 1 Replies

ActionScript 3.0 :: MouseOver Event Canceling Due To Child MovieClips

Aug 19, 2010

What I've got is a clip that when moused over expands down, and when moused out contracts back up again...simple right.

The problem I've got is that as soon as I place a child inside the expanding clip (which is another expanding and contracting clip). the listener gets blocked by its child making it contact before it should. This sounds a little confusing, but will make alot more sense when viewing my code here...

Code:
import com.greensock.*;
import com.greensock.easing.*;
var section1:Section1 = new Section1();

[Code]....

By the way I will be putting buttons inside the clips eventually, so disabling the clips contents is a no go.

View 1 Replies

ActionScript 3.0 :: Loading Another Image Without Canceling The Existing Image

Mar 22, 2011

I made 1 image gallery. and i am facing a big issue. When one image is loading in my Loader object. If i click on next image button. It starts loading another image without canceling the existing image. So mutliple images appear at stage in this case. I want something that stops loading older image and start loading new image.

View 4 Replies

Professional :: Export To SWF Never Finishes

Mar 12, 2011

I'm working on a 3 minute animation that is 53.7 MB right now. I periodically export the file to swf to see how it looks as I'm working on it.
 
It got the point where it was taking around 30 seconds to export which I'm used to when my animations get longer. However, now it constantly gets stuck at 90% and I get the rainbow wheel cursor. I waited 30 minutes thinking it needed to catch up with itself and nothing changed. I always end up having to force quit out of Flash because it's not responding.

I've tried numerous things to try and get it to export such as quitting and restarting Flash, doing a complete shutdown and starting Flash, and copy pasting all my frames into a new Flash file and saving. No matter what it always stops at 90% and no longer responds.

View 2 Replies

IDE :: GotoAndStop After Tween Finishes?

Jun 12, 2009

how do you use the gotoAndStop after a tween has run?

import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;

[Code]....

View 2 Replies

IDE :: Start When Movie Finishes?

Sep 20, 2010

I have a movie that starts as the intro to the site. However, if it doesn't load quick enough, the rest of the site loads and cuts off the movie. How can I make the 2nd part play only after the 1st is completely finished?

View 2 Replies

ActionScript 2.0 :: Hiding SWF After FLV Finishes In HTML

Jan 30, 2009

I am attempting to hide a SWF file that has the AS2 FLV component in it only after the FLV has finished playing. How would I go about this?I've searched google fairly extensively and had no luck.I've found a way to hide the Div the SWF is in using a timed Javascript event that is external to the SWF, but I'd like to find a more elegant solution.

View 4 Replies

ActionScript 2.0 :: SWF File Play After The FLV Finishes In MC?

Aug 13, 2009

how to write script how to get the SWF file to pop up after the FLV video finishes..at the end of the FLV video I only need the SWF to pop up..

View 16 Replies

ActionScript 3.0 :: Loading External SWF When First One Is Finishes?

Jun 23, 2011

The code I have so far is included below. Right now the first swf (first of two loaded into main swf) (intro.swf) loads fine on mouseclick of the "go" button. However I would like the first swf to unLoad and the second swf to load ("europe.swf"). This will be a one frame swf that will link to various others. After multiple tutorials/forums I can't figure out how to get the second swf to load while the first unloads.
 
import flash.display.MovieClip; import flash.display.Loader; import flash.net.URLRequest; go.addEventListener(MouseEvent.CLICK, goIntro); var loaderIntro:Loader  = new Loader(); var contentIntro:MovieClip; function

[Code].....

View 5 Replies

ActionScript 2.0 :: Hiding An SWF After A FLV Finishes In HTML

Jan 30, 2009

I am attempting to hide a SWF file that has the AS2 FLV component in it only after the FLV has finished playing. How would I go about this?

I've found a way to hide the Div the SWF is in using a timed Javascript event that is external to the SWF, but I'd like to find a more elegant solution.

View 4 Replies

ActionScript 3.0 :: Setting X Value After Tween Finishes?

Oct 13, 2009

i'm using the tween class to move a movieClip around the stage, depending on what button the user selects... the movieClip starts in the center of the stage and moves to where I tell it to in the tween. The begin property of the movieclip is its current position (characters_mc.x). This all works until I want to move the movieClip again, and it starts from the center of the stage instead of its newly landed position... So the question is, how can I get the tween to start from where it previously landed, instead of always from the center? Shouldn't the value of the x position of the moved movieclip change as it is moved? Any better way to do this?

ActionScript Code:
var myTween:Tween = new Tween(characters_mc, "x", Regular.easeInOut, characters_mc.x, 95.8, 2, true);

[code]......

View 3 Replies

ActionScript 2.0 :: Getting Swf To Go To Webpage After Movie Finishes?

Oct 24, 2009

I'm kinda new to Actionscript still and I found a code for an external movie (that's in an FLVPlayback component) to play in a container after a preloader - it can be seen here: [URL]..at the end of the intro clip, i want the site to go to another page automatically i'm having trouble because i think i'm supposed to use getURL, but i don't know how to tell it to go there only after the external movie is done. here is the code that controls the external movie:

HTML Code:
import mx.video.*;
stop();
this.attachMovie("FLVPlayback","my_FLVPlybk",{width:815, height:540, x:100, y:100});
my_FLVPlybk.contentPath = "http://www.stillpictureproduction.com/dynamic/stillPic.flv";

View 1 Replies

ActionScript 2.0 :: Button Appear After Movieclip Finishes?

Feb 13, 2010

I need button to appear after movieclip finishes. I was trying to insert code to the last frame of movieclip, _root.myscene.gotoandplay(140)...... and lots of different codes. But then I realised , that you cant control maintimeline from movieclip.

View 9 Replies

Actionscript 3 :: Sound Latency - Set It For Any Silence Before The Actual Sound By Calling The Sound

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

Movie Streams Before Preloader Finishes Loading It?

Jul 11, 2009

I have created a very basic preloader using flash components 'Loader' and 'ProgressBar". It's job is to load an external swf movie clip/file.

Problem: When the preloader has finished doing it's 'thing', i.e. reaches 100%, it loads/or seeming reveals the external movie already underway i.e. not at the first frame.

I've read a few posts from "Whispers", and have concluded that the problem is that the movie is streaming whilst being loaded. And also that i need to be using "init" in regards to 'listener'.

However i really want to be able to apply this to the code i am using it, as i had just kinda gotten to grips with it (the code).

Is anyone able to tell me what a need to alter to get the preloader to finish loading the movie COMPLETELY before it starts to play.

------------
myProgressBar.mode = "manual";
myProgressBar.setProgress(0, 100);
myProgressBar._visible = true;

[Code]....

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved