Recent Questions
Q: I want to be able to have all of the submenus start at the top of the menu. For example, when I hover across each of my menu items in a vertical level, I want the sublevel menu to start at the very top of the menu, not out beside the menu option. How can I achieve this
 
A:  You can have such effect only for the first subitems. 
Others subitems will have Y offset. 
Please, see the attached example. 
You should adjust the following parameters: 
  var topDX=-116; 
  var topDY=-31; 
  var DX=-148; 
  var DY=-32;
 
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";
Q: I have downloaded your trial version and cannot change the background menu color. 
 Is there a restriction? 
 I am interested in purchasing it.
 
A: To change the background color you should set the followingparameters: 
  var menuBackColor="#FCEEB0";
  var itemBackColor=["#FCEEB0","#65BDDC"];
Q: Is it possible to use an external file with these applets? Have tried 
 <SCRIPT LANGUAGE="JavaScript" SRC="myscript.js"> 
 </SCRIPT> 
 but it does not work! 
 Any suggestions? I have one site with many pages, it would be handy not to have to change 20 pages just to modify one link.
A: You can use "menuItemsFile" param, example 
<param name="menuItemsFile" value="menu1.txt"> 
The menu menu items are in menu1.txt, so you'll need to changeonly this menu1.txt if it necessary to add/remove/change items.
See also example: 
http://www.apycom.com/xp-drop-down-menu/ex2.html