cleptoman, для передачи параметров урл-у.
Цитата:
The getURL() method also allows you to send variables to a remote server-side script, as seen in the following code:
 Код AS1/AS2:
this.createEmptyMovieClip("loader_mc", this.getNextHighestDepth());
loader_mc.username = "some user input";
loader_mc.password = "random string";
loader_mc.getURL("http://www.flash-mx.com/mm/viewscope.cfm", "_blank", "GET");
|