如何使用actionscript在flex中的UI组件上应用补间运动?

发布于 2024-09-29 11:51:17 字数 84 浏览 4 评论 0原文

你好,我想使用 Flex 中的动作脚本在 UI 组件上应用补间运动。

我搜索了很多,但没有找到需要的有用帮助。

提前致谢。

hello i want to apply tween motion on UIcomponents using actionscript in flex.

i searched alot but didn't find something useful help required.

thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小兔几 2024-10-06 11:51:17

下面的代码为动作脚本中的按钮创建补间移动。

单击屏幕上的任意位置会将按钮移动到该位置。

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" click="moveButton(event)">

    <mx:Script>
        <![CDATA[
            import mx.effects.Move;

            private function moveButton(event:MouseEvent):void {
                var myMove:Move = new Move();

                myMove.target = myButton;
                myMove.xTo = event.stageX;
                myMove.yTo = event.stageY;
                myMove.play();
            }
        ]]>
    </mx:Script>

    <mx:Button id="myButton" />

</mx:Application>

有关更高级的示例,您可以查看 Flex 文档: http://livedocs.adobe.com/flex/3/html/help.html?content=createeffects_3.html

它展示了如何扩展和使用 TweenEffect 类来创建您自己的效果类的示例。

The code below creates a move tween for a button in actionscript.

Clicking anywhere on the screen will move the button to that location.

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" click="moveButton(event)">

    <mx:Script>
        <![CDATA[
            import mx.effects.Move;

            private function moveButton(event:MouseEvent):void {
                var myMove:Move = new Move();

                myMove.target = myButton;
                myMove.xTo = event.stageX;
                myMove.yTo = event.stageY;
                myMove.play();
            }
        ]]>
    </mx:Script>

    <mx:Button id="myButton" />

</mx:Application>

For a more advanced example you could look at the Flex documentation: http://livedocs.adobe.com/flex/3/html/help.html?content=createeffects_3.html

It shows an example how to extend and use the TweenEffect class to create your own effect class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文