Q:
In the item window, it says “use Ctrl key to slect and copy items” But when I try it doesn’t work.
I use Ctrl C and Ctrl V
A:
To select a group of javascript image menu items you can use Shift and Ctrl keys.
To rename an item click on it and hold a mouse cursor for a second. Or use item parameters window.
To move items select items you want and use a mouse drag’n'drop method.
To copy items select those you want and use a mouse drag’n'drop method holding a Ctrl key.
Also you can use a contextual menu - a right mouse click on the list of items.
Q:
Once again, I need your help….I have gone through my eniter site to fix
what it takes to keep this javascript jump menu from hiding the flash header when you role
over the main menu items. It still hides. The problem still exists. Help!
A:
You should add the following function in the beginning of your data file
function dm_ext_ruleObjectHide()
{
// Safari detect
if ((parseInt(navigator.productSub)>=20020000) && (navigator.vendor.indexOf(’Apple Computer’) != -1) && (navigator.product==’Gecko’))
return true;
else
return false;
}
You should add this function each time you change your javascript jump menu in Deluxe
Tuner as it deletes this function from your data file.
Q:
Hi, I am testing your menu system for my company and would like
to know how to keep the menu in the centre of the page like
<centre></centre>. I know how to do it without a javascript jump menu but
cannot work out how to do this with it floating.
A:
When you use floatable menu you can’t use relative javascript jump menu position.
So, if you use
var absolutePos = 0;
and to center the menu you use <p> or <div> with the center alignment your menu won’t float.
To center your floatable menu you should set absolute coordinates.
Q:
We would like to use standard images for the main menue and add popup menues by using deluxe menue. The popups are triggered by hovering the cursor above the main menue
images and they should stay visible as long as the cursor is in the image.
If the cursor leaves the image, the popup should be closed unless it is in the javascript image menu.
A:
See, you can use one Deluxe Menu (image-based) with images for the main
items and submenus or you can use several pop up menus for each image.
http://deluxe-menu.com/popup-mode-sample.html
You should use onMouseover event.
Q:
I’ve browsed your product, and I’m trying to determine if there
is an existing template that would support a
vertical javascript image menu, where the static menu is one button, but
when clicked on, it lays out 5 additional buttons
in a straight line horizontally to the right of the static
button. Is this feasible to create with your product with relative
ease, and
if so, what’s the easiest way?
A:
I suppose that you’re saying about Pop up menu, see example here:
http://deluxe-menu.com/popup-mode-sample.html
Q:
We recently purchased your full package, and I have a couple of
questions regarding deluxe-menu in particular.
1) I’d like to change what’s in the noscript area to something
other than an ad for you in the event my user has JavaScript
disabled. I can understand the copyright remaining intact, however
I don’t believe I should have to display this to my users in the
noscript.
2) I’m using this inside our firewall on a VPN intranet
application. Am I going to have issues with the key if the site
has multiple host headers and domains attached to it?
A:
Thanks for your interest in our products.
1) If you delete noscript tag from your pages you’ll see “Incorrect
Copyright” message in IE.
You can generate search engine friendly code. When JavaScript is
disabled you will see the links.
Deluxe Menu is a search engine friendly javascript jump menu since v1.12.
To create a search engine friendly menu you should add additional html code within your html page:
<div id=”dmlinks”>
<a href=”menu_link1″>menu_item_text1</a>
<a href=”menu_link2″>menu_item_text2</a>
…etc.
</div>
To generate such a code use Deluxe Tuner application.
You can find this GUI in the trial package.
Run Tuner, load your menu and click Tools/Generate SE-friendly Code (F3).
2) Deluxe Menus support multiple keys in one data file,
so you can apply the following syntax to use the same html code
under multiple domains:
var key =”THE_FIRST_KEY”; //sandvine.com
var key1=”THE_SECOND_KEY”; //salestools
…