我正在尝试http://examples.adobe.com/flex2/inproduct/sdk/explorer/explorer.html动态地在flex中添加淡入淡出效果。但是我无法添加效果,这里是我的代码
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init();">
<mx:Script>
<![CDATA[
private var effect:String;
private function init():void {
effect="wipeOutleft";
}
]]>
</mx:Script>
<mx:WipeLeft id="wipeOutleft" duration="1000"/>
<mx:Image id="img" source="@Embed(source='assets/image002.png')" mouseDownEffect="{effect}" width="254" height="259"/>
</mx:Application>
答案 0 :(得分:1)
您应该使effect
变量可绑定:
[Bindable]
private var effect:String;
// ...
这样,当您将新值(mouseDownEffect
)设置为"wipeOutleft"
时,effect
的值就会更新。