전공/실무

[as2.0&3.0]volume

하루는노력 2012. 12. 6. 20:04
728x90
반응형




function setVolume(){
     import flash.media.Sound;
     import flash.media.SoundChannel;
     import flash.media.SoundTransform;    
    
     var soundFactory:Sound = new MyFavSong();
     var channel:SoundChannel;
    
     channel = soundFactory.play();
     var transform:SoundTransform = channel.soundTransform;
     transform.volume = 0;
     channel.soundTransform = transform;
}
setVolume();

반응형
LIST

'전공 > 실무' 카테고리의 다른 글

[as3.0] Timer  (0) 2012.12.06
[as3.0] 백넥과 팝업  (1) 2012.12.06
[as2.0&3.0]controlBar  (0) 2012.12.06
[as3.0]부모, 자식 객체  (0) 2012.12.06
[as3.0] getChildAt, getChildByName  (0) 2012.12.06