No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Hi everyone, I am trying to make a toggling on/off button for a looping sound using AS3. Currently it starts with the on icon showing but when pressed shows the off icon but it must be pressed again to stop the music but then shows the on icon while the …
[QUOTE=rajarajan07;1101129]Just check with the code [CODE]var music:Sound = new Sound(new URLRequest("music.mp3")); var trans:SoundTransform = new SoundTransform(1, -1); var channel:SoundChannel = music.play(0, 1, trans); var musicOn:Boolean = true onBtn.addEventListener(MouseEvent.CLICK, onSound); offBtn.addEventListener(MouseEvent.CLICK, offSound); function offSound(e:Event) { musicOn = false; trans.volume=0; SoundMixer.soundTransform = trans; } function onSound(e:Event) { musicOn = true; trans.volume=1; SoundMixer.soundTransform …
Hi DaniWeb! I was looking for a solution to a similar problem and see that I have found much more! What an incredible community! Sorry to ressurect and old post but I wasn't sure where to post and this was the closest thread I could see to my problem. I …
Sorry for duplicate post. I was lost in mac land thread. I just bought a sony vaio (windows xp) and hooked up my Logitech Quickcam Fusion web cam. When the cam is plugged in there is no sound on my laptop at all. I-tunes won't play and I can't hear …
The End.
BlueCarNumber9