Flash Tree Buttons by Deluxe-Tree.com
Flash Tree Buttons


Buy Now!  Free Trial Download

Menu Screenshots Flash Tree Buttons

Flash Tree Buttons Tree Sliding Scroll Bar

Features Flash Tree Buttons

Compatibility              
  • Full cross-browser compatibility including IE, Netscape, Mozilla, Opera, Firefox, Konqueror and Safari on Windows, Mac OS and Linux
  • Menu can be populated from a database using ASP, PHP, etc.
  • Search engine friendly
  • Support for any doctypes
  • Fits for secure sites
Cost Effective
Dhtml Tree Menu Flash Tree Buttons
Seamless Integration
  • Visible over flash, select boxes, iframes, java applets
  • Multiple menus on the same page
  • Amicable to other scripts and css styles
  • Any HTML code can be used inside menu items
High Performance
  • AJAX menu loading - loads web menu data from the server "on-the-fly".
  • Commonly loads quicker than other html page elements
  • Runs well with an unlimited number of submenus and items
Easy Setup
  • De Luxe Tuner. GUI interface to create your flash tree buttons menus easily and in no time
  • Sensible menu parameters for manual editing
Buy Now!  Free Trial Download

Javascript Tree Menu. Expandable Menu.

  • Use images for backgrounds of submenus and items, icons, arrows.
  • Use any amount of menus on a single page.
  • Place any HTML code within the menu item - be it a flash-object, form, picture, or text. This ability lets you to build various menus of any complexity. You can create 3-state icons for each item: normal state, mouseover state, expanded state. After clicking on menu item selected item becomes highlighted.

Recent Questions Flash Tree Buttons

Q: How can I manage that the last clicked javascript expanding tree item stays tree highlighted?

A: We have the following API function to highlight the pressed item in Javascript/DHTML Tree
function dtreet_ext_setPressedItem (menuInd, itemID)

But unfortunately this function doesn't work for AJAX submenus.

We'll try to add this feature soon (using save state feature).


Q: The mentioned effect occurs even when the entire page is completely loaded!

As we explained before, it occurs only when we view the page with explorer 6.

(It is working fine under explorer 7 and under Firefox, so you should check it under explorer 6)

Please see the following link with our test page which demonstrates the problem.

As you will see, the buttons of the javascript menu scroll and the text will disappear (become white) while you move the mouse cursor over the menu buttons. It has nothing to do with page loading.

We are using a "Vista style" javascript menu scroll with custom design pictures.

A: This is IE6 bug.

You can find more info about this bug and solution here:

http://dean.edwards.name/my/flicker.html



Q: I've been playing with this product and it does exactly what I need so far!.

My problem question is this:-

The menu I have created shows a several icons that activate cgi code on the web server. What I want to know is can these drop down menus change the image when an icon is actually pressed?

I trying to find how I can present the user with a button pressed in image when the icon is clicked and maintain that image until another icon in that menu is pressed?

Can this be done? If not is it something you can do for me at a cost?

A: See more info about pressed item here:

http://deluxe-menu.com/highlighted-items-sample.html


Q: Thanks, we tried giving   var pressedItem=0; and the script as below:

<script type="text/javascript">
onload=setPressed;
function setPressed()
{
dm_ext_setPressedItem (0,8,0,0);
}
</script>

We are facing 2 problems

1) Two menus are getting highlighted, the "Home" and the dynamic html menu which is called onLoad using dm_ext_setPressedItem (0,8,0,0); function)

2) The submenu of the dm_ext_setPressedItem (0,8,0,0) is not getting highlighted.

A: Try to set
  var pressedItem=-2;

dm_ext_setPressedItem function has a following parameters:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion, parentOpen)

So, if you want to highlight item in the submenu you should use itemInd of this item (notitemInd of the parent item).

For example you want to highlight submenu item of the 'Manage Users' parent item with
itemInd=15.
You can find more info about dynamic html menu indexes here:
http://deluxe-menu.com/highlighted-items-sample.html#ind

So you should write the function in the following way:
dm_ext_setPressedItem (0, 3, 15, 1, 1)

menuInd = 0 if you have only one menu on the page
submenuInd = 3, see how to determine submenuInd in the table

http://deluxe-menu.com/highlighted-items-sample.html#ind
itemInd = 15, see how to determine itemInd in the table

http://deluxe-menu.com/highlighted-items-sample.html#ind
recursion = 1, to highlight parent items
parentOpen = 1, to open the submenu with the selected item.