RE: [Flashcoders] FLVplackback problem

2010-03-11 Thread David Hunter

glad i could help. think i got it off some obscure japanese blog when i ran 
into a problem on my first site transitioning from AS2 to AS3. there might be a 
more efficient way of writing/targeting what you need, but i've just stuck with 
that. at least it works!
best

> From: c...@chello.nl
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> Date: Thu, 11 Mar 2010 14:35:36 +0100
> 
> D A V I D 
> 
> You saved me !!
> This did the trick:
> myFLV.getVideoPlayer(myFLV.activeVideoPlayerIndex).close();
> 
> 
> Man, I can't thank you enough
> 
> I have to buy you a beer... or a few at least.
> 
> 
> Regards
> Cor
> 
> 
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com
> [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter
> Sent: donderdag 11 maart 2010 13:47
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> 
> 
> Can you not just have one flvplayback and then switch it visible=false when
> it isn't needed and then make it visible=true and alter all its
> settings(x,y,size etc if you need to change these) when it is required?
> Do you need to have two videos playing at once?
> I have used this bit of code to close flvplayback in sites that load
> multiple swfs with an flvplayback instance in them:
> myFLV.getVideoPlayer(myFLV.activeVideoPlayerIndex).close();
> Otherwise the video audio persists playing though the video can't be seen
> and I have removed it from the display list. Not sure if its best practice
> but it has solved a problem before! Who knows it might free your audio
> channels if they are being occupied by FLVs.
> Best
> 
> > From: c...@chello.nl
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: RE: [Flashcoders] FLVplackback problem
> > Date: Thu, 11 Mar 2010 13:22:11 +0100
> > 
> > David, 
> > Thanks for reacting.
> > 
> > Unfortuneatly this is not an option, because my app has an undefined
> amount
> > of levels/menus/pages where videos are to be shown.
> > And because it is all dynamic, I need te create instances on the fly.
> > And after that I clean them up, but in some way the SoundChannels are not
> > cleared?
> > 
> > Regards
> > Cor
> > 
> > -Original Message-
> > From: flashcoders-boun...@chattyfig.figleaf.com
> > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David
> Hunter
> > Sent: donderdag 11 maart 2010 13:16
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: RE: [Flashcoders] FLVplackback problem
> > 
> > 
> > you only have one instance of FLVPlayback and play all the videos through
> > that?
> > 
> > > From: c...@chello.nl
> > > To: flashcoders@chattyfig.figleaf.com
> > > Subject: RE: [Flashcoders] FLVplackback problem
> > > Date: Thu, 11 Mar 2010 12:54:37 +0100
> > > 
> > > Anyone??
> > > ----
> > > 
> > > Yes, I know.
> > > But how do I free them??
> > > 
> > > -Original Message-
> > > From: flashcoders-boun...@chattyfig.figleaf.com
> > > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik
> > > Andersson
> > > Sent: woensdag 10 maart 2010 12:49
> > > To: Flash Coders List
> > > Subject: Re: [Flashcoders] FLVplackback problem
> > > 
> > > Cor wrote:
> > > > It seems that after instanciating 32 FLVPlayback my SoundFacade
> crashes.
> > > 
> > > What a coincidence, the Flash sound mixer only supports 32 sound 
> > > channels at once.
> > > 
> > > ___
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > > No virus found in this incoming message.
> > > Checked by AVG - www.avg.com 
> > > Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
> > > 08:33:00
> > > 
> > > ___
> > > Flashcoders mailing list
> > > Flashcoders@chattyfig.figleaf.com
> > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > > No virus found in this incoming message.
> > > Checked by AVG - www.avg.com 
> > > Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
> > > 20:33:00
> > > 
> > > ___

RE: [Flashcoders] FLVplackback problem

2010-03-11 Thread Cor
D A V I D 

You saved me !!
This did the trick:
myFLV.getVideoPlayer(myFLV.activeVideoPlayerIndex).close();


Man, I can't thank you enough

I have to buy you a beer... or a few at least.


Regards
Cor


-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter
Sent: donderdag 11 maart 2010 13:47
To: flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] FLVplackback problem


