Recent Questions
Q: Can I use my own images as the tabs in a dreamweaver navigation bar?
A: The Drop down menu items have the following structure:
   var menuItems = [
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 ...
];
Where iconNormal, iconOver - Icons of an item: icon in normal state, icon in mouseover state.
So you can set your menu items in a such way:
  var menuItems = [
 ["","testlink.htm", "icon1.gif", "icon1o.gif"],
 ["","", "icon2.gif", "icon2o.gif"],
  ["|","testlink.htm", "icon3.gif", "icon3o.gif"],
  ["|","testlink.htm", "icon4.gif", "icon4o.gif"],
  ["|","testlink.htm", "icon5.gif", "icon5o.gif"],
 ["","testlink.htm", "icon1.gif", "icon1o.gif"],
];
Q: I've seen, that it's possible to open the linked contents for the javascript floating menu in the same or in a new window or in a frame ,but is it possible, too, to generate a new tab?Open a new tab seems to be less risky ... is there any solution to beused with Drop Down Menu? I tried to use "_tab" instead of "_self" or"_parent", but it did not work!
A: You should use _blank. 
If your browser supports tabs your link will beopened in a new tab (except IE, in IE it will be opened in a newwindow).Q: How can I setup Font Size, color for individual level, button? How? 
A: You should use Individual Item Styles. 
 
  var itemStyles = [ 
 ["itemBackColor=#B6E025,#769315","fontStyle=bold 10px Bookman Old Style"], //style 0 
]; 
menuItems = [ 
... 
 ["Product Info","", "default.files/icon1.gif", "default.files/icon1o.gif", , , , , , ], 
  ["|Features","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", , , "0", , , ], //style 0 
  ["|Installation","", "default.files/icon2.gif", "default.files/icon2o.gif", , , "0", , , ], //style 0 
... 
]; 
Q: I bought the software and am very pleased with how it works. I still have one question. When I go to the "Transitional Effects Info" page to get the parameters for the different effects, clicking in the slider menu on the desired effect does not give me any new information on the parameters. Itstays stuck on "  var transition=0". Is there another place I can go to view the various parameters for the different effects?
A:  See more info here: 
http://deluxe-menu.com/filters-and-effects-sample.html 
Click "Show Additional Info" button. 
You can also try to apply each transitional effect in Deluxe Tuner andsee it.