HighDots Forums  

can i make a jump/menu from a word?

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss can i make a jump/menu from a word? in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
LBJ21
 
Posts: n/a

Default can i make a jump/menu from a word? - 08-06-2004 , 02:29 PM






i want to have a word that when you put the cusor on it a menu drops down and you have options to click on
i have seen it on other sites
thanks in advance

Reply With Quote
  #2  
Old   
DiMa *TMM*
 
Posts: n/a

Default Re: can i make a jump/menu from a word? - 08-06-2004 , 02:50 PM






LBJ21 <webforumsuser (AT) macromedia (DOT) com> wrote:
Quote:
i want to have a word that when you put the cusor on it a menu drops
down and you have options to click on i have seen it on other sites
thanks in advance
When you're using a word, image, etc to trigger a menu like this, it is no
longer called a "jump menu." A jump menu is a form element. The vocabulary
for this business can be confusing, eh? So we call it a popup or dropdown
or slideout or some such things.

There are many tutorials on this, but my favorite is here:

http://www.projectseven.com/tutorials/navigation/snapmenus/index.htm

Or, you can simply do this:

1) Make a null link out of your text:

<a href="javascript:;">I'm a trigger!</a>

2) Create a "layer" in dreamweaver (positioned div), give it an id and make
the visibility hidden. Position it under you trigger. Put your links in
there:

<div id="ddlayer" style="position:absolute; width:200px; z-index:1; left:
0px; top: 0px; visibility: hidden;">
<p><a href="link1.html>link 1</a></p>
<p><a href="link1.html>link 1</a></p>
</div>

3) Style the links and the p's (or whatever container you choose - li, p,
div, table/td, etc).

4) Select the null link and use MM's Show-Hide layers to first show it
onMouseOver, the another instance to hide it onMouseOut:

<a href="javascript:;" onMouseOver="MM_showHideLayers('ddlayer','','show' )"
onMouseOut="MM_showHideLayers('ddlayer','','hide') ">I'm a trigger!</</a>'

--
--
DiMa
Team Macromedia Member for Dreamweaver MX
--------------------
WEB FORUM USERS: Please log on to the Newsgroup for quicker replies to
your posts: news://forums.macromedia.com/macromedia.dreamweaver
For Answers, check here first:
http://groups.google.com/advanced_group_search?q=+group:macromedia.dreamwea ver
http://www.macromedia.com/support/dreamweaver/technotes.html
http://www.projectseven.com/faqbase
http://dwfaq.com

http://www.macromedia.com/support/forums/etiquette.htm

www dot flyingtigerwebdesign dot com




Reply With Quote
  #3  
Old   
LBJ21
 
Posts: n/a

Default Re: can i make a jump/menu from a word? - 08-06-2004 , 03:52 PM



what is a null link?
and how do i do it

Reply With Quote
  #4  
Old   
DiMa *TMM*
 
Posts: n/a

Default Re: can i make a jump/menu from a word? - 08-06-2004 , 03:56 PM



LBJ21 <webforumsuser (AT) macromedia (DOT) com> wrote:
Quote:
what is a null link?
and how do i do it
A null link is a link that doesn't go anywhere and is therefore "null."

I just showed you how to do it: javascipt:;
That's:

javascript colon semi-colon

Select the text you want to trigger the menu and type that into the link
field in the P.I.

--
--
DiMa
Team Macromedia Member for Dreamweaver MX
--------------------
WEB FORUM USERS: Please log on to the Newsgroup for quicker replies to
your posts: news://forums.macromedia.com/macromedia.dreamweaver
For Answers, check here first:
http://groups.google.com/advanced_group_search?q=+group:macromedia.dreamwea ver
http://www.macromedia.com/support/dreamweaver/technotes.html
http://www.projectseven.com/faqbase
http://dwfaq.com

http://www.macromedia.com/support/forums/etiquette.htm

www dot flyingtigerwebdesign dot com




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.