Can you not just have one flvplayback and then switch it visible=false when
it isn't needed and then make it visible=true and alter all its
settings(x,y,size etc if you need to change these) when it is required?
Do you need to have two videos playing at once?
I have used this bit of code to close flvplayback in sites that load
multiple swfs with an flvplayback instance in them:
myFLV.getVideoPlayer(myFLV.activeVideoPlayerIndex).close();
Otherwise the video audio persists playing though the video can't be seen
and I have removed it from the display list. Not sure if its best practice
but it has solved a problem before! Who knows it might free your audio
channels if they are being occupied by FLVs.
Best

> From: c...@chello.nl
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> Date: Thu, 11 Mar 2010 13:22:11 +0100
> 
> David, 
> Thanks for reacting.
> 
> Unfortuneatly this is not an option, because my app has an undefined
amount
> of levels/menus/pages where videos are to be shown.
> And because it is all dynamic, I need te create instances on the fly.
> And after that I clean them up, but in some way the SoundChannels are not
> cleared?
> 
> Regards
> Cor
> 
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com
> [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David
Hunter
> Sent: donderdag 11 maart 2010 13:16
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> 
> 
> you only have one instance of FLVPlayback and play all the videos through
> that?
> 
> > From: c...@chello.nl
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: RE: [Flashcoders] FLVplackback problem
> > Date: Thu, 11 Mar 2010 12:54:37 +0100
> > 
> > Anyone??
> > 
> > 
> > Yes, I know.
> > But how do I free them??
> > 
> > -Original Message-
> > From: flashcoders-boun...@chattyfig.figleaf.com
> > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik
> > Andersson
> > Sent: woensdag 10 maart 2010 12:49
> > To: Flash Coders List
> > Subject: Re: [Flashcoders] FLVplackback problem
> > 
> > Cor wrote:
> > > It seems that after instanciating 32 FLVPlayback my SoundFacade
crashes.
> > 
> > What a coincidence, the Flash sound mixer only supports 32 sound 
> > channels at once.
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > No virus found in this incoming message.
> > Checked by AVG - www.avg.com 
> > Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
> > 08:33:00
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > No virus found in this incoming message.
> > Checked by AVG - www.avg.com 
> > Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
> > 20:33:00
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> _
> Send us your Hotmail stories and be featured in our newsletter
>
http://clk.atdmt.com/UKM/go/195013117/direct/01/
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
> 20:33:00
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  

RE: [Flashcoders] FLVplackback problem

2010-03-11 Thread Cor
To use only 1 flvplayback is really a lot of work rebuilding my
classes/logic!!
So, if nothing else comes up, I will be forced to do so.
But any other solution is better for me in this case.

Thank you very much for your suggestions!!

Regards
Cor

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter
Sent: donderdag 11 maart 2010 13:47
To: flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] FLVplackback problem


Can you not just have one flvplayback and then switch it visible=false when
it isn't needed and then make it visible=true and alter all its
settings(x,y,size etc if you need to change these) when it is required?
Do you need to have two videos playing at once?
I have used this bit of code to close flvplayback in sites that load
multiple swfs with an flvplayback instance in them:
myFLV.getVideoPlayer(myFLV.activeVideoPlayerIndex).close();
Otherwise the video audio persists playing though the video can't be seen
and I have removed it from the display list. Not sure if its best practice
but it has solved a problem before! Who knows it might free your audio
channels if they are being occupied by FLVs.
Best

