Recent Questions
Q: Do you have an extremely simple example of modifying a dynamic drop down menus with the JavaScript API? I've played with the example on the site, but I have trouble removing the other menus without breaking it.
 I just want to use the API to change the icon on the menu items. 
A: 	You should use the following function:
function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
<script language="javascript" >
dm_ext_changeItem(0, 0, 1, ["", "", "new_icon.gif", "new_icon_o.gif", "",,""]);
</script>
http://deluxe-menu.com/dynamic-functions-sample.htmlQ: I found the problem with de Deluxe Menus: 
 When the menu is inside the <DIV> </DIV> tags, the menu is shown, but does not scroll. 
A:  See, you use absolute position for this <div> 
<div STYLE="position:absolute;top:151px; left:0px"> 
But you can use absolute position for the menu. Your menu will scrollin this case. 
For example, you should set: 
  var absolutePos=1; 
  var posX="0"; 
  var posY="151px"; 
And install your menu 
<div> 
<script type="text/javascript" src="data.js"></script> 
</div> 
Or, write: 
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> 
<script type="text/javascript">  var dmWorkPath = "/";</script> 
<script type="text/javascript" src="dmenu.js"></script> 
<script type="text/javascript" src="data.js"></script>
Q: A brief one on dynamic menu in the perspective of bilinguism
 I understood from the tuner that a menu can be made dynamic (although it is somewhat minimally documented ;-))
 Leaving alone all the beautiful sophisticated and complex mechanic of it
 Say I have my main menu that says : 
   var dynamic=1; (that's all I got from the doc ..)
 And then 
   var menuItems = [
 ["Choice 1 ","page1.php", "", "", "Choice 1",", "_self", "", "", "", "", "", ],
 ["Choice 2","page2.php", "", "", "Choice 2", "_self", "", "", "", "", "", ], 
 ]; 
 Minimalist ? ;-) right ?
 1/ first I'm not too sure about what exactly in order are these 11 parameters although I'm fine with the only 4 I have here
 2/ if I would want to change on the fly menu javascript dropdown page on a PHP parameter Page1.php?lang=French (I perfectly master how to capture the PHP value)
 So that My menu becomes on the fly 
 ["Choix 1 ","page1.php", "", "", "Choix 1",", "_self", "", "", "", "", "", ],
 ["Choix 2","page2.php", "", "", "Choix 2", "_self", "", "", "", "", "", ], 
 Thanks in advance if you can shed some light on this
 PS : And although I used hardly 1% of deluxe capability my first customer is very happy about it.. 
A:  Actually you can find all info about the menu javascript dropdown parameters and featureson our website:
- menu parameter and items, Individual Styles:
http://deluxe-menu.com/parameters-info.html
http://deluxe-menu.com/menu-items-info.html
http://deluxe-menu.com/individual-item-styles-info.html
http://deluxe-menu.com/individual-submenu-styles-info.html
- dynamic functions:
http://deluxe-menu.com/functions-info.html
http://deluxe-menu.com/dynamic-functions-sample.html
> 2/ if I would want to change on the fly page on a PHP parameter
> Page1.php?lang=French (I perfectly master how to capture the PHP value)
> So that My menu becomes on the fly
> ["Choix 1 ","page1.php", "", "", "Choix 1",", "_self", "", "", "", "", "", ],
> ["Choix 2","page2.php", "", "", "Choix 2", "_self", "", "", "", "", "",> ], 
 To change the menu items on the fly you can use API functions
function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
function dm_ext_addItem (menuInd, submenuInd, iParams)
function dm_ext_changeItemVisibility (menuInd, submenuInd, itemInd, visibility)Q: I am becoming more frustrated by the moment. I try to add more menu items, the default icons (images) disappear and I can't figure out how to get them back.
Is this a bug in your software or am I simply doing something wrong? Every time this happens, I have to start over and end up with the same results - lost or missing icons. 
A: That's mean that you don't use Individual Item Styles for the newitems. 
Please, see how you should use Individual Styles for the items similar the one which you're going tocreate and see it parameters. 
You should use the same parameters for the new item. 
Try that.