Hi there!
We are in the last development step of our new cms product. We
developed it with flex (2.0.1) and it is time to improve its
performances a little bit ;)
When used intensively we noticed an abnormal memory usage (over 1Gb in
both IE7 and FF).
The memory leak has been located in our code near the mx:Image loading
procedures.
Basically, we have a "picture viewer", with next/previous buttons etc.
The loading code looks like that:
var url:String = ....;
imgPic.load(url + "/" + _listPics[_curPic]);
And the Image component:
<mx:Image id="imgPic" autoLoad="false" scaleContent="false"
completeEffect="{effFade}" />
After some researches, it seems that this is a known issue, so my
question is: will it be fixed in flex 3 or/and is there a "hack" to
prevent this memory leak?
Thanks in advance,
Damien