Hi again!
In a preview post, without success, I was trying to do an Elastic Menu in AS3.
The problem creating the menu with differents elements and submenus is resolved.
Now, I need to relocate the menu elements dinamicly through TweenLite.
For that, I use this method named relocate();

Code:
private function relocate():void {
 
for (i=0; i<sizeArray-1; i++) {
var element=itemArray[i+1];
newdestiny = (itemArray[i].y+itemArray[i].height+2);
//element.y=newdestiny; 
//When I use the line above, works perfect. If I use the line below I need 3 clicks over one element to relocate the rest in the right position.
TweenLite.to(element, 1, {y:newdestino, ease:Elastic.easeOut});
}
 
}
As I say in the commented codeline, the Tween doesn't get the right destination. I think is because the loop or may be not. Should be another logic to do relocating stuff.
Any help is wellcome. If I solve this problem, I will share the hole code for a Elastic XML Menu with the forum people.
Thanks in advance.
RO