リスト内のalternatingItemColorsに関する問題があります。配列をalternativeItemColorsに割り当てたいのですが、配列がコンポーネントの上のスクリプトに存在するためです。flex コンパイラーは、プロパティの色にアクセスできないと言っています。コードは次のとおりです。
<fx:Script>
<![CDATA[
[Bindable]
public var colors:ArrayCollection=new ArrayCollection();
colors=[#FFFF00,#fd8301];
]]>
</fx:Script>
<s:List id="workList" width="100%" height="40%" alternatingItemColors="colors"/>
何が間違っているのか、配列をalternatingItemColorsに割り当てる方法を提案できますか