我有一个 Flex 应用程序,在其中我使用以下方法绘制一个矩形:
<s:Rect height="20" width="115" top="1" id="myRect">
<s:stroke>
<s:SolidColorStroke color="#FF0000" weight="2" alpha="0"/>
</s:stroke>
</s:Rect>
我想动态设置alpha
for的值myRect
。是否可以alpha
使用 Actionscript 进行设置?如果是这样,如何访问该alpha
属性?
我认为这样的事情会起作用,但我收到错误Access of undefined property SolidColorStroke
:
searchRect.stroke.SolidColorStroke.alpha=1;