<?xml version="1.0" encoding="utf-8"?>
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%" currentState="HomePageMain">
<s:states>
<s:State name="HomePageMain"/>
</s:states>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<fx:Script>
<![CDATA[
import com.MenuStates.*;
]]>
</fx:Script>
<s:SkinnableContainer includeIn="HomePageMain" width="100%" height="100%" >
<mx:Button label="System Maintenance" width="225" height="64" icon="@Embed(source='assets/png/48x48/SystemMaintenance.png')" includeIn="HomePageMain" x="433" y="149"/>
<mx:Button x="433" y="241" label="System Wide Features" width="225" height="64" icon="@Embed(source='assets/png/48x48/SystemWide.png')" includeIn="HomePageMain"/>
<mx:Button x="433" y="61" label="DID's and Phone Numbers" height="64" width="225" icon="@Embed(source='assets/png/48x48/DID.png')" includeIn="HomePageMain"/>
<mx:Button x="108" y="149" label="Users and Extensions" width="225" height="64" icon="@Embed(source='assets/png/48x48/Users.png')" includeIn="HomePageMain"/>
<mx:Button x="108" y="241" label="Phones and Devices" width="225" height="64" icon="@Embed(source='assets/png/48x48/Phones.png')" includeIn="HomePageMain"/>
<mx:Button click="currentState'CenterClients'" x="108" y="61" label="Business Center Clients" width="225" height="64" icon="@Embed(source='assets/png/48x48/Clients.png')" includeIn="HomePageMain" />
<mx:Image x="10" y="10" source="@Embed(source='/assets/png/32x32/help.png')" right="10" top="2" useHandCursor="true" buttonMode="true" click="OpenHelpWindow(HelpPageId);" includeIn="HomePageMain" horizontalAlign="center"/>
<mx:Image right="10" includeIn="HomePageMain" x="10" y="42" source="@Embed(source='/assets/png/32x32/window_add.png')" useHandCursor="true" horizontalAlign="center"/>
<mx:Image right="10" includeIn="HomePageMain" x="10" y="93" source="@Embed(source='/assets/png/32x32/previous.png')" horizontalAlign="center"/>
<mx:Image right="10" includeIn="HomePageMain" x="10" y="138" source="@Embed(source='/assets/png/32x32/home.png')" horizontalAlign="center"/>
<mx:Image right="10" includeIn="HomePageMain" x="10" y="181" source="@Embed(source='/assets/png/32x32/logout.png')" click="GoToState('Logout')" horizontalAlign="center"/>
</s:SkinnableContainer>
</s:Group>
|