ActionScript 3.0 :: Cancelling Sound.load?
Feb 1, 2009
upon loading of my SWF main page, I am automatically loading 5 external audio files,so they will be ready in advance when the user requires them.However, if the user immediately wants to manually select one of those 5 audio files, how do I cancel the 'sound.load' functions of the others (in order to give my user maximum possible download speed for the audio file he wants first) ?
View 1 Replies
Similar Posts:
Oct 30, 2008
when I load data into an XML object:
Code:
var xml = new XML();
xml.load( "someXmlsource" )
[code].....
View 1 Replies
Jan 2, 2011
I have an SWF that's 30MB. Sound files (music) make up 25MB, art and other things make up the remaining 5MB.
Would it be possible for me to load the 5MB of necessary art and other things first to allow the user to operate the app, then after that's all loaded and they are operating the app, load the remaining 25MB of sound files in the background?
UPDATE: Loading SWF (or other entities) externally is not an option.
View 1 Replies
Aug 8, 2006
I am having difficulty with the following functions. What I want to do is just have one movie clip (we will call it plane_mc) go up at an angle, and have another movie clip (oh, lets just call it fallingCan_mc for kicks) that will go down at a particular angle. I got the plane to work fine with the following AS:
Code:
/* Plane motion script */
this.onEnterFrame = function () {
[code]....
View 2 Replies
Feb 2, 2011
I have a textArea and would like to prevent the default behavior for certain keys such as the enter key from being run upon user input. However, KeyboardEvent is not cancelleable so preventDefault does not work.
View 2 Replies
Aug 13, 2010
Which can be seen here...[URL]
What seems to happen is as soon as the cursor goes over any of the MovieClips that are inside of the expandable button the MouseOver event is getting cancelled. and the MouseOut event gets Called (I presume that it no longer thinks it is over the clip due to the call getting blocked by the content clips). This can be seen when the mouse goes over the text (which is a MovieClip inside the expanding button). I'm pretty sure this is to do with event propagation, and is probably quite straight forward to sort, but I'm just not sure where? here's my code...
Code: Select allimport com.greensock.*;
import com.greensock.easing.*;
section1.NavBar1.scaleY = 1;
section1.WhiteBar.scaleY = 0;
[Code].....
View 1 Replies
Dec 16, 2005
I'm trying to load sound dynamically into a clip and then play it randomly. The AS I came up with works great if the sound is embedded and I use the .attachSound() method instead of loadSound(). Now, when I load it dynamically and use the code below, the sound plays very fast and at a higher pitch.
Code:
var crows = new Sound(this);
crows.loadSound("Raven.mp3", false);
crows.setVolume(100);
[Code].....
View 1 Replies
Jun 22, 2003
I am loading small sounds dynamically with the loadSound command. These small sounds are activated with a rollover. see script below. This works ok. however. i want the first sound to keep playing while the rollovers load sound. a bit like playing the piano. This works ok when i import all the sounds into the library and place them on their very own button. however the size of the flash movie increases to 140k. whereas when i load them dynamically the size of the movie is 20k. obviously i want to load dynamically.
But with dynamic loading each sound stops when another sound is rolled over, so that there is only ever one sound playing at once. I need to load the sound into a different level or something, so that the first sound can keep going while the smaller, shorter sounds play over the top. this is my script below. The first sound loads when the movie starts. This is the one i want to keep playing. Then there are the smaller ones with rollovers. does this make any sense? there's actually 13 little sounds.
[Code]...
View 3 Replies
Aug 28, 2009
I'm working on a video player with full screen capabilities. I have the control bar set to tween in and out of the video screen with a mouse event. I'm also trying to position the control bar at the bottom of the screen when it's in full screen mode. My problem is that the control bar doesn't reposition when in full screen because of the tween functions. I'm thinking that whatever solution comes up that I might go in the if statement of the full screen code.
[Code]...
View 8 Replies
Aug 11, 2011
I have a MOUSE_DOWN handler that creates a CLICK event listener on a child object. Naturally, as soon as you release the mouse button, if you happen to be over the child object, the CLICK event fires.I was disappointed to discover that event.stopImmediatePropagation doesn't interrupt the CLICK event from registering the MOUSE_DOWN as part of its detection cycle. It makes sense that it doesn't but still... disappointing.A MouseEvent.CLICK consists of detecting a MOUSE_DOWN on the object and then if it's followed by a MOUSE_UP without leaving the object, he event fires. I had hoped that by cancelling the MOUSE_DOWN event, it would clear that out of the CLICK buffer, but no such potatoes, alas.This could all be handled with a flag and a couple more MOUSE_UP and MOUSE_DOWN handlers, but dang, smacks of effort
View 2 Replies
Feb 11, 2010
I've got a flash movie containing 6 individual SWF's. These contain a short clip, with some sound effects. Also, I got 1 additional SWF that calls for each SWF in numeric order.
Now, I'd like to have a theme song going on in all of these 6 SWF's, and it needs to be seperatly, so that the sound does not stop until my movie is done.
Actionscript for my movie is;
ActionScript Code:
//
var movie1:URLRequest=new URLRequest("1Intro.swf");
var movie2:URLRequest=new URLRequest("2Troldmand.swf");
var movie3:URLRequest=new URLRequest("3Superman.swf");
[Code].....
View 1 Replies
Jan 28, 2009
trying to make a play/pause toggle button in AS3. I'm a newbie but I've finished the site except for this element. my audio file works when i import to the library and it plays it in the preview. its in the same folder as the fla. working in cs3. This is what i've done.new as3 file. code.
var req:URLRequest = new URLRequest("ocean.mp3");
var s:Sound = new Sound(req);
s.play();
whats the deal? I get no compiler errors. i'm hitting option+Return on the mac to test the movie. I downloaded some one else's and it worked. i copied theirs into my project and it didn't work. i have a feeling its something to do with classes that i don't know about
View 1 Replies
Jun 9, 2009
I am doing a flash which with audio, the audio about 3-4 mins. But when i use another flash movie to load that flash mov with sound (using load movie function), cannot hear any voice. Why is it? The flash movie with sound is use actionscript to attach the sound, when i test the movie, it is work. When it comes to load from another movie, it doesn't work.
View 2 Replies
Feb 7, 2009
i have an example fla i made of my real project..a nd basically i need a diffrent sound on all 3 frames so i put my sounds in my library and the sound works when i first start up but if i sitch to a diffrent frame it stops and willnt start the next one
fla attatched at the folowing link... (flash cs3/cs4 compatible) [URL]
View 3 Replies
Jun 17, 2009
Urgent help me load a external sound in action script
View 0 Replies
Dec 10, 2011
I want to play a sound either external (preferably) or internal but the name of the sound needs to match my target element which is in an array. I have been able to get the target.name and assigned it to a var mySoundName:String but I can not access the sound, I have posted my code and the 2 codes for internal and external load sound that I have..
Code:
import flash.events.Event;
import flash.display.MovieClip;
import flash.display.DisplayObject;
[code]....
View 6 Replies
Jan 13, 2004
I have an external sound controller that plays 10 tracks. The current way I load the sound controller is with LoadMovie and I do it on the last frame of the movie that is my actual website. However, this slows my whole site down significantly, because when I press stop on the sound controller...everything is at the speed I want it to go. What is the best way to go about preventing this slow down?
View 2 Replies
Aug 25, 2004
I want to load a sound to one of my buttons. I think I've got the scripting, but how do you put them "together" snav2.start("snav2"); - (I think)...is my scripting for my sound (where snav2 is my symbol linkage propery name)
and then
on (release) {
getURL("about_us_1.htm", _self);
}
So, where do you put the sound scripting in?
View 2 Replies
Apr 11, 2005
I have sounds ( A-Z ) and when i press the A button i want the A sound to play , i have fixed everything . The button is pressed and everything works , except my sound! i tried just to have e sound in the frame and it worked .. How should i do ?
[Code]...
View 5 Replies
Jul 17, 2003
Whenever I enter the actionscript loadMovie ....I could only place it in by cut and paste because everytime I use the ready actionscript loadMovie;it places the script as loadMovieNum and that does not work!
yet what do I have to do different to just have the sound load in automatically when the scene is open instead of having the viewer press play when they see the play button, but rather only see the stop button to choose to turn the sound off.
View 1 Replies
Feb 23, 2008
I'm trying to load sound dynamically. I have 4 loops (mp3) and I want them to go like this:
loop1 - loop2 -loop1 - loop3 - loop1 - loop4 and repeat...
Is this possible? I've tried onSoundComplete but how will I get it to start all over?
View 1 Replies
Apr 10, 2008
I figured out how to get sound to load from the library in AS3, which is good, however I'm trying to do the same technique in another fla with different mp3s and i get the following error. WTF?
'Sound has no valid device sound path although exporting device sounds was requested in the export settings. This sound will be ignored.' You can check out my code below, anyone else thats run into this let me know.
[Code]...
View 2 Replies
Oct 8, 2008
i have a little problem with a streaming load sound. this is the code:
[code]...
i don't understand because if i testing the swf i listen the sound super fastly and with IE6 too. FireFox and IE7 no. i have read that is the bitrate mp3 ... something like 128 kbs 44hz to run corectly but with i can't do the mp3 compression.
View 1 Replies
Jan 13, 2004
I have an external sound controller that plays 10 tracks. The current way I load the sound controller is with LoadMovie and I do it on the last frame of the movie that is my actual website. However, this slows my whole site down significantly, because when I press stop on the sound controller...everything is at the speed I want it to go.
View 2 Replies
Aug 26, 2004
face some problem here : Have 2 page of text to be show with sound. Also have 1 page let user to click on radio button to choose whether want to listen to the sound or not listen to the sound.
how to load the sound to play while the user click on tat page n if the user choose to off the sound all the sound on page 1 n page 2 will off.
View 4 Replies
Dec 3, 2008
I have a seriour problem with my new application. I am using AS3 and AIR. It's a web radio. When the music end, I load the next music of playlist. The error is. Sometimes he load the file and sometimes he crashes and does not load the next music without any error. How can I resolve that?
View 1 Replies
Jun 7, 2011
i would like a method to do this.I have a video mp4 play with flvplayback with soundi would like to play sychro mp3 music file with videoBut video have an audio and i would like to keep my audio too.Then how can mix the audio of my mp4 with audio of my mp3?
View 6 Replies
Mar 1, 2010
Is there a way to load ID3 tags in AS3 without loading sound?
View 3 Replies
Nov 14, 2010
I'm struggling with a flash file that I want to play two different sound files when the appropriate buttons are pressed.I've gotten it to the point where it will load without any errors popping up, but instead of playing the second sound when I press the button for that sound, it plays the first sound again. Here's the code:
var sc1:SoundChannel = new SoundChannel();
var s1:Sound = new Sound();
s1.load(new URLRequest("http://www.website.com/wells.mp3"));
[code]....
View 1 Replies
Mar 21, 2004
I have a button which loads a sounclip into a movieclip: [AS]_root.myMusic = new Sound(emptyMC); _root.myMusic.loadSound("song1.mp3", true);[/AS] it will load the sound and play and stream it ... but in my output i constantly get this every sec: Error opening URL "file:///E|/Dir/Dir/Dir/undefined"
View 1 Replies