ActionScript 3.0 :: Way To Wait For Data To Load?

Jun 4, 2009

In this app/website I'm building, I will be making many requests for data (via an external PHP file that queries a MySQL database). I'd like to build this request mechanism into its own class so I can reuse it.What's the best way to handle this? I'm thinking the following would work, but I'm a bit lost on the last step:1) From the main class, call a method in the query class (with whatever arguments apply, to specify what data I need etc).

2) Set up a listener in the main class and make the program enter a sort of "wait" state (possibly visually, if these requests wind up taking more than a half-second or so)3) From query class (upon receiving the data), dispatch event to let main class know it's received the data.4) Send data to main class. <---- How should this be achieved?For #4, should I create a custom event that dispatches with the data inside the event object for the main class to receive when it's notified? Will this be a problem if I have lots of different types of requests (will I need a new custom event for each type?)? Or is there some other sort of "return" I can/should use (similar to calling a function that returns a value)

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Load The Clip And Wait Until It Is Finished Then Immediately Choose A Frame On Load?

Jan 25, 2010

I'm using loadMovie() to load external swf's and then send the swf to a specific frame, depending on the button that is pressed.

Code:
on(release){
_root.mc_mainloader.loadMovie("Main.swf")
_root.mc_mainloader.gotoAndPlay("fadeup");
}

Unfortunately it ignores the second line, which appears to be because the movie hasn't loaded by time it gets to the next line. As a work-around I made an interval to check for the movieclip width to be more than 0 and then run a function that chooses the desired frame, but this is very unreliable. Is there a simple way to load the clip and wait until it is finished, then immediately choose a frame on load?

View 4 Replies

ActionScript 3.0 :: How To Wait Until Data Is Loaded

May 21, 2009

I have two classes: Level, which dictates a tile-based level, and MapLoader, which loads a text file on my local machine.I am calling a load function through Level asking MapLoader to load, but when I try to parse the data, MapLoader isn't done with the load.I've tried putting the load in a while loop, but it just freezes. Here's the MapLoader and the function in Level.[code]

View 5 Replies

Flash - LoadVars Doesn't Wait Until Data Is Loaded

Jun 8, 2009

variable = 0;
function change() {
variable = 1;
}

[code]....

The problem is that it executes #Second before #First, which means that the object is not fullly loaded but the code continues nonetheless. Is there a way handle this? I have tried using a while loop, but this is ugly and makes flash crash. Is there any decent way to handle this, does it have to do with better code structure/program flow or is there a technical way to make it wait? Also note: This code is executed on the server side, which means there are no frames involved.

UPDATE:When projects get bigger, this gets very ugly, especially when you are retrieving mulitple things from a server, you have to use very deep nesting, you have to keep repeating the same code, example for buying a serial:

