Knowledge Base

Important! All new questions are usually answered within the next business day.

Accordion (Tree) Menu V3

(views: 20450)

Accordion Menu V3 and Accordion Tree Menu V3 are xml flash accordion menus featuring customized states, customized transitions and tweens. Here are all known issues for Accordion Menu V3 and Accordion Tree Menu V3, they should be similar, since basically it is the same component. If you have any questions that you think we should discuss here please let us know.



Keep the Accordion (Tree) Menu V3 vertically aligned

(2007-10-11 - views: 5597)
Q: Can I keep the Accordion Tree Menu V3 vertically aligned on my stage?
A: Yes you can. Below is the actionscrip that is doing the job.

var lis={}
lis.onDraw=function(){
    arrange()
}
lis.onChange=function(item){
    arrange()
}
acc.addEventListener("onChange",lis)
acc.addEventListener("onDraw",lis)
//function for arranging the accordion's position
function arrange(){
    var finV=Stage.height/2-acc.height/2
    moveMe(acc,finV,20)
}

function moveMe(a, param, t):Void {
    var tween = new mx.transitions.Tween(a, "prop", mx.transitions.easing.Strong.easeOut, a._y, param, t, false);
    //we make the tween onMotionChange so we cand round the tween's values for a smooth tween
    tween.onMotionChanged=function(){
        a._y=Math.round(tween.position)
    }
}






Files: verticalAlign.zip 


Login to post your comment login to post your comment

Other questions in this item

Call JavaScript from XML Open menu item pages into target - "_self" Can I add a rollover sound? Change Text Color on Rollover Item description from XML Load movies on item select Use hand cursor on menu Go to different frames by pressing a menu item Transparent background menu Add different styles for each main items. Insert a line break into label Disable-Enable Accordion (Tree) Menu V3 Referencing item's textfield in Accordion (Tree) Menu V3 How do I add the AccordionTreeMenuV3 on stage in runtime? Align header text to right Underline On Rollover Use hand cursor on menu Scene navigation Adding icons Go to different frames by pressing a menu item Selected item level acc.height not updated? How do I add the AccordionTreeMenuV3AS3 from class file to stage how to change fontsize hotwo: submenus already expanded on activation? Animated items Accordion Tree Menu expandAll() Automatic Collapse Add a fixed item under the menu Get the type of the selected item clickItem() and expandItem() do not execute actions of menu item Letter kerning Autoexpand on Start Change the position of the menu icons Go To First Child When Select Top Level Menu Item Children of a menu item Open menu upwards Change the position of the folder icons Rotated text for menu items Reference to text fields within menu items Spacing between menu items Step backwards and forwards through menu Menu Item visibility / disable Accordion menu accurate size Letter kerning Title on multiple lines

Back