Tweenerで色を変える

[sourcecode language=”java”]

import caurina.transitions.Tweener;
import caurina.transitions.properties.ColorShortcuts;
ColorShortcuts.init();
MC.addEventListener(MouseEvent.CLICK,function():void{
//MCがクリックされたら、
Tweener.addTween(Box, {_color:0xFF0000,time:2,transition:"linear"});
});

[/sourcecode]

_color:0xFF0000で色を設定します。
備忘録として。