// weak case 1
addEventListener(some_event, onSomething, false, 0 ,true );
// weak case 2
addEventListener(some_event, function():void{doSomething()});
// weak case 3 inside function scope
var _function:Funtion;
addEventListener(some_event, _function);
if process wait too long and gc clean it before thing done, no event
will fire easy as that
so, do try declare event handler function as private function instead
should help
hth
--
Regards
-----------------------------------------------------------
katopz, http://sleepydesign.com
Away3D and JigLibFlash Developer Team
don't be amaze, even "-debug=true/false" can produce diff
result/freeze loader to fire event "complete"
but in case it's random happen, so i didn't submit to adobe JIRA bug
base just yet ;p
trust me, i'm always use all weak before for gc, but after face this problem
i make it weak case by case after that ;)
hth
On 14/06/2010, Yasuto <yasut...@gmail.com> wrote: