次のコードを機能させようとしています。
var scriptRequest:URLRequest = new URLRequest("http://mywebsite.com/script.php");
var scriptLoader:URLLoader = new URLLoader();
var scriptVars:URLVariables = new URLVariables();
scriptLoader.addEventListener(Event.COMPLETE, handleLoadSuccessful); scriptLoader.addEventListener(IOErrorEvent.IO_ERROR, handleLoadError);
function write(write_to_file) {
scriptVars.req = "testing testing testing";
scriptRequest.method = URLRequestMethod.POST;
scriptRequest.data = scriptVars;
scriptLoader.load(scriptRequest); }
function handleLoadSuccessful($evt:Event):void
{
trace("メッセージが送信されました。");
}
function handleLoadError($evt:IOErrorEvent):void { trace("メッセージが失敗しました。"); }
奇妙なことに、それは Flash から正しく POST します..しかし、Web サーバーにアップロードすると、うまくいきません.何かアイデアはありますか?
ありがとうアレックス