Knowledge Base |
Important! All new questions are usually answered within the next business day.
Accordion (Tree) Menu V3
(views: 9691)
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.
How do I add the AccordionTreeMenuV3 on stage in runtime?
(2007-11-15 - views: 1830)
Q: How do I add the AccordionTreeMenuV3 on stage in runtime?
A: Here is the script you have to adapt to your project.
var acc:AccordionTreeMenuV3;
//create a listener, to find when the button is pressed
var lis = new Object()
buttonOne.addEventListener("click", lis)
lis.click = function (event:Object)
{
// when the button is pressed, we call de attachMenu function to create another AccordionTreeMenuV3AS3
attachMenu("buttonOneXML.xml")
}
// the function that attach a new AccordionTreeMenuV3AS3.
function attachMenu(xm:String)
{
// if another menu already exist, we remove it.
if(acc != null)
removeMovieClip(acc)
// we create the menu.
acc = this.attachMovie("AccordionTreeMenuV3","acc",this.getNextHighestDepth())
// set the xml for the menu.
acc.xmlPath = xm;
// we set the width of it (initial is 100).
acc.width = 200
//we set a random position, to know that a new menu was created.
acc._x = Math.random(100)*350
}
var acc:AccordionTreeMenuV3;
//create a listener, to find when the button is pressed
var lis = new Object()
buttonOne.addEventListener("click", lis)
lis.click = function (event:Object)
{
// when the button is pressed, we call de attachMenu function to create another AccordionTreeMenuV3AS3
attachMenu("buttonOneXML.xml")
}
// the function that attach a new AccordionTreeMenuV3AS3.
function attachMenu(xm:String)
{
// if another menu already exist, we remove it.
if(acc != null)
removeMovieClip(acc)
// we create the menu.
acc = this.attachMovie("AccordionTreeMenuV3","acc",this.getNextHighestDepth())
// set the xml for the menu.
acc.xmlPath = xm;
// we set the width of it (initial is 100).
acc.width = 200
//we set a random position, to know that a new menu was created.
acc._x = Math.random(100)*350
}
User Comments
Place the component into the Library
In order for the above code to work, you need to have the component into your project's Library and have a .xml file called buttonOneXML.xml in the same folder with your flash file.
posted by negush on 2008-02-27
In order for the above code to work, you need to have the component into your project's Library and have a .xml file called buttonOneXML.xml in the same folder with your flash file.
Login to post your comment
Other questions in this item:
Call JavaScript from XML Open menu item pages into target - "_self" Transparent background menu Item description from XML Use hand cursor on menu Can I add a rollover sound? Go to different frames by pressing a menu item Referencing item's textfield in Accordion (Tree) Menu V3 Scene navigation Add different styles for each main items. Keep the Accordion (Tree) Menu V3 vertically aligned Animated items Load movies on item select Change Text Color on Rollover Disable-Enable Accordion (Tree) Menu V3 Adding icons Underline On Rollover how to change fontsize Selected item level acc.height not updated? Add a fixed item under the menu How do I add the AccordionTreeMenuV3AS3 from class file to stage Autoexpand on Start Automatic Collapse Get the type of the selected item hotwo: submenus already expanded on activation? Insert a line break into label Children of a menu item Align header text to right Letter kerning Change the position of the menu icons Go To First Child When Select Top Level Menu Item Reference to text fields within menu items Accordion Tree Menu expandAll() Change the position of the folder icons Use hand cursor on menu Open menu upwards clickItem() and expandItem() do not execute actions of menu item Spacing between menu items Step backwards and forwards through menu Rotated text for menu items Accordion menu accurate size Menu Item visibility / disable Letter kerning Go to different frames by pressing a menu item Title on multiple linesMenu |
|
|

i need example for this question, because i try to make this and do not work.. thanks