Normally, you set visible=false to hide a screen, so the "show" event
will occur when you make it visible again.

 

________________________________

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of markflex2007
Sent: Tuesday, April 29, 2008 10:01 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Question for creationComplete event?

 

Hi,

I develop a application that have many screen and I develop each
screen with a flex component (*.mxml page).

I use creationComplete event in one screen but the function only
execute when I first access the screen. But I need execute the
function when I access the screen because the database change quickly.

Please give me a idea which event I can use to call the function so
the function can execute when I access the screen.

Thanks

Mark

ps:code for the screen

<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml
<http://www.adobe.com/2006/mxml> " 
creationComplete="getnameList()">
<mx:Script>
<![CDATA[

import com.sb.CEC_Admin.events.GetStafflistEven; 

private function getnameList():void{

.....

}
]]>
</mx:Script>

....

</mx:Canvas>

 

Reply via email to