10-29-05 01:45 AM
Don't have the docs handy, but your example looks like a good start.
If you can't get that working, you could always set a flag along with
the state of the audio at the same time and then check that. Something
like:
//mute the audio and set the flag
_root["profilvideo"].ns.receiveAudio(false);
audioMuted = true;
//and later, check it...
if (audioMuted) {
//do whatever
}
HTH,
Jim
On Oct 28, 2005, at 3:55 PM, Lars Nymand wrote:
> Cool there it was...
>
> How do i check if its running or not?
>
> Ex:
> If (_root["profilvideo"].ns.receiveAudio() == false) {
>
> }
>
> -----Original Message-----
> From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
> [mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gman
e.org] On Behalf Of Jim Duber
> Sent: 29. oktober 2005 00:32
> To: FlashComm Mailing List
> Subject: Re: [FlashComm] Mute audio?
>
> Looks like a typo. Try:
>
> _root["profilvideo"].ns.receiveAudio(false);
>
> As in " I before E except after C". ;^)
>
> Best,
>
> Jim
>
> On Oct 28, 2005, at 3:20 PM, Lars Nymand wrote:
>
>
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
[ Post a follow-up to this message ]
|