> How do I trouble-shoot this? I suggest adding a trace() to see what the requested URL is, and to check that it's well formed. Change this…
> var req:URLRequest = new URLRequest(siteUrl + "store/ > flash_store2.py?id=" + id + "&pkg=" + pkgID); …to this: var url:String = siteUrl + "store/flash_store2.py?id=" + id + "&pkg=" + pkgID; trace(url); var req:URLRequest = new URLRequest(url); For good measure, also trace the url as stored by the URLRequest to ensure it's the same: trace(req.url); > 4) When I test this on my server, calling the page TTW with no > value for "id" and a value for "pkg", e.target.data only serves up > this string "->->" which is incomprehensible to me. What does the URL look like in this case? Is it well formed? And if you simply paste the url into your browser's address bar, does the browser show "->->"? -Gerry _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

