I found it, but I cant get it to work in publisher, it says:
To declare our first menu we have to include the properties inside a Menu
object
definition. Here is a menu object definition:
with(milonic=new menuname("mainmenu")){
PARAMETERS. . . .
PARAMETERS. . . .
}
This creates a new menu called "mainmenu". Within this object we will need
to
declare a few parameters. One of them is telling the menu to be visible at
all
times. The "alwaysvisible" property is used for this purpose. This
property
is a
logic property, and to enable this property it must be equal to 1. So,
alwaysvisible=1; is what we need.
As this menu will be visible at all times, it will need to be positioned
on
your
HTML page in the correct place relative to other HTML objects on your
page. By
default, all menus are positioned absolute, and, therefore, we will need
to
give
this menu a TOP and a LEFT position. If we want this menu to be positioned
10
pixels down and 10 pixels across we would use top=10; and left=10;.
Finally, we need to declare the style we want to use for this menu. Style
is a
mandatory value that ALL menus must contain. All other properties can be
omitted
if need be.
Our new menu object definition should look something like this.
with(milonic=new menuname("mainmenu")){
syle=myMenuStyle;
alwaysvisible=1;
left=10;
top=10;
}
---
But what shall i do with this?
:
Not from within Publisher, but you could use the insert html code
fragment
tool to insert javascript and other code snippets. Google for "dhtml
menus"
and/or javascript menus.
DavidF
Navigation bar, Im making an internett site, and i want to make an
interactive navigation bar, witch shows when i hold my mouse over it,
"undersites" Do you know what i mean, hard too explaine.. Look at this
Navigation bar:
www.mjjforum.com, like that...
:
What's a meny?
--
JoAnn Paules
MVP Microsoft [Publisher]
~~~~~
How to ask a question
http://support.microsoft.com/KB/555375
Im making an internett site, and i want to make an interactive meny
witch
shows multi types of the meny when i hold my mouse over it.. Is that
possible?