Recent Questions
Q: I would like to know does deluxe menu support Unicode characters? I have enter some Chinese texts through deluxe tuner and I can preview those Chinese text in deluxe tuner preview panel. I have chose "use utf8 encode"already. However after I saved the .js file, the js file encode become ANSI and those Chinese texts in the js file become ?????. Can deluxe tuner autosave the file to UTF8 encode?
A:  Please, check that you've set "Tools/Use utf8 encode".
When you save your data file in UTF8 you should use the same encoding on our html page.
So you should write:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
If you don't want to use UTF-8 encode on your page you should turn off"Tools/Use utf8 encode" property, save your data file and manuallychange your letters in any text editor.Q: Hi I recently purchased your product Deluxe Tuner and I am having trouble with my frame pages.
There is a portion of my site that is set to produce frames and Iwas wondering if there is more information about setting links in a tree view structure to selected frame pages? 
A: You can paste any html code inside item text, see example here:
http://deluxe-tree.com/data-samples/tree-menu1.js
 ["+Support", "", "icon5_t.gif", "icon5_to.gif", "", "Support Tip"],
  ["|Index  <select style='width:120px;height:17px;font:normal 10px Tahoma,Arial;'><option>Section 1<option>Section 2<option>Section 3</select>", "", "", "", "", "","", "0"],
  ["|Search <input type=text style='width:80px;height:17px;font:normal 10px Tahoma,Arial;'>  <input type=button value='Go'style='width:30px;height:17px;font:normal 10px Tahoma,Arial;'>", "", "", "", "", "", "", "0"],
  ["|Write Us", "mailto:[email protected]", ""],
  ["|<INPUT TYPE=checkbox CHECKED ID=chk1 onclick='choosebox1()'>Uncheck this check box for some free advice","","","",],
 ["<img src='img/sep.gif' width=113 height=1>"],
Q: I have been trying for months to find an answer to my submenu problem using your FAQ and Recent Questions.
 The only thing that comes close to an answer is from one of your Recent Questions below, but I don't understand the answer. Will you please give me specific code or info to fix? Please refer to my frameset code and data.js info, which I've provided further down this message. 
 I am using cross frame menu dropdown. I have three frames: Top, Left and main (middle). 
 I am using the script and data from your sample file, it works fine. Only problem is submenu is offset to the right. It does not show up exactly down below the top javascript hide menu. 
A:  Yes, I suppose that the reason is in your frame structure. For examplenow you have:
top -------------------
       **MENU**
left--|main------------
       |
       | **submenus**
       |
Try to add additional frame in your top frame with the same width asyour left frame has:
l-top-|right-top-----------------
       | **MENU**
left--|main----------------------
       |
       | **submenus**
       |Q: Is there any way through script to call the function that would be called if the user clicked a dhtml tabbed menu? 
A: You're able to use Javascript for each item, for example: 
   var bmenuitems = [ 
 ["item text", "javascript:your_code_here"] 
 ]; 
 Unfortunately, you can't assign onmouseover/onClick event to each item. 
 However, you can achieve this by using standard html objects within items, for example: 
   var bmenuitems = [ 
 ["<div onClick='your_code_here'>item text</div>", "index.html"] 
 ];