Flash/Flashvars & Dynamic XML
Flash/Flashvars & Dynamic XML
Out of context: Reply #1
- Started
- Last post
- 9 Responses
- ********0
if you're doing a sendAndLoad object pair, then it must be set to POST, then just stick your vars onto it..
k=new LoadVars();
j=new LoadVars();j.onLoad = function(success){
if (success){
//do stuff with your response here...
}}
k.mid = somevalue;
k.cid = somevalue;k.sendAndLoad(xml.asp,j,POST);
so one loadvars object holds your query string parameters, and the other 'catches' the response..
HAS to be POST, though..
Other people will post after me and make it much clearer. And better.