我正在将我的脚趾浸入Flash开发中,并想知道如何将一些变量发布到URL。 假设用户已经玩过Flash游戏,打包为嵌入在用户计算机上的HTML中的EXE或SWF,而不是来自某个网页,并希望通过填写一个只有电子邮件地址的简单表单来注册乐谱。按下按钮。
即使Flash应用程序不在活动网页上,它是否可以实现?
答案 0 :(得分:3)
如果在网页或本地计算机上,则方法相同。你可以这样做:
(未经测试的代码)
var request:URLRequest = new URLRequest("http://yoursite.com/yourpage.php");
request.method = URLRequestMethod.POST;
request.data = "emal=someemail@email.com&score=79597";
var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
loader.addEventListener(Event.COMPLETE, callWasMade);
loader.addEventListener(IOErrorEvent.IO_ERROR, callFailedIOError);
loader.load(request);
function callWasMade(evt:Event):void{
//Optionally check server response
}
function callFailedIOError(evt:IOErrorEvent):void {
//Holy crap I can't reach my server!
}
答案 1 :(得分:2)
这是可能的,但您需要一些服务器端脚本以及PHP。查看http://www.gotoandlearn.com以获取一些非常棒的教程。
基本上,您为服务器端脚本创建URLRequest并使用它发送一些数据。您可以使用URLVariables将数据传递给脚本。然后,该脚本可以接收数据并将其保存在数据库中或发送邮件。
这是来自Adobe文档: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/URLVariables.html
public function URLVariablesExample() {
var url:String = "http://www.example.com/script.php";
var request:URLRequest = new URLRequest(url);
var variables:URLVariables = new URLVariables();
variables.exampleSessionId = new Date().getTime();
variables.exampleUserLabel = "guest";
request.data = variables;
navigateToURL(request);
}
在PHP方面你可以这样做:
$exampleSessionId = $_REQUEST['exampleSessionId'];
$exampleUserLabel = $_REQUEST['exampleUserLabel'];
$message = "Id: " . $exampleSessionId . ", Label: " . $exampleUserLabel;
mail('toaddress@example.com', 'My Subject', $message);