<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"; layout="absolute" 
creationComplete="initApp()">
<mx:Script>
<![CDATA[
private function initApp():void{
var t:Text = new Text();
t.text="FlexCoders";
this.addChild(t);
this.systemManager.addEventListener(FlexEvent. ??? What do i use,function(){
trace('here'); // i want to detect whenever something has been added to the 
stage/application but Event.ADDED_TO_STAGE does not work an neither 
FlexEvent.ADD
});
} 
]]>
</mx:Script>
</mx:Application>


      
____________________________________________________________________________________
Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 

Reply via email to