Flash と PHP 間のデータ転送の進行状況を表示するには? 以下は、PHP を介して base64 でエンコードされた画像をアップロードするために使用している AS3 コードです。
var scriptLoader:URLLoader = new URLLoader();
var scriptVars:URLVariables = new URLVariables();
var scriptRequest:URLRequest = new URLRequest("https://www.example.com/sendit.php");
var imagedata = Base64.encode(mybitmap);
scriptVars.theimage = imagedata
scriptRequest.method = URLRequestMethod.POST;
scriptRequest.data = scriptVars;
scriptLoader.load(scriptRequest);
(サーバーは PHP バージョン 5.3.10 を実行しています)