A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Accordion Menu AS3 help!!

  1. #1
    Junior Member
    Join Date
    Nov 2009
    Posts
    16

    Question Accordion Menu AS3 help!!

    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

  2. #2
    Junior Member
    Join Date
    Nov 2009
    Posts
    16
    Anybody knows a really good forum with smart and helpful people?.
    Why here nobody answers? There is any problem that I should know?

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center