Hi there,
I need to create two separate windows in my AIR Application, and be able to close them both by using a Timer in the main App. or within each window itself ???

Everything should be simple coded just like this test App for mx: which is opening the windows.

creationComplete="createWindows(event)">

<mx:Script>
<![CDATA[

import mx.core.Window;
import mx.events.FlexEvent;

protected function createWindows(evt:FlexEvent):void {

new MyWinOne().open();
new MyWin().open();
}
]]>
</mx:Script>

Any ideas/help would be appreciated ! regards aktell