我如何使用Flash cs6下载文件

时间:2014-08-09 13:34:22

标签: actionscript-3 flash action actionscript-2 flash-cs6

我有一个项目,在flash中有四个不同的按钮,可以在本地下载doc文件。由于我是flash脚本的新手,我不知道如何开始。任何人都可以帮助开始。提前谢谢。

1 个答案:

答案 0 :(得分:1)

你走了:

private var request:URLRequest;  
private var localRef:FileReference;  

protected function buttonClick():void  
{  
  request = new URLRequest("http://www.yourdomain.com/soundbyte.mp3");  
  localRef = new FileReference();    

  try  
  {  
     // Prompt and downlod file  
     localRef.download( request );  
  }  
  catch (error:Error)  
  {  
     trace("Unable to download file.");  
  }  
}

你应该给FileReference Class读一遍(如果你使用AIR我建议你改用File Class)。