How to copy x and y coordinate from one Flex component to another
Posted
by Tam
on Stack Overflow
See other posts from Stack Overflow
or by Tam
Published on 2010-03-17T05:40:16Z
Indexed on
2010/03/17
5:41 UTC
Read the original article
Hit count: 338
flex
Hi,
I would like to base one component's x and y cooridnates according to another, I tried using the binding notation but it doesn't seem to work!
<?xml version="1.0" encoding="utf-8"?>
<s:VGroup xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/halo"
xmlns:vld ="com.lal.validators.*"
xmlns:effect="com.lal.effects.*"
xmlns:components="com.lal.components.*"
width="400" height="100%"
right="0"
horizontalAlign="right"
verticalCenter="0">
......
<s:VGroup
width="125"
height="100%"
horizontalAlign="right"
gap="0" width.normal="153" x.normal="247" width.expanded="199" x.expanded="201">
......
<s:Panel includeIn="expanded" id="buttonsGroup"
mouseOut="changeStateToNormal();"
mouseOver="stopChangeToNormal();"
skinClass="com.lal.skins.TitlelessPanel"
title="hi"
right="0"
width="125" height="700" >
.....
<s:Label text="Jump To Date" paddingTop="20" />
<s:TextInput id="wholeDate" width="100"
mouseOver="stopChangeToNormal();"
click="date1.visible = true"
focusOut="date1.visible = false"/>
...
</s:Panel>
</s:VGroup>
<mx:DateChooser id="date1"
change="useDate(event); this.visible = false; "
visible="false"
mouseOver="stopChangeToNormal();"
y="{wholeDate.y}"
x="{wholeDate.x}" />
</s:VGroup>
© Stack Overflow or respective owner