Recent Questions
Q: No matter where I paste the script in the html for the drop down menu I created, it shows up at the top left corner of the page. 
 I would like it to go below the blue banner at the top of the page.
 Please advise as to what I am doing wrong. 
A:  Now you're using absolute position for the menu: 
  var absolutePos=1; 
  var posX="10px"; 
  var posY="10px"; 
Try to use relative position 
  var absolutePos=0; 
  var posX="10px"; 
  var posY="10px";
Q: I have purchased a license for the Deluxe Tuner and I'm quite happy with the program. 
 However, I seem to have some trouble getting javascript menu js on the Net without the annoying "incorrect copyright" warning. 
 The warning does not appear on all computers I checked, and it only appears when I paste the code into HTML myself (in a table, since I want the javascript menu js to be in the relative vertical middle of thepage and I don't think I can do this in D.Tuner itself).
A: Now you have:
 <noscript>
 <a href="http://deluxe-menu.com">Javascript Tree Menu by Deluxe-Menu.com</a></noscript>
Try to write NOSCRIPT tag in he following way:
<noscript> <a href="http://deluxe-tree.com">Javascript Tree Menu by Deluxe-Menu.com</a></noscript>
Q: I have deluxe-menu 3.2.5 and now I can't open my old menu files. I get thefollowing error message in dhtml menu creator "Can't open the file:
 H:\data-menu.js. Check youre encode parameter." I have tried to open several different menu files and I always get the same error message. Do you have any solution of this problem? 
A: You should change Deluxe Tuner settings:
Try to turn off the encoding property "Tools/use utf8 encode" and open your datafile once again.
Q: I am having a problem trying to get my scrolling menu javascript to work correctly with frames.
 My web page is frame based. There are THREE (3) Rows. The top roe is "header" and the bottom row is "footer". The center row is divided into TWO (2) columns. The left is "contents" and the right is "main". This is a very standard configuration.
 I have created a menu called "member-menu" and added it to the "content" html file. I have edited the "member-menu.js" file to add the "dm_initFrame("FrmSet",0,1,0); at the end of the file. Using the instruction provided when the scrolling menu javascript was saved. I then uploaded all of the required file to my server. At this point everything is fine, I go to a password protected page in the "\members" folder and this seems to work also. When I try to go to a "submenu" it wants to expand to the right in the "content" FRAME. I need it to expand into the "main" FRAME on the right.
 I know that I am doing something wrong. I have read the instructions a dozen times and can't find the problem. 
A: 	You should write the ID of your frames correctly, for example now youhave:
header - 0
contents - 1 (frame with the menu)
main - 2 (frame with submenus)
bootom - 3
In that case you should write init function in the following way:
dm_initFrame("FrmSet",1,2,1);
where - dm_initFrame("FrmSet",frame with the menu,frame with submenus,1);
Try that.
See more info here:
http://deluxe-menu.com/cross-frame-mode-sample.html