我使用Adobe Flash Professional CS6 + as3,並且我有一個按鈕可以下載或保存爲桌面視頻,但不會執行它?爲什麼?錯誤在哪裏?按鈕將視頻保存爲桌面
import fl.video.FLVPlayback;
import flash.display.StageAlign;
import flash.events.Event;
import flash.display.MovieClip;
import flash.display.StageScaleMode;
import flash.media.SoundMixer;
myVideoPlayer.source = "";
addChild (myVideoPlayer);
function loadMyVideo (url:String):void
{
myVideoPlayer.source = url;
myVideoPlayer.visible = true;
}
videosaveas.addEventListener (MouseEvent.CLICK, videosaveas2);
function videosaveas2 (e:Event):void
{
file = new FileReference();
var fileReference:FileReference=new FileReference();
file.save (ByteData, "video.mp4");
}
有很多例子只是使用你最喜歡的SE進行一些研究; [1](http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7cf8.html#WSD7D78288-ADD8-422d-AF79-AE803643F71F),[2](http://stackoverflow.com/a/2974055/2256820),[3](http://code.tutsplus.com/tutorials/quick-tip-download-files-via-swfs-using-filereference-active-9068),... – akmozo
這是AIR應用程序還是Flash Player?你覺得你會怎麼發佈它? – akmozo
@akmozo我想要兩個人在一起..非常緊急。 「 AIR和AS3 凡爲什麼不執行它的 非常感謝您 – FlashGirl