<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" creationComplete="init()" >
<mx:Script>
<![CDATA[
private function init():void
{
v2.height=0;
v4.height=0;
v6.height=0;
v8.height=0;
}
import mx.controls.Alert;
private function move1(event:MouseEvent):void
{
r1.play();
r1.target=v2;
r1.heightTo=42;
}
private function move2(event:MouseEvent):void
{
r1.play();
r1.target=v2;
r1.heightTo=0;
}
private function move3(event:MouseEvent):void
{
r1.play();
r1.target=v4;
r1.heightTo=42;
}
private function move4(event:MouseEvent):void
{
r1.play();
r1.target=v4;
r1.heightTo=0;
}
private function move5(event:MouseEvent):void
{
r1.play();
r1.target=v6;
r1.heightTo=42;
}
private function move6(event:MouseEvent):void
{
r1.play();
r1.target=v6;
r1.heightTo=0;
}
private function move7(event:MouseEvent):void
{
r1.play();
r1.target=v8;
r1.heightTo=42;
}
private function move8(event:MouseEvent):void
{
r1.play();
r1.target=v8;
r1.heightTo=0;
}
]]>
</mx:Script>
<mx:Resize id="r1" heightTo="200"/>
<mx:VBox id="v" height="580" width="269" x="10" y="10" verticalGap="0"
horizontalAlign="center">
<mx:VBox id="v1" width="200" height="42"
backgroundImage="icon_findproperties.png" mouseMove="move1(event)"
mouseOut="move2(event)" >
</mx:VBox >
<mx:VBox height="73" useHandCursor="true" buttonMode="true" id="v2"
backgroundImage="findalocation.png" width="200" verticalGap="0" >
</mx:VBox>
<mx:VBox width="200" id="v3"
backgroundImage="icon_communityprofiles.png" height="42"
mouseMove="move3(event)" mouseOut="move4(event)" >
</mx:VBox>
<mx:VBox id="v4" useHandCursor="true" buttonMode="true"
backgroundImage="communityprofile.png" height="48" width="200">
</mx:VBox>
<mx:VBox width="200" id="v5" backgroundImage="icon_tools.png"
height="42" mouseMove="move5(event)" mouseOut="move6(event)" >
</mx:VBox>
<mx:VBox id="v6" useHandCursor="true" buttonMode="true"
backgroundImage="maptools.png" height="64" width="200">
</mx:VBox>
<mx:VBox width="200" id="v7" backgroundImage="icon_maplayers.png"
height="42" mouseMove="move7(event)" mouseOut="move8(event)" >
</mx:VBox>
<mx:VBox id="v8" useHandCursor="true" buttonMode="true"
backgroundImage="maplayers.png" height="63" width="200">
</mx:VBox>
</mx:VBox>
</mx:Application>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---