如何缩放容器时如何定位元素?

时间:2016-11-10 03:16:44

标签: actionscript-3 flash flex flex4

我有一个我正在尝试定位的组件,当父级未缩放但在缩放时,定位关闭时它可以正常工作。

如何获得正确的位置?

我将尝试提供一些示例代码,因为它是更大的应用程序的一部分,但它基本上如下:

<Group id="MainGroup" x="10" y="10">
   <Group id="SubGroup" x="10 y="10">
      <Button id="original" x="10" y="10">
   </Group>
</Group>

<Button id="clone">

然后我使用this问题或类似代码中的代码来找出如何定位缩放容器之外的第二个按钮。

看起来我正在使用的代码工作,所以必须有其他东西继续下去。这是更新的测试代码:

<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 
                       xmlns:s="library://ns.adobe.com/flex/spark" 
                       xmlns:mx="library://ns.adobe.com/flex/mx" >

    <fx:Script>
        <![CDATA[
            import com.flexcapacitor.utils.DisplayObjectUtils;
            protected function button1_clickHandler(event:MouseEvent):void
            {
                var point:Point = DisplayObjectUtils.getDistanceBetweenDisplayObjects(originalButton, cloneButton);
                cloneButton.x = point.x;
                cloneButton.y = point.y;
            }
        ]]>
    </fx:Script>


    <s:Group x="10" y="10" scaleX="2" scaleY="2">
        <s:Group x="10" y="10">
            <s:Button id="originalButton" x="10" y="10" label="Button"/>
        </s:Group>
    </s:Group>

    <s:Button id="cloneButton" label="position me" click="button1_clickHandler(event)"/>

</s:WindowedApplication>

0 个答案:

没有答案