ActionScript 3 服务器的基本帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 服务器的基本帖子相关的知识,希望对你有一定的参考价值。

import flash.net.*

send();

function send():void{
	var variables:URLVariables = new URLVariables();
	variables.yourName = "Joe";
	variables.yourAge = "44";
	
	var request:URLRequest = new URLRequest("http://www.messyou.se/flashGet.asp"); //Insert your own URL here.
	request.method = URLRequestMethod.POST;
	request.data = variables;
	var loader:URLLoader = new URLLoader();
	loader.dataFormat = URLLoaderDataFormat.VARIABLES;
	loader.addEventListener(Event.COMPLETE, completeHandler);
	try{
		loader.load(request);
	}
	catch (error:Error) {
		trace("Unable to load URL");
	}
}

function completeHandler(event:Event):void{
	var variables:URLVariables = new URLVariables(event.target.data);
	var msg = variables.msg;
	if(msg=="true"){
		trace("Done!");
	} else{
		trace("Error: "+msg);
	}
}

//Server side file in Classic ASP
/*
<%
if true then
	response.write("msg=" & Server.UrlEncode("true"))
else
	response.write("msg=" & Server.UrlEncode("Sorry didn't work"))
end if
%>
*/

以上是关于ActionScript 3 服务器的基本帖子的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 XMLSocket 的策略文件问题

ActionScript 3 基本的空文档类

ActionScript 3 基本的外部XML加载器

ActionScript 3 偶尔连接的基本结构

ActionScript 3 基本的TweenLite导入和设置

ActionScript 3 基本的JSFL片段