Hello, I want to exchange values between ASP and Flash. I don't want to send it as a querstring like :
myswf.swf?var1=value.
I don't want my user to see or edit this value.
Thanks
Here's a simple example of sending data.
yes, use the urlvariables class to create an urlvariables instance, assign properties/values to that instance and then assign your urlrequent's variables property to be your populated urlvariables instance. for example:
var urlloader:URLLoader=new URLLoader();
var urlReq:URLRequest=new URLRequest("youraspfile.asp");
var urlVar:URLVariables=new URLVariables();
urlVar.var1=value1;
urlVar.var2=value2;
urlReq.variables=urlVar;
urlloader.load(urlReq);
North America
Europe, Middle East and Africa
Asia Pacific