【发布时间】:2014-01-15 16:07:48
【问题描述】:
我正在尝试上传文件。使用
flash.filesystem.File
但应用程序不断崩溃
private function uploadFile(f:File):void
{
f.addEventListener(ProgressEvent.PROGRESS, uploadProgress);
f.addEventListener(Event.COMPLETE, callBackFunc);
f.addEventListener(DataEvent.UPLOAD_COMPLETE_DATA , callBackFunc);
f.addEventListener(SecurityErrorEvent.SECURITY_ERROR, uploadError);
f.addEventListener(HTTPStatusEvent.HTTP_STATUS, uploadError);
f.addEventListener(IOErrorEvent.IO_ERROR, uploadError);
f.upload(urlRequest,"Filedata",false);
}
【问题讨论】:
标签: actionscript-3 air adobe