Can you make a interactive meny on Microsof Publisher?

T

Toddola

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?
 
T

Toddola

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...

JoAnn Paules said:
What's a meny?

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




Toddola said:
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?
 
J

JoAnn Paules [MVP]

Ohhhhhhhhhh, *menu*. I was honestly clueless about that word.

(And I really could have gone thru life happily without having visited that
site.)

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




Toddola said:
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...

JoAnn Paules said:
What's a meny?

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




Toddola said:
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?
 
T

Toddola

well, not me who did not get the point:) I had to show you... Can you help me?

JoAnn Paules said:
Ohhhhhhhhhh, *menu*. I was honestly clueless about that word.

(And I really could have gone thru life happily without having visited that
site.)

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




Toddola said:
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...

JoAnn Paules said:
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?
 
D

DavidF

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

Toddola said:
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...

JoAnn Paules said:
What's a meny?

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




Toddola said:
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?
 
T

Toddola

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?

DavidF said:
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

Toddola said:
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...

JoAnn Paules said:
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?
 
T

Toddola

Okay I know i suck at explaining, but i opened HTML Code Fragment, and copyed
this text into it:

with(milonic=new menuname("mainmenu")){
syle=myMenuStyle;
alwaysvisible=1;
left=10;
top=10;
}

It did not work..
DavidF said:
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

Toddola said:
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?
 
D

DavidF

Try it? ...and if it doesn't work, try another one. There are hundreds of
free scripts out there.

DavidF

Toddola said:
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?

DavidF said:
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

Toddola said:
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?
 
T

Toddola

Okay we are almost there... Now, how can i open the apytmenu.js.. I dont know
how to open it.. there is written "Place these files to any folder of your
html project and add a reference to the files within your HTML page." But on
Publisher there is only one file? wtf? Here is the whole explanation:
--------------
Apycom Tree Menu comes with several .js files that can be found in the js/
subdirectory of a trial package:

apytmenu.js menu engine
apytmenu_add.js additional module for floatable/movable menu features
apytmenu_ss.js additional module for saving menu state
apytmenu_dyn.js additional module with JavaScript API to change the menu
"on-the-fly"
data.js data file with menu parameters, styles, items.
This file can be renamed.

Place these files to any folder of your html project and add a reference to
the files within your HTML page.

For example, this folder will be menudir/.

Paste the following code within html page (into <head> tag):

<!-- Apycom's DHTML Tree Menu -->
<noscript><a href=http://dhtml-menu.com/>DHTML Tree Menu by
Apycom.com</a></noscript>
<script type="text/javascript" language="JavaScript1.2"
src="menudir/apytmenu.js"></script>
<!-- (c) 2005, Apycom Software, apycom.com -->
-----------------------------------------------------------------------
DavidF said:
Try it? ...and if it doesn't work, try another one. There are hundreds of
free scripts out there.

DavidF

Toddola said:
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?

DavidF said:
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?
 
T

Toddola

"Insert these scripts with the style command in the <HEAD> section of the
page."
"Insert the following HTML code inside the <BODY> section where you want the
menu windows to appear in your page."

Where do i find the <HEAD> and the <BODY> in publisher?

Toddola said:
Okay we are almost there... Now, how can i open the apytmenu.js.. I dont know
how to open it.. there is written "Place these files to any folder of your
html project and add a reference to the files within your HTML page." But on
Publisher there is only one file? wtf? Here is the whole explanation:
--------------
Apycom Tree Menu comes with several .js files that can be found in the js/
subdirectory of a trial package:

apytmenu.js menu engine
apytmenu_add.js additional module for floatable/movable menu features
apytmenu_ss.js additional module for saving menu state
apytmenu_dyn.js additional module with JavaScript API to change the menu
"on-the-fly"
data.js data file with menu parameters, styles, items.
This file can be renamed.

Place these files to any folder of your html project and add a reference to
the files within your HTML page.

For example, this folder will be menudir/.

Paste the following code within html page (into <head> tag):

<!-- Apycom's DHTML Tree Menu -->
<noscript><a href=http://dhtml-menu.com/>DHTML Tree Menu by
Apycom.com</a></noscript>
<script type="text/javascript" language="JavaScript1.2"
src="menudir/apytmenu.js"></script>
<!-- (c) 2005, Apycom Software, apycom.com -->
-----------------------------------------------------------------------
DavidF said:
Try it? ...and if it doesn't work, try another one. There are hundreds of
free scripts out there.

DavidF

Toddola said:
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?
 
J

JoAnn Paules [MVP]

No because I don't use Publisher to create website. Silly me - I use
FrontPage.

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




Toddola said:
well, not me who did not get the point:) I had to show you... Can you help
me?

JoAnn Paules said:
Ohhhhhhhhhh, *menu*. I was honestly clueless about that word.

(And I really could have gone thru life happily without having visited
that
site.)

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




Toddola said:
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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top