The goal is to add some smooth animations (fading or moving) when I add new elements to a Vgroup container
I tried that :
<fx:Declarations>
<s:Move id="addedEffect" duration="800" xTo="100" />
</fx:Declarations>
<s:VGroup id="answersGroup" width="100%" height="100%" addedEffect="{addedEffect}" >
protected function button1_clickHandler(event:MouseEvent):void {
for (var i:int = 0;i<3;i++) {
var good:GoodAnswer = new GoodAnswer();
answersGroup.addElement(good);
}
}
Any idea how to acheieve any sommth adding effect on a vgroup ?