Recent Questions
Q: Just wondering if it's possible to have the sub menu of my collapsible dhtml menu that appear when the "+" is clicked stay open when another page loads. I tried downloading the trial version & can't get that to happen.
 Click on "web development" and then "web design portfolio" - when the new page loads the menu closes. Is it possible to have it remember which sub menus were showing when the new page loads?
A:  Deluxe Tree has save state feature. You should set the followingparameter:
  var tsaveState=1;
Q: I have one final question:-
 If you go to http://domain.com/mainboard.asp
 And click the tools icon. 
 My application has 3 types of settings.
 Click the line icon (which highlights) then you can use the line tool Then click the thickness icon (which only changes the thickness of the line) And then click the colour icon (which only changes the colour of the line)
 Unfortunately, when another icon is selected it resets the original icon.
 Is there a way to show one of the top 8 function icons highlighted as well as the selected thickness icon and palette icon all in a selected state together? 
A:  function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
Changes parameters and an appearance of the item.
menuInd - index of a dropdown javascript menu on a page, >= 0.
submenuInd - index of a submenu, >= 0.
itemInd - index of an item, >=0. See more info about indexes here.
iParams = [array] - the array of item parameters. This parameter has the same structure as an item in menuItems array. You can assign parameters of another existent item of themenu or create new ones.
Structure of iParams:
 [item_text, link, icon_normal, icon_over, tip, target, individual_style_index, jsFilename] 
You should change icon_normal, icon_over parameters for the items.
http://deluxe-menu.com/functions-info.htmlQ: Where do I find the API reference that is associated with pop up windows. Specifically, the method documentation that references the window pointer returned by deluxePopupWindow.make? 
A: 	You can find all info on our website:
http://deluxepopupwindow.com/window-installation-info.htmlQ: One other issue I am having if you don't mind helping. On my web site when I run the menu I get an Errors on page message with the following 
 Line: 16 
 Char: 18132 
 Error: Access is denied.
 Code: 0 
 URL: http://www.site.id.au/left_frame.htm
 When I run the site from my local PC with the menu, I don't get this error? 
 Could you possibly suggest why? I can't find anything on your site. 
A: Try to check all you paths. 
 original setting: 
   var tmenuBackImage=""; 
   var titemBackImage=["",""]; 
 changed to: 
   var tmenuBackImage="images/blank.gif"; 
   var titemBackImage=["images/blank.gif","images/blank.gif"]; 
Try to specify units in "px". 
  var tmenuWidth = "180px"; 
It's necessary to specify exact value for Mozilla browsers. It helpsto position menus correctly. 
You should set this parameter: 
  var tmenuHeight = "auto"; 
Now you have such parameters in the menu: 
    ["||24","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/24.htm", , , , , "main_frame", , , , , ], 
    ["||30 Days","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/30days.htm", , , , , "main_frame", , , , , ],    ["||Battlestar Galactica","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/battlestarg.htm", , , , , "main_frame", , , , , ], 
    ["||Blade","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/blade.htm", , , , , "main_frame", , , , , ], 
    ["||Eureka","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/eureka.htm", , , , , "main_frame", , , , , ], 
    ["||I Pity the Fool","C:/Documents and Settings/Paul/My Documents/My Web Sites/site.id.au/guide/ipitythefool.htm", , , , , "main_frame", , , , , ], 
 
You cannot use local paths on your website. 
Please, correct it. <
br>You should write for example:    ["||24","site.id.au/guide/24.htm", , , , , "main_frame", , , , , ], 
    ["||30 Days","site.id.au/guide/30days.htm", , , , , "main_frame", , , , , ], 
    ["||Battlestar Galactica","site.id.au/guide/battlestarg.htm", , , , , "main_frame", , , , , ], 
Try to use also the attached engine .js files on your server.