> From: c...@chello.nl
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> Date: Thu, 11 Mar 2010 13:22:11 +0100
> 
> David, 
> Thanks for reacting.
> 
> Unfortuneatly this is not an option, because my app has an undefined
amount
> of levels/menus/pages where videos are to be shown.
> And because it is all dynamic, I need te create instances on the fly.
> And after that I clean them up, but in some way the SoundChannels are not
> cleared?
> 
> Regards
> Cor
> 
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com
> [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David
Hunter
> Sent: donderdag 11 maart 2010 13:16
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> 
> 
> you only have one instance of FLVPlayback and play all the videos through
> that?
> 
> > From: c...@chello.nl
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: RE: [Flashcoders] FLVplackback problem
> > Date: Thu, 11 Mar 2010 12:54:37 +0100
> > 
> > Anyone??
> > 
> > 
> > Yes, I know.
> > But how do I free them??
> > 
> > -Original Message-
> > From: flashcoders-boun...@chattyfig.figleaf.com
> > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik
> > Andersson
> > Sent: woensdag 10 maart 2010 12:49
> > To: Flash Coders List
> > Subject: Re: [Flashcoders] FLVplackback problem
> > 
> > Cor wrote:
> > > It seems that after instanciating 32 FLVPlayback my SoundFacade
crashes.
> > 
> > What a coincidence, the Flash sound mixer only supports 32 sound 
> > channels at once.
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > No virus found in this incoming message.
> > Checked by AVG - www.avg.com 
> > Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
> > 08:33:00
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > No virus found in this incoming message.
> > Checked by AVG - www.avg.com 
> > Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
> > 20:33:00
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> _
> Send us your Hotmail stories and be featured in our newsletter
>
http://clk.atdmt.com/UKM/go/195013117/direct/01/
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
> 20:33:00
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
__

RE: [Flashcoders] FLVplackback problem

2010-03-11 Thread David Hunter

Can you not just have one flvplayback and then switch it visible=false when it 
isn't needed and then make it visible=true and alter all its settings(x,y,size 
etc if you need to change these) when it is required?
Do you need to have two videos playing at once?
I have used this bit of code to close flvplayback in sites that load multiple 
swfs with an flvplayback instance in them:
myFLV.getVideoPlayer(myFLV.activeVideoPlayerIndex).close();
Otherwise the video audio persists playing though the video can't be seen and I 
have removed it from the display list. Not sure if its best practice but it has 
solved a problem before! Who knows it might free your audio channels if they 
are being occupied by FLVs.
Best

> From: c...@chello.nl
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> Date: Thu, 11 Mar 2010 13:22:11 +0100
> 
> David, 
> Thanks for reacting.
> 
> Unfortuneatly this is not an option, because my app has an undefined amount
> of levels/menus/pages where videos are to be shown.
> And because it is all dynamic, I need te create instances on the fly.
> And after that I clean them up, but in some way the SoundChannels are not
> cleared?
> 
> Regards
> Cor
> 
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com
> [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter
> Sent: donderdag 11 maart 2010 13:16
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> 
> 
> you only have one instance of FLVPlayback and play all the videos through
> that?
> 
> > From: c...@chello.nl
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: RE: [Flashcoders] FLVplackback problem
> > Date: Thu, 11 Mar 2010 12:54:37 +0100
> > 
> > Anyone??
> > 
> > 
> > Yes, I know.
> > But how do I free them??
> > 
> > -Original Message-
> > From: flashcoders-boun...@chattyfig.figleaf.com
> > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik
> > Andersson
> > Sent: woensdag 10 maart 2010 12:49
> > To: Flash Coders List
> > Subject: Re: [Flashcoders] FLVplackback problem
> > 
> > Cor wrote:
> > > It seems that after instanciating 32 FLVPlayback my SoundFacade crashes.
> > 
> > What a coincidence, the Flash sound mixer only supports 32 sound 
> > channels at once.
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > No virus found in this incoming message.
> > Checked by AVG - www.avg.com 
> > Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
> > 08:33:00
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> > No virus found in this incoming message.
> > Checked by AVG - www.avg.com 
> > Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
> > 20:33:00
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> _
> Send us your Hotmail stories and be featured in our newsletter
> http://clk.atdmt.com/UKM/go/195013117/direct/01/
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
> 20:33:00
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
_
Got a cool Hotmail story? Tell us now
http://clk.atdmt.com/UKM/go/195013117/direct/01/___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] FLVplackback problem

2010-03-11 Thread Cor
David, 
Thanks for reacting.

Unfortuneatly this is not an option, because my app has an undefined amount
of levels/menus/pages where videos are to be shown.
And because it is all dynamic, I need te create instances on the fly.
And after that I clean them up, but in some way the SoundChannels are not
cleared?

Regards
Cor

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter
Sent: donderdag 11 maart 2010 13:16
To: flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] FLVplackback problem


