Recent Questions
Q: In deluxe tuner, on a horizontal dropdown menu, how I make sure long menu items can wrap into 2 lines? Losing my mind trying to figure this out.
For example...
Instead of.. International Music X Home Decoration X Books..... I want to to do:
International X Home X Books
Music Decoration
A: You should set the following parameter:
var noWrap=0;
Or use standard <br> tags inside item's text:
["International Music X Home<br>Decoration X Books","", "", "", "", "", "0", "0", "", "", "", ],
Try that.
Q: we want to be able to specify a certain height (or number of items) for the main menu after which a new column is created.
A: Unfortunately it is not possible to specify a number of items after which a new column is created.
But you can use blank items and create Individual Style for theseitems.
For example:
["| ","", "", "", "", "", "0", "", "", ], //empty item
["|Item 42","", "", "", "", "", "", "", "", ],
["| ","", "", "", "", "", "0", "", "", ], //empty item
["|Item 44","", "", "", "", "", "", "", "", ],
Q: I wanted to know if there's a way to make in the javascript expand menu the submenu to appear as regular text, not a link. Is there a way to do this?
A: Actually you are able to paste any html code within items.
For example:
var tmenuItems = [
...
["||<nobr><FORM method=GET action='http://www.google.com/custom'><input name='as_q' value='searchthe web' size=15 style='font-size:10'> <INPUT type=hidden name=cof value='LW:144;L:http://domain.edu/images/sulogo.gif;LH:45;AH:center;GL:0;S:http://domain.edu;AWFID:e01cb67b8afe383e;'></form></nobr>","", "images/icons/search.gif", "", "", "", "", "2", "", "", "",],
["test","testlink.html","",]
["<a href='testlink.html'> test </a>","","",]
["|There will be NO setup charge, if your letter is completely setup, and requires no further modifications.
To qualify for this option, you must provide us your letter in <b>Microsoft Word format</b> (version 2000 or newer).
Any/all graphics must be embedded in the Word document including your signature.
Your letters will be printed in the provided format without any changes such as repositioning, resizing or any <a href='testlink.html'>other modifications</a> to your text/graphics. If you require help with such changes, please use our Standard setup for a nominal fee. If your ^lt;font color="#0080ff">letter is using an uncommon font</font> (any font not standard to the Windows environment), then you must also email us the font file. You must also indicate the placement of any merge fields in the letter (the information you're pulling from your mailing list to be combined with each letter). To find out more about mail merge click here. ","","",]
Q: We're interested in the pop up menu (context menu) you offered. Is it possible to generate multiple context menus at the same page?
Is the context menu also 508 compliant, in other words, keyboard accessible?
A: Yes, you can use as many context menus as you want on the same page.
You should call your data files at first
<script type="text/javascript" src="data-deluxe-menu.js"></script>
<script type="text/javascript" src="data-deluxe-menu1.js"></script>
<img src="deluxe-menu.files/logo_w.gif" onClick="return dm_popup(0, 1000, event);" style="cursor: pointer;"> //1st menu
<img src="deluxe-menu.files/logo_w.gif" onClick="return dm_popup(1, 1000, event);" style="cursor: pointer;"> //2nd menu
You can use keyboard in context menus but you have to click (or hover) the image. And only after your subitems appear you can press "Ctrl+F2" and arrow keys to navigate themenu.
But if you have multiple menus on one page and use keystrokes support you can navigate only the first menu.