Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/apache-spark/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Apache flex 鼠标悬停在flex中的面板上_Apache Flex_Mouseover - Fatal编程技术网

Apache flex 鼠标悬停在flex中的面板上

Apache flex 鼠标悬停在flex中的面板上,apache-flex,mouseover,Apache Flex,Mouseover,我是flex新手。当我将鼠标悬停在面板中的图标上时,该特定面板应通过覆盖窗口中的所有其他面板来显示在前面。如何执行此操作请帮助我将面板显示在前面,请尝试以下操作: ` ` <mx:Script> <![CDATA[ protected function panel1_clickHandler(event:MouseEvent):void { setChildIndex(event.cur

我是flex新手。当我将鼠标悬停在面板中的图标上时,该特定面板应通过覆盖窗口中的所有其他面板来显示在前面。如何执行此操作请帮助我将面板显示在前面,请尝试以下操作: `


`

<mx:Script>
    <![CDATA[           
        protected function panel1_clickHandler(event:MouseEvent):void
        {
            setChildIndex(event.currentTarget as Panel, numChildren); 
        }
    ]]>
</mx:Script>

<mx:Panel width="200" height="400" y="50" x="50" rollOver="panel1_clickHandler(event)" title="back"/>
<mx:Panel width="200" height="400" id="otherPanel" rollOver="panel1_clickHandler(event)" title="front" />