you only have one instance of FLVPlayback and play all the videos through
that?

> From: c...@chello.nl
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> Date: Thu, 11 Mar 2010 12:54:37 +0100
> 
> Anyone??
> 
> 
> Yes, I know.
> But how do I free them??
> 
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com
> [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik
> Andersson
> Sent: woensdag 10 maart 2010 12:49
> To: Flash Coders List
> Subject: Re: [Flashcoders] FLVplackback problem
> 
> Cor wrote:
> > It seems that after instanciating 32 FLVPlayback my SoundFacade crashes.
> 
> What a coincidence, the Flash sound mixer only supports 32 sound 
> channels at once.
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
> 08:33:00
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
> 20:33:00
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
_
Send us your Hotmail stories and be featured in our newsletter
http://clk.atdmt.com/UKM/go/195013117/direct/01/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
No virus found in this incoming message.
Checked by AVG - www.avg.com 
Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
20:33:00

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] FLVplackback problem

2010-03-11 Thread David Hunter

you only have one instance of FLVPlayback and play all the videos through that?

> From: c...@chello.nl
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> Date: Thu, 11 Mar 2010 12:54:37 +0100
> 
> Anyone??
> 
> 
> Yes, I know.
> But how do I free them??
> 
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com
> [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik
> Andersson
> Sent: woensdag 10 maart 2010 12:49
> To: Flash Coders List
> Subject: Re: [Flashcoders] FLVplackback problem
> 
> Cor wrote:
> > It seems that after instanciating 32 FLVPlayback my SoundFacade crashes.
> 
> What a coincidence, the Flash sound mixer only supports 32 sound 
> channels at once.
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
> 08:33:00
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
> 20:33:00
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
_
Send us your Hotmail stories and be featured in our newsletter
http://clk.atdmt.com/UKM/go/195013117/direct/01/___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] FLVplackback problem

2010-03-11 Thread Cor
Anyone??


Yes, I know.
But how do I free them??

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik
Andersson
Sent: woensdag 10 maart 2010 12:49
To: Flash Coders List
Subject: Re: [Flashcoders] FLVplackback problem

Cor wrote:
> It seems that after instanciating 32 FLVPlayback my SoundFacade crashes.

What a coincidence, the Flash sound mixer only supports 32 sound 
channels at once.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
No virus found in this incoming message.
Checked by AVG - www.avg.com 
Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
08:33:00

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
No virus found in this incoming message.
Checked by AVG - www.avg.com 
Version: 9.0.733 / Virus Database: 271.1.1/2735 - Release Date: 03/10/10
20:33:00

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] FLVplackback problem

2010-03-10 Thread Cor
Yes, I know.
But how do I free them??

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Henrik
Andersson
Sent: woensdag 10 maart 2010 12:49
To: Flash Coders List
Subject: Re: [Flashcoders] FLVplackback problem

Cor wrote:
> It seems that after instanciating 32 FLVPlayback my SoundFacade crashes.

What a coincidence, the Flash sound mixer only supports 32 sound 
channels at once.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
No virus found in this incoming message.
Checked by AVG - www.avg.com 
Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
08:33:00

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] FLVplackback problem

2010-03-10 Thread Henrik Andersson

Cor wrote:

It seems that after instanciating 32 FLVPlayback my SoundFacade crashes.


What a coincidence, the Flash sound mixer only supports 32 sound 
channels at once.


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] FLVplackback problem

2010-03-10 Thread Cor
It seems that after instanciating 32 FLVPlayback my SoundFacade crashes.



-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter
Sent: woensdag 10 maart 2010 12:18
To: flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] FLVplackback problem


sorry. misunderstood your first message and thought you were playing back
mp3s through an FLVPlayback. good luck.

