使用post方法as2将数据从flash发送到php

时间:2012-07-16 11:31:25

标签: actionscript-3 actionscript-2

我在as3中使用以下代码:

var Request:URLRequest = new URLRequest();
var xmlMain:XML=new XML();
var urlXmlLoader:Loader = new Loader();
var myVars:URLVariables = new URLVariables();

myVars.RequestXml = xmlMain;
Request.url = "http://www.xyz.php"; //some php url

Request.method = URLRequestMethod.POST;
Request.data = myVars;
urlXmlLoader.dataFormat = URLLoaderDataFormat.TEXT;
urlXmlLoader.addEventListener(Event.COMPLETE, getData);
urlXmlLoader.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
urlXmlLoader.load(Request);

现在我有一个as2项目,我需要做同样的事情。如何在as2 ??

中完成

1 个答案:

答案 0 :(得分:0)

这可能是AS2中HTTP请求的最佳教程:http://www.sephiroth.it/tutorials/flashPHP/loadVars/