[flexcoders] Update Flex builder 4.6 to 4.8

2016-08-10 Thread isa_lo...@yahoo.fr [flexcoders]
Hi,
 

 I want to update my flex environment.
 

 Can you explain how to convert my project ?
 

 Best regards.


[flexcoders] Memory leaks

2015-09-24 Thread Isabelle Loyer Perso isa_lo...@yahoo.fr [flexcoders]
Hi
I created an air application with a schedule.

To populate this schedule with appointment, I launch an httpservice and 
result is use to populate an array collection. Each time user change 
week, a new request is sending.

The variable myDataCalendar (array collection) is defined as [Bindable] 
private var myDataCalendar :ArrayCollection;
I try to reuse the same ArrayCollection, but I think making a mistake 
because memory increase each time, and garbage collector seems not working!

  myDataCalendar = new ArrayCollection();
   myDataCalendar.refresh();

So can you help me to understand memory leak.

Best regards