我有背景透明的面板(或组/VGroup/HGroup)(backgroundAlpha = 0)并且没有任何嵌入的背景图像。我想要“点击”,除了一些子按钮。如果我只设置 mouseEnable = false,面板仍然会收到鼠标点击。但是将 mouseEnable 和 mouseChildren 都设置为 false 我无法单击按钮。我认为有一些所以我如何让儿童按钮接收鼠标事件并且面板仍然有“点击”。
更新
通常像下面这样的源代码,按钮需要接收鼠标事件。我想点击面板,因此主容器将接收鼠标事件来移动我的头像。
<s:Panel borderVisible="false" backgroundAlpha="0.0"
contentBackgroundAlpha="0.0" x="37" y="412" width="316" height="71">
<s:layout>
<s:HorizontalLayout/>
</s:layout>
<s:Button id="shop_btn" width="55" height="30"/>
<s:Button id="inventory_btn" width="55" height="30"/>
<s:Button id="mail_btn" width="55" height="30" />
<s:Button id="buddy_btn" width="55" height="30" />
<s:Button id="quit_btn" width="55" height="30" /></s:Panel>