> From: c...@chello.nl
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> Date: Wed, 10 Mar 2010 11:22:55 +0100
> 
> I do use a separate class for the sounds:
>
http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf
> 351e63e3d118a9b90204-7d09.html
> 
> 
> 
> 
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com
> [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David
Hunter
> Sent: woensdag 10 maart 2010 11:19
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> 
> 
> I haven't run into your problem yet but I just finished a website which
> played video and mp3 and played the video through FLVPlayback and built a
> separate player for the sounds using Sound and SoundChannel classes. Maybe
> that might help.
> 
> > From: c...@chello.nl
> > To: flashcoders@chattyfig.figleaf.com
> > Date: Wed, 10 Mar 2010 10:55:23 +0100
> > Subject: [Flashcoders] FLVplackback problem
> > 
> > Hi list,
> > 
> > I have this application which plays MP3 sounds and play FLVs with use of
> the
> > FLVPlayback component.
> > For every sound and every flv I create a new instance of the according
> > class.
> > I can start as much MP3 as a like without any problem.
> > But when I start the 32th video, it crashes and error on my FoundFacade
> > class:
> > 
> > TypeError: Error #1009: Cannot access a property or method of a null
> object
> > reference.
> > at SoundFacade/play()
> > at SoundFacade/onLoadOpen()
> > TypeError: Error #1009: Cannot access a property or method of a null
> object
> > reference.
> > at SoundFacade/play()
> > at SoundFacade/onLoadComplete()
> > 
> > So I think this has to do with the FLVPlayback instances using up all
the
> > possible soundchannels without releasing them
> > 
> > Any help is appreciated!
> > 
> > TIA
> > 
> > Cor
> > 
> > 
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> _
> Do you have a story that started on Hotmail? Tell us now
>
http://clk.atdmt.com/UKM/go/195013117/direct/01/
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
> 08:33:00
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
_
Send us your Hotmail stories and be featured in our newsletter
http://clk.atdmt.com/UKM/go/195013117/direct/01/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
No virus found in this incoming message.
Checked by AVG - www.avg.com 
Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
08:33:00

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] FLVplackback problem

2010-03-10 Thread David Hunter

sorry. misunderstood your first message and thought you were playing back mp3s 
through an FLVPlayback. good luck.

> From: c...@chello.nl
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> Date: Wed, 10 Mar 2010 11:22:55 +0100
> 
> I do use a separate class for the sounds:
> http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf
> 351e63e3d118a9b90204-7d09.html
> 
> 
> 
> 
> -Original Message-
> From: flashcoders-boun...@chattyfig.figleaf.com
> [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter
> Sent: woensdag 10 maart 2010 11:19
> To: flashcoders@chattyfig.figleaf.com
> Subject: RE: [Flashcoders] FLVplackback problem
> 
> 
> I haven't run into your problem yet but I just finished a website which
> played video and mp3 and played the video through FLVPlayback and built a
> separate player for the sounds using Sound and SoundChannel classes. Maybe
> that might help.
> 
> > From: c...@chello.nl
> > To: flashcoders@chattyfig.figleaf.com
> > Date: Wed, 10 Mar 2010 10:55:23 +0100
> > Subject: [Flashcoders] FLVplackback problem
> > 
> > Hi list,
> > 
> > I have this application which plays MP3 sounds and play FLVs with use of
> the
> > FLVPlayback component.
> > For every sound and every flv I create a new instance of the according
> > class.
> > I can start as much MP3 as a like without any problem.
> > But when I start the 32th video, it crashes and error on my FoundFacade
> > class:
> > 
> > TypeError: Error #1009: Cannot access a property or method of a null
> object
> > reference.
> > at SoundFacade/play()
> > at SoundFacade/onLoadOpen()
> > TypeError: Error #1009: Cannot access a property or method of a null
> object
> > reference.
> > at SoundFacade/play()
> > at SoundFacade/onLoadComplete()
> > 
> > So I think this has to do with the FLVPlayback instances using up all the
> > possible soundchannels without releasing them
> > 
> > Any help is appreciated!
> > 
> > TIA
> > 
> > Cor
> > 
> > 
> > 
> > ___
> > Flashcoders mailing list
> > Flashcoders@chattyfig.figleaf.com
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> _
> Do you have a story that started on Hotmail? Tell us now
> http://clk.atdmt.com/UKM/go/195013117/direct/01/
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
> 08:33:00
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
_
Send us your Hotmail stories and be featured in our newsletter
http://clk.atdmt.com/UKM/go/195013117/direct/01/___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] FLVplackback problem

2010-03-10 Thread Cor
I do use a separate class for the sounds:
http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf
351e63e3d118a9b90204-7d09.html




-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter
Sent: woensdag 10 maart 2010 11:19
To: flashcoders@chattyfig.figleaf.com
Subject: RE: [Flashcoders] FLVplackback problem


I haven't run into your problem yet but I just finished a website which
played video and mp3 and played the video through FLVPlayback and built a
separate player for the sounds using Sound and SoundChannel classes. Maybe
that might help.

> From: c...@chello.nl
> To: flashcoders@chattyfig.figleaf.com
> Date: Wed, 10 Mar 2010 10:55:23 +0100
> Subject: [Flashcoders] FLVplackback problem
> 
> Hi list,
> 
> I have this application which plays MP3 sounds and play FLVs with use of
the
> FLVPlayback component.
> For every sound and every flv I create a new instance of the according
> class.
> I can start as much MP3 as a like without any problem.
> But when I start the 32th video, it crashes and error on my FoundFacade
> class:
> 
> TypeError: Error #1009: Cannot access a property or method of a null
object
> reference.
>   at SoundFacade/play()
>   at SoundFacade/onLoadOpen()
> TypeError: Error #1009: Cannot access a property or method of a null
object
> reference.
>   at SoundFacade/play()
>   at SoundFacade/onLoadComplete()
> 
> So I think this has to do with the FLVPlayback instances using up all the
> possible soundchannels without releasing them
> 
> Any help is appreciated!
> 
> TIA
> 
> Cor
> 
> 
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
_
Do you have a story that started on Hotmail? Tell us now
http://clk.atdmt.com/UKM/go/195013117/direct/01/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
No virus found in this incoming message.
Checked by AVG - www.avg.com 
Version: 9.0.733 / Virus Database: 271.1.1/2732 - Release Date: 03/09/10
08:33:00

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] FLVplackback problem

