Recent Questions
Q: I created a button set and saved the project. I was able to open it for a while, but now every time I try to open the data file it gives me this message: Access violation at address 004AACF7 in module 'deluxetuner.exe'. Read of address 00A78000. Is there anything you can help me with?
 
A: You used Individual Item Styles for the main items, but there was noindividual style in your parameters. 
["Home","http:/www.jx2productions.com/index.html", , , , "_self", "0", , , ], 
["About us","http:/www.jx2productions.com/about/index.html", , , , "_self", "0", , , ],
Q: Thank you for your prompt reply. But i was wondering where should I paste this code? Can you please explain the working of the javascript toolbar menu function
 dm_ext_changeItemVisibility (menuInd, submenuInd, itemInd, visibility)
 I have 5 items in the javascript toolbar menu : Admin Options, Status Report, Remarks, Edit Profile, Data Entry. 
 I want to disable some fields for different users. 
 I have 3 role id's set in my database.
 I want certain fields disabled for different users. 
 For eg : For Roleid =1 , i.e admin , I want all items to be visible.
 For Roleid =2 , i dont want the Admin Options to be visible.
 For Roleid=3 , I dont want Admin Options & Status reports. 
 Can you please elaborate on the working of the changeItemVisibility function. I was confused as there were no examples to demonstrate the code.
A: Notice also that you should set
  var dynamic=1;
parameter to use API functions.
Q: I can't figure out how to get menu items to swap images to use like a traditional image rollover. In the Dhtml menu, I can change the style background without needing images, or I can use generic images as a background, but I have situations where I need to use unique images for each state of a button. 
 These unique image buttons contain text and graphics, and there are different images for different states: normal, mouse over, mouse down.
 
A: The menu has only two states normal and mouseover. 
You should use Individual Item Styles. 
Please, see the example of Deluxe Menu here: 
http://deluxe-menu.com/data-templates/vista-style-02-template-sample.html 
You should use "itemBackImage" parameter. 
  var itemStyles = [ 
 ["itemWidth=92px","itemBorderWidth=0","fontStyle=normal 11px Tahoma","fontColor=#FFFFFF,#FFFFFF","itemBackImage=btn_greenblack.gif,btn_green.gif"],
]; 
Q: I'm testing the trial version and I'm having a little problem with the state saving. Everytime it navigates to another page, it does not save the state, even with 
  var tsaveState=1; 
 In fact, it actually opens up a different menu other than the one I originally clicked.
 
A: See, if you open pages (with menus) from different folder it means that you open different menus. So, when you change a state, for example, of the first menu within "newzap/" folder and then open another page with the menu within "newzap/learn/", browsers looks for another cookie file and can't find it and the second menu stays in a default state. 
 Try to set different 
  var tsavePrefix="menu1"; 
  var tsavePrefix="menu2"; 
  var tsavePrefix="menu3"; 
for different menus. 
That should work.