Automatic Menu Php Directory Tree by Deluxe-Tree.com
Automatic Menu Php Directory Tree


Buy Now!  Free Trial Download

Menu Screenshots Automatic Menu Php Directory Tree

Automatic Menu Php Directory Tree Sliding Dhtml Menu Tree

Features Automatic Menu Php Directory Tree

Easy Setup
  • De Luxe Tuner. GUI interface to create your automatic menu php directory tree menus easily and in no time
  • Sensible menu parameters for manual editing
Unrivalled Features
  • Scrollable, dragable, floating
  • Unique Java Script API for altering menu "on-the-fly", without page reloading
  • AJAX technology - loads menu data from the server "on-fly and on-demand".
Tree Horizontal Drop Down Menu Automatic Menu Php Directory Tree
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
Professional Look-n-feel
  • Entirely customizable look-n-feel
  • A lot of pre-designed automatic menu php directory tree samples
  • Hundreds of visual effects
  • Custom CSS styles can be applied for all menu settings
Cost Effective
Buy Now!  Free Trial Download

Javascript Tree Menu. Expandable Menu.

  • These effects will make your menu more attractive and stylish. Among available transitional effects there are such as fade, mosaic, random dissolve, slide out and many others.
  • Create individual styles and assign them to any submenu and item. Use individual styles to achieve stunning effects!

Recent Questions Automatic Menu Php Directory Tree

Q: Still having trouble with placing the javascript window menu on a fixed position on firefox. So far its only at my testpage. The "Trial Version"-Button however stays at the correct place while the javascript window menu itself moves down if you scroll down... I hope that is fixed in the full version??

A: Now you're using floating feature for the javascript window menu:

//--- Floatable Menu
  var floatable=1;
  var floatIterations=3;
  var floatableX=1;
  var floatableY=1;
  var floatableDX=15;
  var floatableDY=15;

If you don't want to use it you should set:

  var floatable=0;



Q: When using the tab menu css the third item in the second tab seems to have a mind of its own.а will not take the attributes of all other tabs.

Have tried to force it to comply be creating an individual style just for that button...but that doesn't work either.

have spent (wasted) much time trying to get this to work.а What is the problem?ааа Very frustrated.

A: This tab differs from other tabs because it is selected tab. You'veset:

  var bselectedSmItem=10;

You can try to set it in the following way:

  var bselectedSmItem=0;



Q: Are there instructions on how to set up cross-frame mouseover menu?

A: You should create your menu in Deluxe Tuner, save it.
Create html file with your frame set.

Set ID for the first frameset:
<FRAMESET id=frmSet rows=220,*>
<FRAME id=frame1 src="JavaScript Tree Menu Samples_files/cross-frame-horizontal-1.htm"> //menu frame
<FRAME id=frame2 name=frame2 src="JavaScript Tree Menu Samples_files/testlink.htm"> //content frame
</FRAMESET>

Then you should open your data file in any text editor and change
dm_init(); to dm_initFrame("frmSet", 0, 1, 0);




Q: Could you please help me with another question?

I am using your regular dhtml menu inside an asp page.
I want to make a call to different javascripts with parameters from different menu items (Which should work fine.. )

I have now been trying to do this by using the alert() java metod....

This line works perfect:
 ["|Test A","javascript:alert('Test');", "", "", "", "", "0", "-1", "", ],

But if I try to write the same line within ASP brachets ( <% %> ) the menu does not show up:

<%
response.Write( " ['|Test A','javascript:alert('Test');', '', '', '', '', '0', '-1', '', ], " )
%>>

I have also found that if I remove the parameter inside the javascript like this:
<%
response.Write( " ['|Test A','javascript:alert();', '', '', '', '', '0', '-1', '', ], " )
%>>

the menu will show up and the script will work but since I can not insert any parameter it is pointless..

How can I achieve this?

I really hope you can help me with this one!

A: Try to write your code in the following way:

<%
response.Write( " ['|Test A','javascript:alert(\'Test\');', '', '', '', '', '0', '-1', '', ], " )
%>