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: Is there a way to center button names because by default they are left justified?
A: Try to set the following parameters:
var itemAlignTop="center"; // text alignment for the top items
var itemAlign="center"; // text alignment for the submenus
Q: If I use the Search Engine Friendly Code feature, do I have to update or redo it each time I change the drop menu script and save, or if I do it once to the file will it automatically update on every save?
A: If you change drop menu script items (item's text and links) you should updateyour search engine friendly code. Deluxe Tuner doesn't update it onevery save (when you save your data file).
There is no need to update it when you change menu parameters only.
Q: I'm just trying to get those little vertical spacers between menu items in the drop down menu.How can I do it with Deluxe Menu.
A: Please, see the following parameters of the menu:
//------- Separators -------
var separatorWidth = "10";
var separatorHeight = "20";
var separatorAlignment = "center";
var separatorImage = "C";
var separatorVWidth = "20";
var separatorVHeight = "10%";
var separatorVImage = "image.jpg";
You can create separators between items in the drop down menu using menuItems, for example:
var menuItems = [
["item 1"],
["-"], // this item is separator
["item 2"], ["|item 3"],
["|-"], // this subitem is separator
["|item 4"],
];