Recent Questions
Q: How can I keep the java slide menu items from opening into a new window when selected?
A: You can set target parameter for all items:
var itemTarget="_self";
or for each item individually:
["Home","testlink.html", "", "", "", "_self", "", "", "", "", "", ],
Q: Is there a way to get text to wrap on a tree menu rather then have scroll bars if the text is wider then the area?
A: To wrap your text you can use the following parameter:
var tnoWrap=0;
you can also use standard <br> tags.
["|Home aaaa aaaaaa aaaaaa<br>aaa aaaaaaaaaaa","testlink.htm", "default.files/icon1_s.gif", "default.files/icon1_so.gif", "", "Home Page Tip", "", "", "", ],
Q: I am interested in purchasing your product (in particular – Mac Tabs). I downloaded a trial to test Mac Tabs. The trial Mac Tabs is not the same as shown on your website where the “links” appear horizontally under the “tab”. In this trial version the “links” appear as tabs also and not in a horizontal bar under the tab.
In testing the XP Tabs trial, I found it worked correctly.
Is there something wrong with the trial version of Mac Tabs?
A: See, if you want to add links to the tabs you should create your tabmenu in Tab mode.
var tabMode=1;
You can find all instructions how to create such tabs in the Templatewindow "MAC" tab.
You should add subitems for the items and assign Tab Style for thesubitems.
For example try to use MAC Style 2 Tab Mode.
Q: Hi there ... how do I add in the following javascript code so an exit pop doesn't go off:
onClick="exit=false;"
I read this page, but it didn't work
http://deluxe-menu.com/javascript-link-menu-support.html#
A: Unfortunately, you can't assign onmouseover/onClick event to each item. However, you can achieve this by using standard html objects within items, for example:
var menuitems = [
["<div onClick='your_code_here'>item text</div>", "index.html"]
];