Recent Questions
Q: I would like to buy the OEM license with the sources.
But for redistribution I would like to use the obfuscated scripts.
Do I get both type of menu & javascript when buying the OEM license of 499 dollar?
A: Yes, of course, the redistributable Developer License comes with bothsource and obfuscated files.
Moreover you're not allowed to redistribute the source version of scriptwith your application. The sources are for use inside your company only.
Q: How can I open the link in a new window with your DHTML MENU?
A: Please, try to set that parameter in your data.js file:
var itemTarget="_blank";
Q: - I downloaded and installed your trial version..
- Selected "Tuner" then "tabs"
- Left pane sorta baffled me - even after reading documentation
- so in preview pane I selected "Templates" and Kaspersky style..
- The preview looked nothing like the kaspersky javascript menu example.. My feeling was that I had to somehow find the image elements to complete the menu tabs.. (A rather daunting task)..
- AM I missing something??
A: To use Kaspersky style javascript menu example you should assign Individual Stylesfor your items. You can find this info in the templates window.
Q: I am having problems with my html files that are located in sub folders of my site the menu html does not work on them.If they are in the root directory there is no problem.
A: You can use additional parameters to make menu paths absolute:
var pathPrefix_img = "http://domain.com/images/";
var pathPrefix_link = "http://domain.com/pages/";
These parameters allow to make images and links paths absolute.
For example:
var pathPrefix_img = "http://domain.com/images/";
var pathPrefix_link = "http://domain.com/pages/";
var menuItems = [
["text", "index.html", "icon1.gif", "icon2.gif"],
];
So, link path will be look so:
http://domain.com/pages/index.html
Images paths will be look so:
http://domain.com/images/icon1.gif
http://domain.com/images/icon2.gif