My Blog Title Here

January 29, 2008

Do you have online tutorials to learn how to work with html tree menu?

Filed under: Uncategorized — admin @ 11:44 pm

Q:

Hi, I just downloaded a trial version of your software but I
don’t know how to use it. Do you have online tutorials to learn how
to work with it?? Thank you.

A:

Unfortunately we don’t have step by step tutorial now. We’ll try to
create it in the nearest time.

1. Create your html tree menu in Deluxe Tuner application.
You can create any menu as you like in Deluxe Tuner.

Deluxe Tuner v2.4 supports Deluxe Menu (http://deluxe-menu.com) &
Deluxe Tree (http://deluxe-tree.com) & Deluxe Tabs (http://deluxe-tabs.com)

You can use ready to use templates. You can find them in the templates
window.

When you open Deluxe Tuner ( Deluxe Menu ) you can click “File/New”
and add items and subitems using buttons “Add Item” and “Add Subitem” on
the main window.
You should set items and subitems parameters on the “Item Parameters”
window.
See also other parameters for the menu on the main window.

More info about html tree menu parameters you can find on our site (you can also
use local version of the site which you can find in the trial package
“Deluxe Menu / deluxe-menu.com /”)
http://deluxe-menu.com/parameters-info.html
http://deluxe-menu.com/menu-items-info.html

You can also use Individual Styles for items and subitems
http://deluxe-menu.com/individual-item-styles-info.html
http://deluxe-menu.com/individual-submenu-styles-info.html

2. You should install the menu on your page.
You can click, for example, File/Export to HTML (you can’t do it in
the MAC version).

Add several rows into your html page.

<head>

<!– Deluxe Menu –>
<noscript><a href="http://deluxe-menu.com">html tree menu by Deluxe-Menu.com</a></noscript>
<script type="text/javascript">var dmWorkPath="deluxe-menu.files/";</script>
<script type="text/javascript" src="deluxe-menu.files/dmenu.js"></script>
<script type="text/javascript" src="data-deluxe-menu.js"></script> //data-deluxe-menu.js - data file created in Deluxe Tuner.

</head>

<body>

<table>
<tr><td><script type="text/javascript" src="deluxe-menu.files/data.js"></script></td></tr>
</table>

</body>

You should also copy all engine files
dmenu.js
dmenu4.js
dmenu_add.js
dmenu_dyn.js
dmenu_key.js
dmenu_cf.js
dmenu_popup.js
dmenu_ajax.js
into “deluxe-menu.files/” folder. You should place this folder in the
same folder with your index. html page.

January 26, 2008

Is it possible to hide the plus signs in the menu using java script?

Filed under: Uncategorized — admin @ 11:44 pm

Q:

Is it possible to hide the plus signs so only the icon and the menu using java script text
show?

A:

Yes, you can do it.
You should write so:

//——- Buttons ——-
var texpandBtn = ["","",""];
var texpandBtnW = “”;
var texpandBtnH = “”;
var texpandBtnAlign = “left”;

January 25, 2008

How do you created a multiple column for only one javascript menu tree item.

Filed under: Uncategorized — admin @ 4:17 pm

Q:

How do you created a multiple column for only one javascript menu tree item.

A:

More info about multicolomn menu you can find here:
http://deluxe-menu.com/multicolumn-menu-sample.html

January 23, 2008

Where I can find more info about transitional effects in button context menu?

Filed under: Uncategorized — admin @ 9:59 am

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 button context menu on the
desired effect does not give me any new information on the parameters. It
stays 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 and
see it.

January 21, 2008

I am trying to display the word

Filed under: Uncategorized — admin @ 3:05 am

Q:

In the popup menu below (done in Spanish) I am trying to
display the word

January 18, 2008

Does your javascript flyout menu work on a Mac platform with Dreamweaver?

Filed under: Uncategorized — admin @ 6:20 pm

Q:

Does your javascript flyout menu work on a Mac platform with Dreamweaver?

A:

To create your javascript flyout 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

Unfortunately we don’t have html version of the Tuner for Deluxe Tree
and Deluxe Tabs now. We’ll try to create it in the nearest future.

Deluxe Menu wasn’t developed as Dreamweaver/Frontpage/GoLIve
Builder extension,
BUT you can use it as standard Javascript files. To install the menu
into your html page:

1. open the page in your program
2. open html source code of the page
3. add several rows of code (<script> tags), For info see: http://deluxe-menu.com/installation-info.html

That’s all.
To create and configure your javascript flyout menu use Deluxe Tuner application
(included into the trial package): http://deluxe-menu.com/deluxe-tuner-info.html

title Preview Window


Hotkey: F8

If “Auto Update” is checked, the preview will be updated automatically when any of parameters is changed. The “Update” button instantly updates the preview (hotkey: F5). The “Templates…” button opens Templates window.

January 16, 2008

I would like to separate each main menu cascading item with a dotted line graphic.

Filed under: Uncategorized — admin @ 3:14 pm

Q:

I would like to separate each main menu cascading item (Find an Expert,
Contact…etc) with a dotted line graphic. If you look at the menu cascading, you will see that
each graphic is separated by a dotted line. I am trying to replicate
that look in the Deluxe Menu. Is there a way I can do that? I tried
to use the “separatorImage” value in the DeluxeTuner, but it didn’t
seem to do anything. Is there a way to put a dotted border just
along the bottom of them item, instead of around the whole item
(like a box)? Or is there a way to insert the graphic between the
items?

A:

To add a separator you should

//— Separators
var separatorImage=”"; //for subitems (top items in vertical menu)
var separatorWidth=”100%”;
var separatorHeight=”3px”;
var separatorAlignment=”right”;
var separatorVImage=”separator.gif”; //for the top items (subitems items in vertical menu)
var separatorVWidth=”100%”;
var separatorVHeight=”2px”;
var separatorPadding=”";

You can create separators using menuItems, for example:

var menuItems = [
["item 1"],
["-"], // this item is separator
["item 2"],
];

January 14, 2008

Could you please confirm if this is the case, or if the menu drop down javascript can in fact be read by screen readers?

Filed under: Uncategorized — admin @ 1:40 pm

Q:

In addition, as you know commercial websites also have to comply with EU
regulations regarding disabilities, and I further believe that the current
menu cannot be read by screen readers for blind/partially sighted/disabled
users. Could you please confirm if this is the case, or if the menu drop down javascript can in
fact be read by screen readers?

A:

Deluxe menu drop down javascript is 508 compliant, but we don’t have the certificate at this moment.

January 11, 2008

Does your license for javascript popup menu need to be tied to a domain name to work?

Filed under: Uncategorized — admin @ 5:03 pm

Q:

I use your deluxe menu for my personal website and want to use it
for a client site that we are putting together at work. However,
there is one challenge. Some of the sites we build for our clients
are internal only and do not have a proper domain name. In the case
of my current client, the site answer to a servername call from
within the network. Eg. http://WebServer1/ . They will NOT have a
proper domain name (eg www.mysite.com). So, my question is, how can
we purchase a license for the javascript popup menu and have this work? Does your licensing need
to be tied to a domain name to work? Also, the client has not yet
confirmed the server name. How will this work?

A:

You need to register the hostname of the website (as appears in the URL, for example
http://yourintranet/ , http://WebServer1/).

In you case you should register “WebServer1″.

< Does your licensing need to be tied to a domain name to work?
Single and Multiple Website licenses are bound to a domain name.
Developer License - this version of the script doesn’t check keys and it isn’t bound to a domain name,
so it can be used with an application that doesn’t have a fixed domain name.

For your new client you can buy Single Website License. You can also
upgrade to Multiple Website license for the price difference and generate your own keys for the
clients or you can upgrade to Developer License.

I’m trying to simply use javascript to add some properties to my pop up menu code.

Filed under: Uncategorized — admin @ 9:22 am

Q:

I’m trying the deluxe menu and I’m positively impressed.

But now I’m trying to simply use javascript to add some properties to my
menu.

I modified the dynamic to 1

and I get only one error in the javascript monitor telling me:

Error: dm has no properties
Source File:
http://devel.discgolf-geneve.ch:8081/docroot/dg/js/menu/data.files/dmenu_dyn.js
Line: 8

A:

Please, see how you should write this function:
function dm_ext_addItem (menuInd, submenuInd, iParams)

<script type=”text/javascript” language=”JavaScript1.2″>
dm_ext_addItem(0, 0, ["Hello", "testlink.htm", "", "", "Hello", "_blank", "-1"]);

menuInd - index of a menu on a page, >= 0. (you have written menuInd=1, but if you have one pop up menu code on your page you should write 0).
You also have written itemStyleInd=1, but you have only one style in your pop up menu code. So you should write “0″ or “-1″.

Newer Posts »

Powered by WordPress