ActionScript 3.0 :: Loading Sounds With Urlrequest?

Feb 4, 2009

this piece of code:

PHP Code:
var mySoundReq:URLRequest= new URLRequest("samplesound.mp3");
var mySound:Sound = new Sound();
mySound.load(mySoundReq);

How does the urlrequest know where that .mp3 file is located, and how do i tell as3 where it is? and another thing: when i put this on the web, how do i locate the file then?

View 6 Replies


Similar Posts:


ActionScript 3.0 :: Picture Not Loading On URLRequest?

Jan 20, 2011

I am creating a custom class called Image. When called from a SWF it constructs the box and text as it is supposed to, but I also need to call an image into the object but that isn't happening.

[Code]...

View 3 Replies

ActionScript 3.0 :: Loading Variables Using URLLoader And URLRequest

Feb 18, 2010

I am building a simple swf that will load in variables from an asp page using a URLloader and URLRequest. The asp page loads in the current values from a SQL database but these values will change every second. My swf loops every 6 frames and loads the data. How much load this puts on the server? And when the server is busy might this cause a problem with the variables I am reading in?

Does AS3 run all actions on frame 1 before going to frame 2 etc? I don't know if this is the best way but my last variable in the ASP page is called Loaded and I test for it before moving on. My major concern is the load I am putting on the website but is this small? In firefox the status box constantly flickers transferring data from ... and waiting .. but in other browsers you can't see the activity.

View 2 Replies

Professional :: URLRequest Lost - Error 1046: Type Was Not Found Or Was Not A Compile-time Constant: URLRequest

Aug 12, 2009

In my movie i have a link button with following, simple, function creating a link:

[Code]...

lately i've associated a class file (.as) to my movie and immediately after, when publishing the movie i got the following error message: 1046: Type was not found or was not a compile-time constant: URLRequest. as well as a couple of other related error messages: 1180: Call to a possibly undefined method URLRequest. 1180: Call to a possibly undefined method navigateToURL. when i remove the link to the class file, the problem goes away. also, i have checked the class file for mentioning of "URLRequest" and nothing is there.

View 9 Replies

ActionScript 3.0 :: Loading Multiple Xml Files On Click (urlRequest)

Jun 2, 2009

I am having trouble loading multiple xml files when the button is clicked.

View 5 Replies

ActionScript 3.0 :: Getting Error Info On URLRequest When Bulk Loading Images

Feb 18, 2010

I'm using a bulk image loader from FlashAndMath. The code has you send a list of images to load and it simultaneously attempts to load all at once, adding each load req to a list.

My problem is that when one doesn't load and throws an error, I don't know which load request failed. Are there built-in ways to get it to report what image it was trying to load, or at least which of the load requests threw the error? I tried doing an event.contentTarget.content.name and it reports an instance #, but not the name I tried assigning when I called the URLRequest.

View 6 Replies

ActionScript 3 :: Loading Images By Making URLRequest To Local Folder?

Jul 8, 2010

I want to make an application that loads some images with a Loader by making URLRequests to a local folder. Can I build the application and include somehow this folder so when I send it from a server to a client the URLRequests operate normally on clients side? Also if this is possible, the folder may be not viewable/accessible by the client but only from the Flash application that comes with it? So for example, this piece of code that runs nicely, locally, to my machine, if i send it to a client will continue to run to its machine. Can somehow send the folder and the SWF as one object?

private function clothesOn( outfit:String ) {
var clothier:Loader = new Loader();
var item:String = "clothes/" + outfit + ".gif";
var getItem:URLRequest = new URLRequest( item );
clothier.load( getItem );
this.addChild( clothier );
}

View 1 Replies

Loading Two Different Sounds For One FLV File?

Aug 8, 2009

I need a flv with two sound. I want to load load two different sound for one flv file. For example I want to load my flv file in frame 1 with sound 1 then I want to load my flv file in frame 2 with sound 2. How can I do it?

View 7 Replies

ActionScript 2.0 :: Loading Sounds And Swf's?

May 7, 2002

I have a main movie loading a SoundMC which loads 12 swf's that contain mp3's with preloaders in each swf.

example LoadMovie("swfName","_level10")My issue is that when the swf loads it will load in the top left corner of my movie. So I put it inside of a movieclip and tried to attachMovie("clipname")setProperty._x = x; setProperty._y = x; but no Love. Should I put this in the Main timeline or in the SoundMC timeline or not use it at all?

View 6 Replies

ActionScript 3.0 :: Loading Sounds Before Playing?

Jan 16, 2009

There are 8 letters in the menu. Each letter provides a linkwhen clicked and a sound when rolled over. The letters will NOTAPPEAR on stage until their corresponding sound is completedloaded. I did this to avoid distortion during playback. The soundbit are pretty small as well. Anyway, the sounds are still distorted during playback and Idon't know why. They are all MP3. HELP PLEASE!! Here's the scriptfor one of the eight letters (movieclips) only to limit size you'llhave to look through:

