Flash/XML/Querystring
Flash/XML/Querystring
Out of context: Reply #2
- Started
- Last post
- 3 Responses
- daveFelton0
yes, use cdata, or store those values, "cid", "pid" etc, as attributes on the xml node, and then use flash to construct a string for the url
var url:String = "news.asp?cid=" + myCid + "&pid=" + myPid;
where "myCid" and "myPid" are flash variables set when your xml is parsed.