我是 flex 的新手,使用 flex 4.6 和 FB 4.7。我正在尝试在按钮“前面”(和中间)创建一个 BusyIndicator。我在 Google 上找到了一些关于图像堆叠的示例,但由于某种原因,它不适用于按钮/指示器组合,我不知道为什么......我尝试使用 depth 属性,但没有效果,按钮出现在指标上方,即假设指标由 [x] 标记:
[button]
[x] <== indicator
我想要的是指示器将在按钮的前面和中间:
[bu[x]ton]
这是我正在使用的布局:
<s:VGroup width="100%" height="100%" verticalAlign="top" horizontalAlign="center">
<s:Button id="mybtn" label="My Inbox" click="onInbox()" depth="1"/>
<s:BusyIndicator id="myBusyIndicator" rotationInterval="50" depth="2" />
</s:VGroup>
任何想法如何做到这一点?谢谢!