0

这是 my.mxml 中的一个脚本

  <fx:Script>
    <![CDATA[
        import mx.collections.ArrayCollection;
        public function __changeSel():void{

        }
    ]]>
  </fx:Script>

同一 my.mxml 中组件标记中的另一个脚本

<fx:Component>
                                        <s:ComboBox change="changeSel(event)">  
                                            <s:id>selID</s:id>
                                            <s:dataProvider>
                                                    <s:ArrayCollection>
                                                        <fx:String>Less Than</fx:String>
                                                    </s:ArrayCollection>                                                    
                                            </s:dataProvider>
                                            <fx:Script>
                                                <![CDATA[
                                                    public function changeSel(even:Event):void{
                                                         __changeSel();
                                                    }
                                                ]]>
                                            </fx:Script>
                                        </s:ComboBox>
                                    </fx:Component>             

但是当我调用 __changeSel(); 它无法识别此功能。有什么办法可以解决这个问题。

4

1 回答 1

2

您不应该使用内联组件。这导致范围转移。编写一个适当的自包含组件并在显示列表上调度事件,因此复合根可以在冒泡事件上设置侦听器。

否则尝试在内联渲染器中使用 outerDocument 来调用该方法。

于 2012-06-06T07:39:55.707 回答