Recent Questions
Q: I just bought an imac and was wondering if i can use the apycom menu with the mac. If yes, where would i download the application.
A:  Yes, we have a version of Deluxe Tuner for MAC, but it has a limited number of featuresrelated to the Windows version. MAC version of Deluxe Tuner support Deluxe Menu only, itdoesn't support other products.
To download the MAC version you should download the trial version on MAC or use thefollowing link:
http://deluxe-menu.com/deluxe-menu-all.zip
Use engine files form the licensed package.Find a link to it in your license message.Q: There seems to be a small checkered rectangle at the top of button menu that I would like to see disappear. 
A:  See, you have 
  var tmoveable = 1; 
  var tmoveImage = "DeluxeMenu/deluxe-tree/img/movepic.gif"; 
  var tmoveImageHeight = 12; 
If you want your menu to stay movable you should set the followingparameters to delete rectangle at the top. 
  var tmoveImage = ""; 
  var tmoveImageHeight = 0;
Q: I notice in your examples that your menus are horizontal and then drop down. 
Is it possible to configure dhtml menu generator for vertical menus with submenus going left to right? 
A: Yes, it is possible.
You should set the following parameter:
  var isHorizontal=0;Q: I need your help. I built a menu with your software, and I followed all your instructions on placing it on my web page, but it's not working. The drop down menu in javascript will not go into its table cell. I have a flash banner in the cell above it, and the menu seems to be behind that banner, but the menu is not even inside the table.
 I also tried placing the drop down menu in javascript on another page where I do not have a flash banner, but it doesn't show up at all. 
A: You've set absolute position for the drop down menu in javascript
  var absolutePos=1;
  var posX="100px";
  var posY="200px";
You should set:
  var absolutePos=0;
  var posX="0px";
  var posY="0px";