Welcome! 登入 註冊
專區首頁 專區百科 專區論壇 專區部落格 專區地圖

Advanced

Change History

Message: [語法] flv 格式轉檔軟體與播放影片與法

Changed By: JinJin
Change Date: December 02, 2010 01:49PM

[語法] flv 格式轉檔軟體與播放影片與法

Original Message

作者: JinJin
Date: December 02, 2010 01:48PM

[語法] flv 格式轉檔軟體與播放影片與法
flv轉檔

http://www.atlas-zone.com/software/detail/Extra.FLV.htm


=============================================

stop();

this.btnPause.addEventListener(MouseEvent.CLICK, pauseMov);
function pauseMov(event:MouseEvent):void {
stop();
}

this.btnStop.addEventListener(MouseEvent.CLICK, stopMov);
function stopMov(event:MouseEvent):void {
gotoAndPlay(1);
}

this.btnPlay.addEventListener(MouseEvent.CLICK, playMov);
function playMov(event:MouseEvent):void {
play();
}

this.btnHide.addEventListener(MouseEvent.CLICK, hideMov);
function hideMov(event:MouseEvent):void {
movie.visible=false
}

this.btnShow.addEventListener(MouseEvent.CLICK, ShowMov);
function ShowMov(event:MouseEvent):void {
movie.visible=true
}能