Recent Questions
Q: I find your tools very interesting, yet I've serched but found no answer... is there a version of your program for mac?
I don't trsut windows at all, so i don't have ever think about using bootcamp to load windows on my mac, so i repeat my question, is there or will be a version of deluxe menu to work on mac systems?
A: HTML version of Deluxe Tuner (MAC version) can be downloaded
http://deluxe-menu.com/deluxe-tuner-html.zip
See more info:
http://deluxe-menu.com/deluxe-tuner-info.html
Download trial version on MAC
http://deluxe-menu.com/deluxe-menu-all.zip
Q: I would like to know if I can use Deluxe Menu to create pulldown menus on a Mac (Mac OSX). Thank you.
A: To create your menu on MAC you can use HTML version of Deluxe Tuner (for MAC OS). You can find it here:
http://deluxe-menu.com/deluxe-tuner-info.html
Q: Can Deluxe menus work with tables?
A: Yes, you can place your menu into the <div> or <table> tag.
For example:
 <table>
    <tr>
       <td><script type="text/javascript" src="menudir/data.js"></script></td>
   </tr>
  </table>
Q: My site has three levels of a folder structure. Can I create a menu that will allow me to link in and out of folders? Or must I design three menu's with different link locations.
A: You can use one menu.
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
Please, try to use these parameters.