View Full Version : Flash POST
TRPlace
12-03-2004, 04:21 PM
I have a bunch of variables in my flash project, but I only want certain ones to be POSTED to my script, how can I make it so only the ones I want get POSTED and the others get ignored?
Thanks so much
-TJ
TRPlace
12-03-2004, 04:26 PM
I have variables in my flash movie, then I
loadVariables(var2.returnVal,1);
when I post to my script it sends all the variables, and even the loadvars information (var2 is a loadvars variable) - I have textboxes in the movie and I just want those values to be POSTed to my script.....
redruby
12-03-2004, 04:52 PM
Use the LoadVars Class:
myLV = new LoadVars();
myLV.var1 = value1;
myLV.var2 = value2;
myLV.var3 = value3;
// ...
myLV.send("myURL", "_blank", "POST");
|
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.