a.onload() {
if(moneyAmount > 10){
b.onload(pay) {

[code]....

View 1 Replies

ActionScript 3.0 :: Wait For The Images To Load?

Oct 7, 2010

i believe it is quite simple but i'm not able to do this. situation is something like this:

function name123():void //i m already in a function.
{
....
var a:Loader = new Loader(); //define a loader

[Code]....

i know if i give set width and height in eventComplete function, i could do but the situation is different and i've to set the sizes in name123 function only.

View 8 Replies

ActionScript 2.0 :: Make Flash WAIT Until All The Data Has Been Retrieved From The Database

Apr 20, 2010

I am still working to fix a FIRED developers code he left us with. The code in question goes out and request information from a database, places it into arrays and also checks session. THis is what I think it should be doing. I am getting a bunch of undefined returns ( prints out in the assigned text fields). Is there a way to make Flash WAIT until all the data has been retrieved from the database. This is out first theory.

[Code]...

View 6 Replies

Flex :: Remote Call To Save Data And Wait For Answer

Jul 8, 2009

My Flex application does a remote call to weborb to save some data from Flex. When this data is saved, a service is called on another server. All this time Flex is waiting for an answer. Is it possible to call this service (on the other server) and not wait for an answer. I have tried to call the service asynchronous but all this does is calling the service in a different thread. Flex still has to wait for both threads to be finished... So when the data is saved, flex should get its answer. (while the thread handling the service is still running).

View 2 Replies

ActionScript 3.0 :: Wait To Load Certain Movie Clips Or Frames?

Feb 9, 2010

I have seen flash sites that wait to load different parts of the flash file until you click on a link, thereby starting a loading graphic that then loads the content you're looking for. I can't find any information on how to do this, and I'm guessing I just can't find the right terminology.

View 11 Replies

Flash - How To Wait For External Text File To Load In AS3

May 2, 2009

How do I wait for an external .txt file to load in ActionScript 3? If I use URLLoader, I have no guarantee that the file has loaded, since it dispatches an event when it's complete. I'm calling the loader function from another class, so I can't simply stick the next actions into the event listener.

View 1 Replies

Flash :: Viewstack With Components - Wait Component To Load

Dec 14, 2011

I'm having a viewstack with a few components. Those components have to execute a function with parameters coming from other components. Therefore the other component may not me loaded directly. Is there any way to load a component via AS3 with a function?

View 2 Replies

ActionScript 2.0 :: Load Random Jpg Wait 100 Milliseconds Unload?

Sep 19, 2008

how do I load a random jpg of say 100 jpgs have it appear for a fraction of a second then unload or go invisible?

View 2 Replies

JavaScript :: Windows.Onload Event Not Wait For Flash Object To Load

Jul 11, 2011

I'm embedding a flash object in an html page and calling windows.onload to initialize the Flash movie. The problem is that the windows.onload does not wait for the Flash object to completely load. Is there way to make sure that the Flash object has fully loaded?

Here is the code I'm using:
<head>
<script>
var falshObj = null;
function pageInit() {
thisMovie();
[Code] .....

View 1 Replies

Flex :: Load Spark Image Control And Wait For Complete Loading

Sep 16, 2011

how can I load in flex spark Image control and wait for complete loading? MX:image have method load() and listen COMPLETE event this is not in spark Image...is there only source?? or how can i listen when image is complete loading??

View 1 Replies

ActionScript 3.0 :: Load Files And Wait For Completion With Out Executing Other Lines Of Code?

May 4, 2010

Is there a way to load a file and waiting for the event listener with out continuing executing other code.

I tried using a while loop with a flag that is set by the on Complete in order to exit the wait loop.

This generates a timeout error. private var loaded:Boolean = false;

function SpriteLoader(filepath:String){
trace("Attempting to Load File:" + filepath);
FileLoader = new Loader();
var FileRequest = new URLRequest(filepath);

[Code]...

View 2 Replies

ActionScript 3.0 :: Wait For The Entire Document Class To Load Before A Custom Event Dispatches

Apr 20, 2010

How do i wait for the entire document class to load before a custom event dispatches.....my problem is it dispatches before the class with the listener is envoked by the "main" document class

View 8 Replies

Flex :: Create A "Please Wait" Spinner While Data Is Being Imported?

Nov 19, 2010

I am creating an Flex AIR app which imports data from a zip file into a sqlite db. I need to show a progress bar / "Please Wait" spinner animation so that the user waits till the operation completes.

I have tried to put a pop-up spinner animation but the problem is that the spinner stops spinning as soon as the database import queries start executing.

I need to run both the spinner code and the import code simultaneously rather than sequentially.

View 3 Replies

ActionScript 3.0 :: Wait For Data - Send A 3 Byte Message To The Server (C) And Have The Server Return A Response?

Dec 17, 2010

I made a server connection with AC3 and C, I need the client(AC3) to be able to send a 3 byte message to the server (C) and have the server return a resopnse. So far everything works except for the fact that the feedback isn't fast enough becuase AC3 just tests for data once and moves on instead of waiting like in C. I'm using a binary socket at the moment but I was wondering if there was any way to wait for new data before moving on

View 2 Replies

ActionScript 3.0 :: Preload Project, But Wait For Said Project To Load External Assets?

Jun 15, 2009

I am working on this one project that has a couple of movieclips (already placed on stage) which have a custom class set to export via the Library. Each of those custom classes loads an external SWF using URLRequest().

Is it possible (or, what is the best way) to preload the whole project first, including the external SWFs?

View 7 Replies

Data Integration :: Use Flash To Dynamically Load XML Data Via A FlashVars Call In The HTML?

Jul 18, 2007

Im new to placing external data into Flash. I just got CS3 and Im trying to use Flash to dynamically load XML data via a FlashVars call in the HTML.

The problem is I have followed the very straight forward AS2 Help files for using FlashVars and URL variables.I have placed the code directly from the Help file into the Html between
<noscript> <noscript>and i keep getting undefined.I have tried saving the file as flash 8 and i am publish flash 8.

View 1 Replies

Flash :: Data Integration - Xml.load() Failing - Passing All Of The Data Via A Query String Appended To The Movie's Url

Sep 5, 2006

We have implemented a Flash photo slideshow on our site and it works just fine for most of our users. Whenever the xml.load(success) returns false I have the Flash email me a debug report. For the life of me I can not find a common thread between all of these people having problems with the Flash. I don't think it's a cross-domain issue because it works for most people, and I have the crossdomain.xml files where they should be.

[Code]...

View 1 Replies

Data Integration :: Load Data Into Form - Edit Then Save

Jan 14, 2008

I have an Access Database (doesn't need to be Access, I can phpAdmin or mysql, whatever will work) that has a list of names. I want the user to open a Flash form and have the names load up into seperate input boxes for each name. The user can then change the names, move them, whatever, and then save the record. I want it to just overwrite the record. I donlt want create a new record. I cannot, for the life of me, figure this out. I have tried to find some tutorials but nothing makes sense. Is ASP a good way to go? I have been struggling with this for a week now.

View 3 Replies

Data Integration :: Load/send XML Data Via HTML Form?

Jul 26, 2006

I currently have a Flash app that gets populated by parsing data from an external XML file. However, I need to get the XML data into a (JSP) session and can't neccesarily have an external XML file--any suggestions? Can I put the XML string into a hidden input field in a form on the HTML? Can Flash communicate with that HTML? Or are one of the below methods recommended:

* FlashVars

* Flash Remoting

* Web services

* JavaScript - call JS function

* fscommand

* ExternalInterface

View 1 Replies

ActionScript 3.0 :: Load Data Into Flash And Keeping Their Data Type?

Jun 4, 2009

i load in AS3 data into flash and mantain their data type? Like receiving an array and even with arrays in it and recognizing that is an array instead of a standard string.

And if this is possible is it more reliable then using XML?

View 1 Replies

Flex :: Load Data In Advanced Data Grid On Scroll?

Jan 7, 2010

need to load 10 records from database in advanced data grid. After i scroll the advanced data grid. it has to load 11 to 20 records etc.

View 1 Replies

ActionScript 3.0 :: Clear A XML Object Of Its Data To Allow It To Load New Data From The Same URL?

Sep 21, 2011

is there a way to clear an XML object of its data to allow it to load new data from the same URL?

View 1 Replies

Data Integration :: Load XML Data From Remote Server?

May 8, 2006

I am trying to have a PHP page load some variables into aFlash banner ad that will be running on 8 different websites...I need to have one central location for the PHP page andallow 8 other domains access this data...I am finding that when everything is on one server... noissues... data reads just fine...But when the PHP page is on one server and the SWF file onanother... the data never gets through...I am assuming this is some issue with security within

View 1 Replies

ActionScript 2.0 :: Load XML Data - Pictures Load Into An Empty Mc Called ImageContainer?

May 3, 2008

The function below belongs to an XML based photoGallery.swf... Its menu is automatically populated from the same XML file as well (thumbnail picture, title, description). The pictures load into an empty mc called imageContainer.In another empty mc called textContainer, I would like to load some text.swf from the xml list as well.How would you include that in the code?

Code:
function loadTmbs () {
var tmbs:XML = new XML ();[code]......

View 2 Replies

ActionScript 2.0 :: [Flex] Webservice Vs Load XML - Use The Xml File To Load All The Data At Once?

Mar 2, 2007

I'm currently working on a project that contains a lot of data, about 14.000 records. This means an xml file of about 3mb. Now my question is: Should I use the xml file to load all the data at once, or should I use a webservice, that provides the data when I need it? Keep in mind that I'm new to webservices. And if I'm going to use a webservice: How do I store the data, in a mySQL database?How fast is a webservice?

View 1 Replies

Data Integration :: How To Load External Data

Dec 11, 2006

im trying to read data from a text file here [URL]what i cant figure out is how to call each value to its own dynamic text field.

YYYY MM DD hh mm H0 SwH SwP WWH WWP SwD WWD STEEPNESS AVP MWD
2006 12 10 00 00 0.3 0.3 6.2 0.1 3.2 ESE SE N/A 6.1 110
2006 12 09 23 00 0.3 0.3 9.1 0.1 3.6 SE SE N/A 6.2 134
2006 12 09 22 00 0.3 0.3 9.1 0.1 3.6 SE ESE N/A 6.2 125
2006 12 09 21 00 0.3 0.3 7.1 0.1 3.4 ESE ESE N/A 5.9 119

View 3 Replies

Data Integration :: Unable To Load Data From XML?

Jan 29, 2012

I`m having a trouble loading xml data to the uiloader. Look at my codes:(This is my index class, controller of the data.)
 
public function pylon() {
loadApp();
}

[code]....

View 1 Replies







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