RE: [Flashcoders] [AS3] Memory leaks unloading

2008-03-13 Thread Sunil Jolly
amounts of data since we didn't believe it was able to release memory well enough. Hope that helps! Sunil -Original Message- From: Henry Cooke [mailto:[EMAIL PROTECTED] Sent: 12 March 2008 17:25 To: Flash Coders List Subject: Re: [Flashcoders] [AS3] Memory leaks unloading Wow, thanks

RE: [Flashcoders] [AS3] Memory leaks unloading

2008-03-12 Thread Matthew James Poole
You can start by using weak references for you events listeners... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Henry Cooke Sent: 12 March 2008 15:55 To: Flashcoders mailing list Subject: [Flashcoders] [AS3] Memory leaks unloading Hey all, I'm

Re: [Flashcoders] [AS3] Memory leaks unloading

2008-03-12 Thread Allandt Bik-Elliott (Receptacle)
as far as i know, there is no way of dumping the garbage manually - you have to wait for the flash plugin to dump it once it has been marked you can check chapter 14 of essential actionscript 3.0 (moock) for more info about that On 12 Mar 2008, at 15:54, Henry Cooke wrote: Hey all, I'm

Re: [Flashcoders] [AS3] Memory leaks unloading

2008-03-12 Thread Matt Muller
You should read this. http://gskinner.com/blog/archives/2006/07/as3_resource_ma_1.html GC doesnt happen on unloading immediately. Leave your app open for 20 mins and see what happens... MaTT On Wed, Mar 12, 2008 at 4:14 PM, Matthew James Poole [EMAIL PROTECTED] wrote: You can start by using

RE: [Flashcoders] [AS3] Memory leaks unloading

2008-03-12 Thread Matthew James Poole
2008 16:30 To: Flash Coders List Subject: Re: [Flashcoders] [AS3] Memory leaks unloading as far as i know, there is no way of dumping the garbage manually - you have to wait for the flash plugin to dump it once it has been marked you can check chapter 14 of essential actionscript 3.0 (moock

Re: [Flashcoders] [AS3] Memory leaks unloading

2008-03-12 Thread Matt Muller
I think you can use a localconnection hack to force gc. http://blog.infidea.ws/category/as3/ On Wed, Mar 12, 2008 at 4:29 PM, Allandt Bik-Elliott (Receptacle) [EMAIL PROTECTED] wrote: as far as i know, there is no way of dumping the garbage manually - you have to wait for the flash plugin to

Re: [Flashcoders] [AS3] Memory leaks unloading

2008-03-12 Thread Henry Cooke
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Allandt Bik-Elliott (Receptacle) Sent: 12 March 2008 16:30 To: Flash Coders List Subject: Re: [Flashcoders] [AS3] Memory leaks unloading as far as i know, there is no way of dumping the garbage manually - you have

Re: [Flashcoders] [AS3] Memory leaks unloading

2008-03-12 Thread EECOLOR
In Flex Builder 3 they have added the profiler. You can use that to take snapshots of your application and inspects its memory use, instantiated objects etc. Greetz Erik On 3/12/08, Henry Cooke [EMAIL PROTECTED] wrote: Wow, thanks for all the tips, guys. I forgot to mention that I was