public function Index() {
var D:MovieClip = new dMC();
D.x = 100;

[code]........

View 4 Replies

ActionScript 3.0 :: Loading External Sounds?

Jun 30, 2011

I am using this code to load an external mp3 file -

Code:
var snd:Sound=new Sound();
var context:SoundLoaderContext=new SoundLoaderContext();

[code]......

View 1 Replies

ActionScript 3.0 :: Loading Images And Sounds?

Nov 21, 2010

I made an app. I figured out how to load all my images into in.I have about 1000 images and 1000 sounds that I am using in it. About 70MB of data How will this affect a users computer? Is it even possible the load up this much content?I ask because I am getting stack overload error on my bulkloader!Scares me to think that months of work will go down the drain because I can't load this much data!

View 2 Replies

Actionscript 3.0 :: Loading Different Sounds With One Sound Object

Jan 9, 2010

I made some sort of MP3 player based on an XML file, and I want to load the next track when pressed on a button. Well that part works, the problem is, when I play the next song, this is what happens:

- The next song plays

- The bar that is normally buffering is already full

- When I skip to a part of the song, it skips to the first song!

How can I "clear" a sound variable and load another one?

View 3 Replies

Actionscript 3 :: Embed Versus Dynamically Loading Sounds?

Jun 4, 2011

It's got 5 tabs, and will give the user the options to play about 10 sounds per tab.I have initially been loading the sounds on runtime, so whenever the user clicked a button to play that sound, I would do something like:

var sound:Sound = new Sound(new URLRequest("assets/hello.mp3"));
sound.play();

I'm not sure, but I don't think this is very good, since I would be loading that sound over and over again if the user pressed the button too many times.

I then thought about embedding the sound in each of the views (I have one view per tab), so would embed the sounds whenever the view was loaded. I think this is a better options, but still am a bit unsure about how the embed works exactly.

[Embed('assets/hello.mp3')] private var hello_mp3:Class;

I suppose it simply embeds the mp3 files when the swf is compiled (making it bigger), but they would not be loaded anymore once the app starts, or once that view is initialized again.

View 4 Replies

ActionScript 2.0 :: Loading External Sounds Stored In An Array

Sep 11, 2007

I want to write a function that will load all of my external sounds stored in an array which are just strings of their filenames ie:

var soundList:Array = new Array();
soundList = ["sound1.wav", "sound2.wav", etc];

And create a new array with sound Objects that will have the sounds loaded in them (for later execution). After loading all of the sounds in the soundList array, the function should return or just set a _root value to 'true' ie:

[Code]...

View 1 Replies

Actionscript 3 :: Dynamic - Loading/Calling Sounds From String Array?

Mar 7, 2010

i'm attempting to instantiate a bunch of sounds by creating a string array containing each sound's filepath (or name).

var soundByName:Object = {};
var channelByName:Object = {};
var soundName:String;

[code]....

View 1 Replies

ActionScript 2.0 :: Use With Music Is Affecting All Other Sounds - Button Sounds And Background Sound

Apr 16, 2010

I followed the mp3player tutorial (part 3) from [URL] and got it working fine. Only problem is that the setVolume I'm trying to use with my music is affecting all my other sounds - button sounds and background sound. I'm aware of the createEmptyMovieClip/attachSound approach and got it working on my other sounds. But Lee's tutorial-mp3player is using a slight different technique, and so my normal approach doesn't quite work.

[Code]....

View 7 Replies

ActionScript 3.0 :: Synchronize Sounds Perfectly To Do A Kind Of Audio Mixer Using Different Sounds?

Feb 7, 2011

I want to synchronize sounds perfectly to do a kind of Audio Mixer, using different sounds. [URL] does it perfectly, I've been researching and researching and I just don't know how to do it! How does [URL] synchonize audio so perfectly? you can even change sounds and the new ones will come on time! How do I do that? Is it just Action Script? or something else?

View 1 Replies

ActionScript 2.0 :: CS3 Getting Sounds To Start Again After Using Stop All Sounds

Nov 29, 2009

I have a film with 4 scenes in it: Here's a link to the film and as you can see the film does not play the music the second time because of the StopAllSounds function which is probably the wrong code to use. The first scene is just a button with 1 frame, a stop action and a music clip. The second scene is the film. The third scene is the credits fourth scene is a Play again button. I have a Stop all Sounds action on the fourth scene because if I do not use it and I press the Play Again button, the music from the first song keeps playing but also the music from the film starts up again so it starts to play twice. What I want to know is, how do I get the music to stop at the end of the film but start up again once I hit Play Again?

I am using Flash CS3 if that helps and using Actionscript2.

View 2 Replies

ActionScript 3.0 :: Url In URLRequest?

Apr 28, 2010

I have the following actions in my file :

var xmlLoaderA:URLLoader = new URLLoader();
xmlLoaderA.addEventListener(Event.COMPLETE, LoadSomething);
xmlLoaderA.load(new URLRequest("my url"));[code]....

now imagine that the loading of the file is completed and we are in the "LoadSomething" function. How can we trace "my url" in this function? In another word I want to wite this action:

trace(Command);

and I want "my url" string in output.But I dont know what is the Command.

View 1 Replies

Flex :: Use A Var In A URLRequest?

Dec 27, 2011

During development I have to test using several different hosts. It is a pain to have to change the IP address everywhere I use navigateToURL or in an mx:HTTPService. I would like to set a var with the IP... public var hostIP:String = "192.168.1.100"; Then later I instead of doing...

[Code]....

View 2 Replies

ActionScript 3.0 :: New URLRequest To PHP?

Sep 26, 2009

working my way through some tuts, and have set up WAMP. Trying to send some vars from AS3 to PHP to update a mtySQL table.My issue is that the php file does not seem to be receiving the variable info from flash, why not?

Here is the AS code

Code:
submit_btn.addEventListener(MouseEvent.CLICK,onClickSubmit)
function onClickSubmit(event:MouseEvent):void
{
var loader : URLLoader = new URLLoader();

[code]....

The PHP works cos when I run it from a browser $sd3 updates the database field to 78.This the output of the 'trace' statements

clicked
sd1=77&sd2=88&nickname=test1

The reason is probably simple but I can't see it.

View 1 Replies

ActionScript 3.0 :: New URLRequest Not Working

Nov 2, 2009

I cannot ascertain why the code for one set of navigation buttons I've created works, but similar code does not. The code is rather lengthy, but I've pulled out the salient components to see if the Interwebs could help.

Here's the script that IS working:

Listener code:

Code:
cswordbutton.addEventListener(MouseEvent.CLICK,fetchcswordassets);
And the function code that goes with it:

Code:
function fetchcswordassets(e:MouseEvent):void{
var url:String = "knowntomeURL";

[Code].....

1) All of the actions are in a separate layer in the first frame;

2) There is only one scene;

3) I've given the same button a different instance name in many cases, to coincide with different expectations (URLs).

