Hi Namitha,
I have gone through the functionalities of maximize, minimize & restore
by keeping 3 Buttons check it out whether it may help you or not.
<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="
vertical">
<mx:Script>
<![CDATA[
*public* *function* minimizeWindow():*void
*
{
*this*.stage.nativeWindow.minimize();
}
*public* *function* maximizeWindow():*void
*
{
*this*.stage.nativeWindow.maximize();
}
*public* *function* restoreWindow():*void
*
{
*this*.stage.nativeWindow.restore();
}
*public* *function* closeWindow():*void
*
{
*this*.stage.nativeWindow.close();
}
]]>
</mx:Script>
<mx:HBox>
<mx:Button label="Minimize" click="minimizeWindow()"/>
<mx:Button label="Restore" click="restoreWindow()"/>
<mx:Button label="Maximize" click="maximizeWindow()"/>
<mx:Button label="Close" click="closeWindow()"/>
</mx:HBox>
</mx:WindowedApplication>
On Thu, Apr 2, 2009 at 8:10 PM, namita <[email protected]> wrote:
>
> hai all
>
> can any one tel me how to resotre,minimize,maximize multiscreen in
> flex-3...i need this one of my application plz...
>
> thanks
>
> >
>
--
Thanks & Regards,
Jagan Mady's
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---