AS3和Flex 4 - 将AS3类应用于Flex mxml文件

时间:2017-02-02 14:27:52

标签: actionscript-3 flash flex

我在这里有这个AS3类,可以检测鼠标是否移动了:

package
{
    import flash.display.Sprite;
    import flash.events.MouseEvent;

    public class ApplicationTimer extends Sprite
    { 

        public function ApplicationTimer()
        {   
            stage.addEventListener(MouseEvent.MOUSE_MOVE,mouseMoved);
        }

        public function mouseMoved(event:MouseEvent):void 
        { 
            trace("mouse moved")
        }

    }
}

我要做的是将此类应用于我的主要mxml Flex文件,因此当我的鼠标在项目中移动时,将调用mouseMoved方法。我该怎么做?

1 个答案:

答案 0 :(得分:3)

MXML文件已经是一个类,您可以向它们添加脚本。您不能直接使用您的类,因为MXML使用flex体系结构,而MXML Component需要扩展UIComponent,而不是Sprite。

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
               mouseMove="mouseMoveHandler(event)">

    <fx:Script>
        <![CDATA[
            protected function mouseMoveHandler(event:MouseEvent):void
            {
                trace(event);
            }
        ]]>
    </fx:Script>

    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
</s:Application>