Drop Down Tree Menu V3
home » flash components » flash menus » drop down tree menu v3 »
|
flash component
About Drop Down Tree Menu V3The Drop Down Tree Menu V3 is a flash component designed to help you load a tree menu structure in an drop-down fashion. This is a major upgrade to the Drop Down Menu Pro, featuring multi-level menus (more than 2-levels), high level of skinning and customization, horizontal and vertical orientation, alpha and blur transitions, and of course custom tweening options.The Drop Down Tree Menu V3 is suitable for multi-level (3+) drop-down menus that can be built in Flash. If you need a 2-level drop-down menu (main menu and 1 submenu level only) than you can purchase the Drop Down Menu V3 component instead. However you can use the Drop Down Tree Menu V3 to build 1-level or 2-level menus too. What’s new in Drop Down Menu V3?• built from scratch based on the Jumpeye V3 Standards• skin customization support • full visual customization • tween transition customization • alpha, blur, slideX, slideY and slideXY modes • multi-level data menu (recursive submenus) • embed fonts supported • vertical menu orientation • function called by item click • open urls by item click • true event handling implemented • menu data is loaded using XML • component can be configured using XML The story of the Drop Down Menu V3We wanted to build the perfect Drop Down Menu V3 that would fit all expectations, we wanted to create an easy way to tween, skin and customize the look and functionality of our initial version of Drop Down Menu Pro and make it even more advanced. After 2 years of experience in selling flash drop-down menus and other flash menu components, we have yet understood what web designers and web developers actually need. An easy way to build and customize flash dynamic drop-down menus using quick features to help developers to easy implement the functionality, all these while having true script control capabilities and lots of features for experts and advanced users. Drop Down Tree Menu V3 is developed especially for web designers and developers who need to save time and money using the easiest to implement and most skinable flash drop-down menu ever built, while maximizing the benefits of essential built-in features.CompatibilityIDE Version: Macromedia Flash 8, Adobe Flash CS3Action Script Version: AS2.0, AS3.0 Flash Player Version: Flash Player 8, Flash Player 9 + UI AccessDrop Down Tree Menu V3 can be accessed from Components panel under V3 Components - Jumpeye.TutorialsHelpProperties | Methods | Events | Styles | XML | Create the XML Online - Flex GUI ApplicationSkins & ThemesThere are 5 additional themes included within the Drop Down Tree Menu V3 - all the themes used in the demo above are available in FLA format within the deliverable file.Also, The following themes are available for purchasing separately, not included within the deliverable Drop Down Tree Menu V3. They are highly customizable because they come in FLA format and XML to include with your projects. These additional themes are available for both Drop Down Tree Menu V3 and Drop Down Menu V3. Do you want your own custom theme implemented? We'll help you. Contact us. Customers Who Viewed This Item Also ViewedAccordion Tree Menu V3 | View | Add to CartAccordion Menu V3 | View | Add to Cart Drop Down Menu V3 | View | Add to Cart TextMenuBar | View | Add to Cart flash component0
BuyYou'll get a Full version of Drop Down Tree Menu V3 AS 2.0 Release (* Plus FREE AS 3.0 Release Upgrade), with all the above features included. You also get full suport and warranty for 90 days. Please carefully read our Software Licence Agreement before downloading, installing, or using this product and be sure that you accept all of our Terms and Conditions. |
||||||
|
||||||
User Comments
use a switch command inside the listener
Gary, you can insert your own parameter inside the XML file on each item. I·ve placed on the Home item an extra parameter inside the XML file like below:
<60 item title="Home" my_param="0" >
Inside my fla file, I have the onRelease listener and inside the onRelease listener I have a switch command which verify if the released item have the my_param set to 0. If yes, I display a message. You can place your actions there. Below is the onRelease listener as I have it in my fla file (on the first frame of my Actions layer):
myEventListener = new Object();
myEventListener.onRelease = function(args) {
switch(args.item.my_param){
case "0" :
trace("Home item pressed. My custom param is " + args.item.my_param);
break;
}
};
dropDownTreeMenu.addEventListener("onRelease", myEventListener);
//dropDownTreeMenu is the instance name of my Drop Down Tree menu component on stage. You should replace it with the instance name of your menu.
If you encounter any problems, please write me an e-mail at support[at]jumpeyecomponents[dot]com and send me your files.
Good luck :)
posted by jumpeyecomponents on 04-07-07
Gary, you can insert your own parameter inside the XML file on each item. I·ve placed on the Home item an extra parameter inside the XML file like below:
<60 item title="Home" my_param="0" >
Inside my fla file, I have the onRelease listener and inside the onRelease listener I have a switch command which verify if the released item have the my_param set to 0. If yes, I display a message. You can place your actions there. Below is the onRelease listener as I have it in my fla file (on the first frame of my Actions layer):
myEventListener = new Object();
myEventListener.onRelease = function(args) {
switch(args.item.my_param){
case "0" :
trace("Home item pressed. My custom param is " + args.item.my_param);
break;
}
};
dropDownTreeMenu.addEventListener("onRelease", myEventListener);
//dropDownTreeMenu is the instance name of my Drop Down Tree menu component on stage. You should replace it with the instance name of your menu.
If you encounter any problems, please write me an e-mail at support[at]jumpeyecomponents[dot]com and send me your files.
Good luck :)
Open UP?
I need this menu to open up. I've got a new site to do that has 5 squares at the bottom that each need to pop up 2 or 3 options that will load to a common content area. How would you do this?
Awesome components - they are helping me!!
By the way, I'm working on a site that has made some excellent use of use of MCTE v3; Loader Pro; Thumbslider. http://www.cabinone.com/dev/hilltop/cortland
Thank you
Jeff Butler
posted by cabinone on 26-09-07
I need this menu to open up. I've got a new site to do that has 5 squares at the bottom that each need to pop up 2 or 3 options that will load to a common content area. How would you do this?
Awesome components - they are helping me!!
By the way, I'm working on a site that has made some excellent use of use of MCTE v3; Loader Pro; Thumbslider. http://www.cabinone.com/dev/hilltop/cortland
Thank you
Jeff Butler






I know how to load/unload a movie, but I don\'t know how to isolate the event listener to a single menu item. Please help. Thanks. Gary Jaffe