View 4 Replies

ActionScript 3.0 :: URLRequest And Php-xml's - Get The Xml-data?

Jul 30, 2009

i have this code
 
public class TextboxXML extends Sprite
{
[...]
//XML[code]....

i want to get the xml-data. the xml will be generatet out of a php-function.testing it out of flash by "testing the movie" (apple+return), the php will be parsed and it works. when i test it on my lokal server, the same smf i mean, nothing happens.

View 2 Replies

ActionScript 3.0 :: URLRequest Doesnt Contain Anything?

Oct 20, 2009

I have an xml file which contains multiple products each with their corresponding background image, foreground image, text and website. The LoadXML class loads this xml file and creates an array of each image, text and website. The Main class then loads each image from the array of background images in the method onBackgrLoad(). This is done through the use of a for loop which loops through the array of backgrounds (called hintergrund[]) and loads each one in turn. On tracing hintergrund[] I sucessfully receive a string of all the different background image paths. However when I examine the backgrRequest and backgrLoader they both contain null. The images therefore dont appear on stage but neither does an error message appear! The same thing happens for onImageLoad (this should load the foreground image) and onTextLoad.
 
public class Main extends Sprite
{
//____________________________________________________________________________Vars : Newly

[code].....

View 6 Replies

ActionScript 3.0 :: URL Importation And URLRequest?

Dec 21, 2009

package
{
import flash.display.MovieClip;
import flash.events.MouseEvent;
import flash.events.TimerEvent;
import flash.net.URLRequest;

[Code]...

View 1 Replies

Asp.net :: Setting URLRequest Path?

Nov 12, 2009

fla files which is calling default page . but it's not able to find the default page.. my default.aspx page is in root directory ,and my fla file is in ../capture/image.fla . here is my code

[Code]...

View 2 Replies

Asp.net :: Flex URLRequest And .NET Authorization?

Apr 24, 2010

can I make role based authorization when sending requests to an ASP.NET MVC backend system. I am calling action methods and expecting JSON results, however, some action methods are decorated with the [Authorize] attribute, others require some role privileges to be present. I certainly hope that passing authorization data with every request is possible

View 1 Replies

Actionscript 3 :: LocalConnection Var Into URLRequest?

Jun 29, 2011

i use LocalConnection between two swf in the same page.What i'm trying to do is to use a String sent from one swf to the other, as variable into my URLRequest...So i can trace "myVar" into the function chemin, but i didn't find how to use it into URLRequest

swf that receive the var :

var lc:LocalConnection=new LocalConnection();
lc.client=this;
lc.connect("callBig");[code]....

View 2 Replies

ActionScript 3.0 :: How To Chage The Urlrequest Of An Xml

May 4, 2010

i have a menu with 9 buttons, every button take me to one gallery.i already do the gallery, and works fine in a button. but i wanna know if its possible change the urlrequest of the xml for every button.

[Code]...

View 1 Replies







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