ActionScript 2.0 :: LoadVars OnLoad Delay In External Class File?
Mar 25, 2012
I'm building an external class file that other developers can use to include a set of functions that essentially read and write data to MySQL via PHP.
The idea is that their AS2 script calls a method in my class which uses LoadVars to verify the data passed to it and write it to a database, and then it returns a value back to the AS.
I'm having a problem where the delay in waiting for OnLoad means that the calling AS function gets an undefined value back. i.e.
var returnValue=myClass.myMethod(params);
This (I assume) is setting returnValue instantly, despite the fact that LoadVars can take a little while to work.
What's the recommended/normal way to deal with this? I don't want to have to bring the OnLoad part of the process back into the developer's script, it would be nice to keep it all in the class. is there a way to make the calling script wait for a response?
View 0 Replies
Similar Posts:
Jul 19, 2006
i have been stuck on this thing for a while now and can't find the solution anywhere on the internet. I'm working on making a class file for the flash foru i just made and am stuck on the logging in part. The cript works and logs in the user, but i want to be able to know when the data has been loaded from php to flash.
[Code]...
View 2 Replies
Jul 6, 2010
I am using the following code to load my flash file, contact a php script and decide what frame to play based on the results. THat is all working fine, the problem is that when the animation starts from Frame 2 - gotoAndPlay(2) - it seems to repeat a few frames over and over until the whole animation is complete.
I have done some reading up and the enterFrame is called many times so I can understand why the problem is there but I don't know how to resolve it. The interesting thing is, when I just use gotoAndPlay(2) in the if loaded section, it all works fine. It's only when it's in the onLoad for the loadVars that causes it to break. Using: Flash CS5 and Actionscript 2.0
[Code]....
View 1 Replies
Sep 12, 2008
The code it concerns is this:
(which I found here on kirupa i belive)
myData = new LoadVars();
myData.onLoad = function() {
[code].....
View 3 Replies
Dec 14, 2005
how to include in a class the implementation of the onLoad function of the XML class. I have something like:
[Code]...
View 2 Replies
Jul 22, 2009
I'm trying to create a new instance of a MovieClip when the original one has been used. Would sound easy enough. Just use: var
instanceName:ClassName = new ClassName();
the class name/mc in the library im trying to duplicate is MCg1 so
var instanceName:MCg1 = new MCg1(); right?
However, the particular object in the library i'm trying to duplicate has a base class that is an external class file (just to control it's drag drop functionality)... i.e baseclass is not set to the standard flash.display.MovieClip, or whatever the case maybe. So i end out with a: TypeError: Error #1009: Cannot access a property or method of a null object reference.
View 6 Replies
Jun 14, 2006
I'm trying to call a function with a onLoad function in a Class
XML_var.onLoad = function(success) {
anotherFunction();
}
View 6 Replies
Jun 28, 2004
have read the brilliant OOP for actionscript 1 tutorial from cover to cover and it has me enormouslyMy problem is with a class i wrote called frameSound which extends the Sound object. Well that was the plan but.. it doesn't seem to react to the onLoad event. Here's the code:
Code:
//custom frameSound class constructor.
frameSound = function(){
[code].....
View 4 Replies
Jun 28, 2004
My problem is with a class i wrote called frameSound which extends the Sound object. Well that was the plan but.. it doesn't seem to react to the onLoad event. Here's the code:
Code:
//custom frameSound class constructor.
frameSound = function(){
frameSound.count++;
[Code].....
View 4 Replies
Feb 18, 2004
How can I use LoadVars inside a class?I mean, if I assign the method name to onLoad of LoadVars, the method will be override, and will not pertence to my class.look this:
[AS]
class myClass{
var lv:LoadVars;[code]...
this at onLoad function points to loadVars not to myClass.the only solution I found to this was to myClass extends LoadVars, but it limit me since AS 2 does not support multiple-Inheritance.I think I will face the same problem with all others components that does not has addEventListener capabilitie.
View 3 Replies
Feb 18, 2004
I mean, if I assign the method name to onLoad of LoadVars, the method will be override, and will not pertinence to my class.
[AS]
class myClass{
var lv:LoadVars;
function myClass(){
lv = new LoadVars();
lv.onLoad = onLoad;
} function onLoad(sucess:Boolean):Void{
trace(this);
} function trigger(){
lv.sendAndLoad("testeURL",lv,"POST");
}}
This at onLoad function points to loadVars not to myClass. The only solution I found to this was to myClass extends LoadVars, but it limit me since AS 2 does not support multiple-Inheritance. I think the same problem with all others components that does not has addEventListener capabilities.
View 3 Replies
Feb 2, 2010
Is there a way to fire up a call to a php on my website everytime the .swf file is loaded?
View 1 Replies
Feb 2, 2010
Is there a way to fire up a call to a php file on my website everytime the .swf file is loaded?
View 1 Replies
Jul 16, 2011
I'm messing around with trying to load variables from a text file and it's just not working as I'd expect. First, my text file is formatted like this
[Code]...
For example, if I do something like create a simple Dynamic Text Box on the same frame as the above code, to show the value from _level0.Test.variable1, it displays "undefined" even though the debugger indicates this variable has the value "value1" as I wish it to. (using "trace(_level0.Test.variable1)" yields no better results)
I have attemped using onLoad and onData alongside the above code, and neither one has made the situation better. I have also attempted trying to reference the variable in a few different ways, and it's just returning the same thing every time. When I was experimenting last night, I managed to get the variables to show up properly on a "trace()" but not when referenced by other things in the flash file. Regrettably, I cannot remember how I did this. Either way it didn't quite work still. Do I need to do something else to be able to reference loaded data in my project, or is there some fundamental mistake I am making? I'm usng Flash CS3 Pro, if that makes any difference. Flash Player is up to date, etc.
View 0 Replies
Mar 4, 2011
I have a php page which outputs the following:
DisplayValue=%3cfont+face%3d%27Arial%27+color%3d%2 7%23FFFFFF%27+size%3d%2730%27%3eGambling+Hotline+1
[code].....
View 1 Replies
Aug 27, 2009
I have Domain1 that is hosting my flash .swf file, and Domain2 that is linking to that .swf file. In the flash file I have a;loadVars.send "POST");command. When the flash file is placed anywhere on a page on Domain1, this works perfectly fine. But when placed on Domain2 (and other domains), this loadVars statement does not work and does not forward to But when I change "_self" to "_blank" - the statement works fine on Domain2.
View 4 Replies
Aug 27, 2009
I have Domain1 that is hosting my flash .swf file, and Domain2 that is linking to that .swf file. In the flash file I have a; loadVars.send("another-[URL]", "_self", "POST"); command. When the flash file is placed anywhere on a page on Domain1, this works perfectly fine. But when placed on Domain2 (and other domains), this loadVars statement does not work and does not forward to another- [URL]. But when I change "_self" to "_blank" - the statement works fine on Domain2. Why doesn't "_self" work on external domains?
View 3 Replies
Apr 26, 2010
I'm working on a flash file that loads of a very very simple php file that returns the current timestamp from php (in a series of vars). I call it by usingwhen I have the script and the swf on the same server, it works fine. when the swf is on a different server and tries to load that file, it does not work.
View 0 Replies
Aug 12, 2010
I have this fully functioning program with me that has a certain line of code that I am having a little difficulty figuring out. Here is how it goes:
Code:
var initVar:LoadVars = new LoadVars( );
I know what the above line does, as in a variable 'initVar' of type LoadVars is being decalred. It's a composite datatype and LoadVars is a class.
However what I don't understand is what comes next:
Code:
gBasicConnect = initVar.basicConnect;
I was expecting basicConnect to be a method of the LoadVars class, unfortunately according to the AS2 API, it's not. Where could basicConnect have come from than? The program was originally written with ActionScript 2.0 in Flash 8.0, I am now looking at it in CS3.
View 3 Replies
Feb 16, 2008
Code:
onLoad=function() {
my_text=new LoadVars()
my_text.load("C:\Documents and Settings\Wrkspace\Desktop\flash_wordlist.txt");
my_wordlist="";
} my_text.onLoad=function(success) {
if(success) {
my_wordlist=(this.var_wordlist).split(" ");
trace(my_wordlist)
}}
The trace doesn't showup at all....by the way, this is in the first frame of the timeline, and i am trying to load a wordlist and then use the words in my program separately. Is it because flash loads the text file slowly? I am using flash 8, AS2.
View 2 Replies
Mar 27, 2010
I'm trying to wrap my head around AS3 and it isn't going well. I'm getting stuck on the most basic of problems it's making me pretty angry. I'm trying to do something as simple as reference the stage and I just can't figure it out; something that usually takes me seconds has eaten up 2 days of my time.
I have a Main.fla that outputs Main.swf; it contains no script, only library assets. I have a document class set up using Main.as, which itself has 1 trace and code to run the Preloader class, which is held in Preloader.as.
[Code]...
View 8 Replies
Dec 11, 2009
My flash application has lots of resources which will change all the time. In order to keep the the user from having to download my main .swf file over and over again, and in order to keep the main file's size low, I would like to put the resources into separate .swf files and load them dynamically from a url using a Loader.
Once downloaded I would like to extract the classes that are in the resource swf and use them in the main swf. Can anyone share some code for doing this? Note that I am not just interested in using a symbol from the resource swf. I would like to use a class, with all of its methods and everything, and my main swf does not contain the class definition. Only the resource swf does.
View 3 Replies
Aug 17, 2011
Is it possible to load an mp3 file and then turn it into a class?[code]...
View 9 Replies
Jan 14, 2009
I have been searching for information regarding the use of loading an external xml file from a variable (string) that contains the location of the item and passes it to the document class.
I receive the following error:
Error: Error #2136: The SWF file file:///C|/Documents%20and%20Settings/xmikxm0/My%20Documents/workingDocuments/freelance/brightStar/webSiteStructure/core.swf contains invalid data. at BuildSiteElements/::frame1()[BuildSiteElements::frame1:2]
FLA code:
ActionScript Code:
/* variables to load XML */
var BuildItems_obj:BuildSiteElements = new BuildSiteElements();
BuildItems_obj.loadSiteXML("templateBuild.xml");
[Code]....
fla is in same folder as class and the fla compiles the swf in another location (outside the folder and pulls xml from the xml folder).
View 3 Replies
Apr 13, 2004
One of the moderators, could you've a look at this tutorial: [URL] it doesn't works with me, maybe because I've 2004 so if you change loadVars() into LoadVars() it should work
View 2 Replies
Jan 19, 2009
I am currently using an external Class file for an instance in my .fla project. It creates an instance of that specific class and has it carry out some functions.I want to access a MovieClip on the stage in the .fla file in the external Class file. How can I do this?For example, the Class file creates an instance of that class, and I want the x and y coordinates of that instance to be equal to that of let's say circle_mc. Now circle_mc is on the stage of the .fla file, and therefore cannot be accessed. How can I get around this?
View 5 Replies
Jan 25, 2010
I have downloaded an AS 3 class file, designed to create an MD5 hash from a string. I have put the class file in my /components directory (with / being the root of my Flex project source).[code]...
View 2 Replies
Dec 20, 2010
I have an Existing FLA file (It is my Project file) and I have downloaded one good example Class file with Fla. But there is no code at all on the stage just it is retrieving instructions from the Class. How can I use this class file in my existing fla file.
View 3 Replies
Nov 10, 2009
I want to do something similar like the example below. How can I make it work?
ActionScript Code:
var tarray = new Array();
myTxt = new LoadVars();
[code].....
View 3 Replies
Apr 17, 2009
Instead of posting my entire files and such, I'll make a brief example of my situation and my desired outcome.My files consist of my document class entitled Engine.as and another class Abilities.as all within the same folder.On my stage I have a MovieClip with the instance name of item1_mc. On its personal timeline I have 2 frames, one entitled "inactive" and the other "active". Here's a sample of very similar code....
Code:
package
{
import flash.display.MovieClip;
[code]....
How do I access item1_mc? In reality I have 6 different clips and I desire to access much more than frame changes...what's the overall best way to be able to interact with an item placed on the stage via an external .as file that is not the document class?
View 11 Replies