版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、AS3.0編程教學(xué)最全的聲音控制方法網(wǎng)上做flash音樂播放器的人不少,這個(gè)作品主要是對(duì)聲音的外部讀取,然后保存,然后控制播放,暫停,停止等操作,今天這個(gè)作品就是向大家展示這些操作的方法。1. 首先我們新建一個(gè)文件,在舞臺(tái)上擺出下面這些按鈕,我們今天對(duì)這個(gè)聲音文件的操縱就如按鈕所示:動(dòng)手之前我們按下Ctrl+Shift+F12,打開ActionScript設(shè)置,將“自動(dòng)申明舞臺(tái)對(duì)象”打鉤取消,我們將每個(gè)對(duì)象自己用Public聲明,這樣做的好處是開發(fā)時(shí)每個(gè)元件的屬性方便引用和提醒。2. 3我們新建一個(gè)文檔類,首先聲明舞臺(tái)上這些按鈕,并定義聲音變量:testSound,控制變量testChanne
2、l,testTrans,testPosition。public var btnPlay:SimpleButton;public var btnPause:SimpleButton;public var btnStop:SimpleButton;public var btnQuick:SimpleButton;public var btnVocUp:SimpleButton;public var btnVocDown:SimpleButton;public var btnPanUp:SimpleButton;public var btnPanDown:SimpleButton;private v
3、ar testSound:Sound;private var testChannel:SoundChannel;private var testTrans:SoundTransform;private var testPosition:Number=0;3. 4首先用下面代碼將一首叫做“test.mp3"的音樂加載到舞臺(tái)。public function TestSoundMain()testSound = new Sound();testChannel=new SoundChannel();testTrans = new SoundTransform();testSound.load
4、(new URLRequest("test.mp3");testSound.addEventListener(Event.COMPLETE,soundLoadOver);private function soundLoadOver(e:Event):voidtestSound.removeEventListener(Event.COMPLETE, soundLoadOver);soudLoad = true;4. 播放按鈕功能??刂埔魳凡シ诺陌粹o,單擊后音樂開始播放,并記錄音樂的SoundChannel屬性。為了防止連擊,我們定義一個(gè)isSoundPlay布爾變量判斷音樂是
5、否在播放中。/播放按鈕功能private function playBtnEvent():voidbtnPlay.addEventListener(MouseEvent.CLICK, soundPlay);private function soundPlay(e:MouseEvent):voidif (isSoundPlay) return;isSoundPlay = true;testChannel = testSound.play(testPosition);5. 暫停 按鈕功能,該按鈕讓音樂暫停掉,為了能繼續(xù)播放,我們需要記錄下此時(shí)testChannel的位置,然后播放按鈕單擊時(shí)可以繼續(xù)
6、播放/暫停按鈕功能private function pauseBtnEvent():voidbtnPause.addEventListener(MouseEvent.CLICK, soudPause);private function soudPause(e:MouseEvent):voidif (!isSoundPlay) return;isSoundPlay = false;testPosition = testChannel.position;testChannel.stop();6. 停止按鈕功能,單擊后音樂停止播放,記錄位置歸0./停止按鈕功能private function sto
7、pBtnEvent():voidbtnStop.addEventListener(MouseEvent.CLICK, soundStop);private function soundStop(e:MouseEvent):voidisSoundPlay = false;testPosition = 0testChannel.stop();7. 快進(jìn)聲音。單擊該按鈕時(shí),我們讓聲音從當(dāng)前位置向前播放500毫秒,也就是快進(jìn)半秒。/快進(jìn)按鈕功能private function qucikBtnEvent():voidbtnQuick.addEventListener(MouseEvent.CLICK,
8、 soudQuickPlay);private function soudQuickPlay(e:MouseEvent):voidif (!isSoundPlay) return;testPosition = testChannel.position;testChannel.stop();testChannel = testSound.play(testPosition + 500);8. 設(shè)定聲音的音量增加??刂埔袅烤托枰猻oundTransform對(duì)象了,它其實(shí)是testChanel的soundTransform屬性而已,通過它來控制音量。/音量增加private function vol
9、umeUpBtnEvent():voidbtnVocUp.addEventListener(MouseEvent.CLICK, upSoudVoc);private function upSoudVoc(e:MouseEvent):voidif (!isSoundPlay) return;testTrans = testChannel.soundTransform;var addedVoc:Number = testTrans.volume > 1?1:(testTrans.volume +0.05);testTrans.volume = addedVoc;testChannel.sou
10、ndTransform = testTrans;9. 設(shè)定聲音的音量減小。/音量減小private function volumeDownBtnEvent():voidbtnVocDown.addEventListener(MouseEvent.CLICK, downSoundVoc);private function downSoundVoc(e:MouseEvent):voidif (!isSoundPlay) return;testTrans = testChannel.soundTransform;var downVoc:Number = testTrans.volume < 0
11、?0:(testTrans.volume -0.05);testTrans.volume = downVoc;testChannel.soundTransform = testTrans;10. 設(shè)定聲音的平衡度向右,點(diǎn)擊此按鈕聲音的平衡性會(huì)右移,直到變成右聲道。/平衡向右移動(dòng)private function panRightBtnEvent():voidbtnPanUp.addEventListener(MouseEvent.CLICK, upSoundPan);private function upSoundPan(e:MouseEvent):voidif (!isSoundPlay) r
12、eturn;testTrans = testChannel.soundTransform;var addedPan:Number = testTrans.pan > 1?1:(testTrans.pan + 0.05);testTrans.pan = addedPan;testChannel.soundTransform = testTrans;11. 設(shè)定聲音的平衡度向左,點(diǎn)擊此按鈕聲音的平衡性會(huì)左移,直到變成左聲道。/平衡向左移動(dòng)private function panLeftBtnEvent():voidbtnPanDown.addEventListener(MouseEvent.
13、CLICK, downSoundPan);private function downSoundPan(e:MouseEvent):voidif (!isSoundPlay) return;testTrans = testChannel.soundTransform;var downPan:Number = testTrans.pan < 0?0:(testTrans.pan - 0.05);testTrans.pan = downPan;testChannel.soundTransform = testTrans;12. 最后別忘了所有你定義的函數(shù)都要寫到音樂加載完成的那個(gè)函數(shù)里執(zhí)行,或者構(gòu)造函數(shù)也可以。就像下面這樣子:/加載音樂并控制播放private function soundLoadOver(e:Event):voidtestSound.removeEventListener(Event.COMPLETE, soundLoadOver);soudLoad = true;playBtnEvent();pauseBtnEvent();stopBtnEvent();qucikBtnEvent();volumeUpBtnEvent();volumeDownBtnEvent();panRightBtnEvent();panLef
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 沈陽理工大學(xué)《環(huán)境設(shè)計(jì)》2023-2024學(xué)年第一學(xué)期期末試卷
- 全國(guó)統(tǒng)考2024高考?xì)v史一輪復(fù)習(xí)第九單元20世紀(jì)世界經(jīng)濟(jì)體制的創(chuàng)新與世界經(jīng)濟(jì)全球化趨勢(shì)第27講古代中國(guó)的科學(xué)技術(shù)與文學(xué)藝術(shù)課時(shí)作業(yè)含解析新人教版
- 煤礦應(yīng)急應(yīng)急救援
- 2024年合作小車客運(yùn)從業(yè)資格證考試
- 2024年畢節(jié)道路客運(yùn)從業(yè)資格證考試
- 美食廣場(chǎng)租賃管理合同附件
- 2024標(biāo)準(zhǔn)房屋租賃合同書(常用版)
- 2024二手車分期付款合同
- 衛(wèi)生部臨床檢驗(yàn)中心詳解
- 2024建筑工程鋼筋承包合同書格式
- 認(rèn)識(shí)他人課件教學(xué)課件
- 2024年國(guó)家公務(wù)員考試行測(cè)(副省級(jí))真題及答案解析
- 江蘇省南通市2024-2025學(xué)年八年級(jí)上學(xué)期11月期中數(shù)學(xué)試題(無答案)
- 家裝瓷磚鋪貼專項(xiàng)施工協(xié)議范本
- 天津市2024年七年級(jí)上學(xué)期數(shù)學(xué)期中考試試卷【附答案】
- 中國(guó)汽車剎車盤行業(yè)投資分析、市場(chǎng)運(yùn)行態(tài)勢(shì)研究報(bào)告-智研咨詢發(fā)布
- “雙減”政策下作業(yè)設(shè)計(jì)策略4篇
- 普外科重點(diǎn)??圃u(píng)審工作匯報(bào)
- 2024-2025學(xué)年初中音樂九年級(jí)上冊(cè)湘藝版(2024)教學(xué)設(shè)計(jì)合集
- 期中階段測(cè)試卷(試題)2024-2025學(xué)年統(tǒng)編版語文五年級(jí)上冊(cè)
- 2023年中央機(jī)關(guān)遴選筆試真題及解析(B卷)
評(píng)論
0/150
提交評(píng)論