假设我在 mxml (sparkskin) 中有这个:
<s:SolidColor id="fillColor"
color="0xff0000"
color.selectedOver="0xf74b47"
color.selectedUp="0xf74b47"/>
要在 AS3 中更改颜色属性,语法是:
fillcolor.color = 0x00ff00;
现在我想在 AS3 中更改 color.selectedOver。
有办法吗?
ie fillcolor['selectedOver'].color = 0x00ff00; ...