Greetings
I want to get and use in Flash the value of a specific variable that comes
from an ASP page.
I'm using the loadvars.load () object, so far I was able to assign
actionscript variables to each of the variables that come from the ASP. But i'm
not capable of taking those variables and use it outside the code where they
are, can you help me on this?
Here is the code of the loadVars.load () that I'm using
var my_lv:LoadVars = new LoadVars();
my_lv.onLoad = function(success:Boolean) {
if (success) {
trace(this);
for (var prop in this) {
trace(" .key "+prop+" = "+this[prop]);
}
} else {
trace("Error loading/parsing LoadVars.");
}
;my_lv.load("http://localhost/ESTUDO/teste_vervariosdados_apagar.asp");
General ZOD - 28 Mar 2006 16:35 GMT
I'm having the same problem. Have you had any luck?