2010-03-10 Thread David Hunter

I haven't run into your problem yet but I just finished a website which played 
video and mp3 and played the video through FLVPlayback and built a separate 
player for the sounds using Sound and SoundChannel classes. Maybe that might 
help.

> From: c...@chello.nl
> To: flashcoders@chattyfig.figleaf.com
> Date: Wed, 10 Mar 2010 10:55:23 +0100
> Subject: [Flashcoders] FLVplackback problem
> 
> Hi list,
> 
> I have this application which plays MP3 sounds and play FLVs with use of the
> FLVPlayback component.
> For every sound and every flv I create a new instance of the according
> class.
> I can start as much MP3 as a like without any problem.
> But when I start the 32th video, it crashes and error on my FoundFacade
> class:
> 
> TypeError: Error #1009: Cannot access a property or method of a null object
> reference.
>   at SoundFacade/play()
>   at SoundFacade/onLoadOpen()
> TypeError: Error #1009: Cannot access a property or method of a null object
> reference.
>   at SoundFacade/play()
>   at SoundFacade/onLoadComplete()
> 
> So I think this has to do with the FLVPlayback instances using up all the
> possible soundchannels without releasing them
> 
> Any help is appreciated!
> 
> TIA
> 
> Cor
> 
> 
> 
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
  
_
Do you have a story that started on Hotmail? Tell us now
http://clk.atdmt.com/UKM/go/195013117/direct/01/___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] FLVplackback problem

2010-03-10 Thread Cor
Hi list,

I have this application which plays MP3 sounds and play FLVs with use of the
FLVPlayback component.
For every sound and every flv I create a new instance of the according
class.
I can start as much MP3 as a like without any problem.
But when I start the 32th video, it crashes and error on my FoundFacade
class:

TypeError: Error #1009: Cannot access a property or method of a null object
reference.
at SoundFacade/play()
at SoundFacade/onLoadOpen()
TypeError: Error #1009: Cannot access a property or method of a null object
reference.
at SoundFacade/play()
at SoundFacade/onLoadComplete()

So I think this has to do with the FLVPlayback instances using up all the
possible soundchannels without releasing them

Any help is appreciated!

TIA

Cor



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders