0

メニューで再生されるこのバックグラウンド ミュージックがあります。プレイヤーが「開始」ボタン( )を選択するたびにスムーズにフェードアウトしたいstartBtn。どうやってそれをしますか?これが私のコードです:

import flash.events.Event;
import flash.events.MouseEvent;
import flash.system.fscommand;
import flash.media.Sound;
import flash.media.SoundChannel;
import flash.net.URLRequest;
import flash.events.Event;
import flash.media.SoundTransform;
import flash.events.MouseEvent;

//Declare MUSIC Variables
var musicSelection:Sound;
var musicChannel:SoundChannel;
var musicTrack:String = "music/dearly_beloved.mp3";
var musicVolume:Number=0.2;
/*var isMuted = false;*/

loadMusic();
function loadMusic():void 
{
    //first stop old sound playing
    SoundMixer.stopAll();
    musicSelection = new Sound();
    musicChannel = new SoundChannel();
    //create and load the required soun
    musicSelection.load(new URLRequest(musicTrack));
    //when loaded - play it
    musicSelection.addEventListener(Event.COMPLETE, musicLoaded);
}

function musicLoaded(evt:Event):void
{
    //finished with this listener
    musicSelection.removeEventListener(Event.COMPLETE, musicLoaded);
    //play music
    playMusic();
}

function playMusic():void
{
    //play the random or selected music
    musicChannel = musicSelection.play();
    //setting the volume control property to the music channel
    musicChannel.soundTransform = new SoundTransform(musicVolume, 0);
    //but add this one to make repeats
    musicChannel.addEventListener(Event.SOUND_COMPLETE, playAgain);
}

function playAgain(evt:Event):void
{
    // remove this listener and repeat
    musicChannel.removeEventListener(Event.SOUND_COMPLETE, playAgain);
    playMusic();
}

これは 2 番目のフレームのコードです。

import flash.events.Event;
import flash.media.SoundTransform;

stop();

optionBtn.addEventListener(MouseEvent.CLICK, goToOption)
function goToOption(event:MouseEvent):void
{
    nextFrame();
}

startBtn.addEventListener(MouseEvent.MOUSE_DOWN, stopMusic);
function stopMusic(event:MouseEvent):void
{
    musicChannel.soundTransform = new SoundTransform(musicVolume, 0);
    while (musicVolume > 0)
    {
        musicVolume--;
    }
}

quitBtn.addEventListener(MouseEvent.MOUSE_DOWN, closeGame);
function closeGame(event:MouseEvent):void 
{
    fscommand("quit");
}
4

2 に答える 2

0

TweenMaxを使用して、ボリュームをトゥイーンアウトできます。

http://www.greensock.com

http://forums.greensock.com/topic/4753-volume-fade-outs/page_ hl _volume

于 2012-10-22T18:59:53.983 に答える
0

while... を使用すると、音楽が即座に減少します-1フレームで。あなたがする必要があるのは、ENTER_FRAME イベントを追加することです。その中で、音楽を減らします。このようなもの :

addEventListener(Event.ENTER_FRAME, onLoop);

var _oldTime:Number = 0;
private function onLoop(e:Event):void
{
   var resultTime:Number = getTimer() - oldTime;
   if(resultTime > 200 )
   {
      musicVolume -= 0.1;
      oldTime += resultTime;
      if(musicVolume <= 0) 
      {
        removeEventListener(Event.ENTER_FRAME,onLoop);
      } 
   }
}

必要な速度に応じて、音量を下げるためのさまざまな値、またはいつ下げるかを試してください (結果時間 > 200 -> 200ms)

于 2012-10-22T17:09:23.540 に答える