我正在尝试通过我的“checkBoxes”MC 中的 eventListener 从我的“列”MC 内部触发一个函数。甚至有可能还是我应该以不同的方式看待?
我的“列”MC 代码:
act_btn.addEventListener(MouseEvent.CLICK, actPoint);
function actPoint(m:MouseEvent){
cA.height = cA.height + 10;
var clickSound:pointPlus = new pointPlus ();
clickSound.play(0,1);
if(cA.height == 200){
act_btn.removeEventListener(MouseEvent.CLICK, actPoint);
}
}
这是我的“checkBoxes”MC中的代码:
cbPlus_btn.addEventListener(MouseEvent.CLICK, actPoint);
如您所见,我向两个不同的事件监听器添加了“actPoint”函数......当然,它不起作用:(