我有控制背景音樂的音量滑塊。閃光AS3保存滑塊值
在滑塊元件參數值:我將其設置爲5。
當我滑塊滑動至2和導航到其他影片剪輯。然後返回到滑塊值爲5.我如何存儲2的值而不是顯示5?
import fl.events.SliderEvent;
import flash.media.SoundTransform;
var myTransform = new SoundTransform();
scMC.addEventListener(SliderEvent.THUMB_DRAG, changeVolume);
function changeVolume(event:SliderEvent):void{
MovieClip(this.root).myChannel.soundTransform = myTransform;
myTransform.volume = scMC.value;
volumeText.text = "Volume is " + scMC.value;
}
這是actionscript 2還是actionscript 3 – BadFeelingAboutThis
actionscript 3. – DANLEE