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: 38647)

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.



Go to different frames by pressing a menu item

(2008-10-24 - views: 26488)
Q: How can I go to a certain frame of my movie clip when I click on a menu item ?
A: Here is the AS3 code for this example. Just download the AS2 example, transform the AS2 file into an AS3 file and replace the AS2 component from the Library with the AS3 version. Inside the Actions panel, replace the AS2 code with the following one:

import com.jumpeye.Events.AccordionMenuEvents;

// Listen for the event dispatched when a menu item is pressed ().
accTree.addEventListener(AccordionMenuEvents.ITEM_PRESS, pressHandler);

function pressHandler(evtObj:AccordionMenuEvents):void {
    // We are accessing the 'frame' property on the child object and call
    // the useFrame() function that will make use of the frame variable.
    var frame:Object = (evtObj.item.frame != undefined) ? evtObj.item.frame : 0;
    useFrame(frame);
}

// The frame in the xml file cn be identified by its number or label, so
// the parameter passed to the useFrame() function, does not have an exact
// type.
function useFrame(frame:Object):void {
    frameNumber.text = "frame "+frame;
    gotoAndStop(frame);
}


Other questions in this item

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

Back