My account
Shopping cart
Knowledge base
Support

Knowledge Base

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

Accordion (Tree) Menu V3

(views: 25374)

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.



Selected item level

(2007-08-15 - views: 6071)
Q: How can I find out on which level is found the selected item of an Accordion Tree Menu component ?
A: Just like in the case of the Accordion Menu component, there are two ways to get the level on which the selected menu item is. Both ways are presented in the demo file and are well commented.
Files: ItemType2.zip 


User Comments

AS3 version
posted by kilik212 on 2009-01-26
Hi,

I'm trying to get the id of the items in my AS3 version of the menu, so i can call and item.click on a particular menu. But when i trace out the item, it just says [object JAccordianTreeMenuChild]. I've tried using toString() on this, but give me the same thing. how can I obtain the item Id?

thank you.
AS3 version
posted by florodebat on 2009-01-27
Hello

To find out on which level is found the selected item, you must use this code, which is actually similar to that used in the AS2 example except "addEventListener".
import com.jumpeye.Events.AccordionMenuEvents;
accTreeMenu.addEventListener(AccordionMenuEvents.ITEM_RELEASE, releaseHdl);
function releaseHdl (evt: AccordionMenuEvents):void{
var itemIndex:String = String(evt.item.treeId);
trace (evt.item.treeId)
var idArray:Array = itemIndex.split(".");
var noOfStrings:Number = idArray.length;
trace(idArray.length);
switch(noOfStrings) {
case 1: descr.text = "First level item - " + itemIndex; break;
case 2: descr.text = "Second item - " + itemIndex; break;
case 3: descr.text = "Third item - " + itemIndex; break;
trace(noOfStrings)
}
}



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

Back