Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

want to make drop down menu in dreamweaver

Status
Not open for further replies.

symbols

Technical User
Dec 13, 2000
52
CA
I'd like to make a mouseClick drop down menu in dreamweaver but still be able to take advantage the feature in dreamweaver which control open a new window and configure the window size, visibility of tool bar, menu... etc. I have tried Flash but that involved too much additional work to configure a dropdown button with that feature. I have heard Firework can do that but not sure if it can do exactly what I want. Anyone has any idea about this or how can I do it in Firework?

tks a million
 
symbols --
The problem with creating a menu in fireworks is that when you wanna add more links or add more options you have to reconfigure the coordinates, and that can be a pain...
As for DW, their are alot cool extensions for creating menu's, including pop-ups and drop-down at the macromedia's site (and their free also)...
This a sample coding from one of the extensions, I also use this on my site ( -- go to the 'Site Picks' link to see it in work)


<html>
<head>
<title>Untitled Document</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
<!-- // Collapsible Menu 1.0-->
<elsberndmenu id=&quot;elsbernd&quot; name=&quot;elsbernd&quot;>
<style type=&quot;text/css&quot;>
<!--Body { background: #ffffff }
a:link { color: #000066 }
a:visited { color: #666666 }
a:active { color: #000033 }
a:hover { color: #ff0000 }
P {margin-top : 0px; }
A {text-decoration: underline;
font-family: Verdana, Arial, Helvetica, sans-serif;
color: ##ff0000;
line-height: 10pt;
} .mainsection {
font-size: 10pt;
font-weight: bold;
}.subsection {
font-size: 9pt;
font-weight: normal;
margin-left: 15px;
}.folding {
cursor: hand
}
-->
</style>
<script language=&quot;javascript&quot;>
<!--
//Expands and contracts the menu (if in Internet Explorer 4.0 or higher)
function change() {
if(!document.all)
return
if (event.srcElement.className==&quot;expandable&quot;){
var x=event.srcElement.parentElement
if (x.all[2].style.display==&quot;none&quot;){
x.all[2].style.display='';
}
else {
x.all[2].style.display=&quot;none&quot;
}
}
if (event.srcElement.className==&quot;expandable2&quot;){
var x=event.srcElement.parentElement
if (x.all[2].style.display==&quot;none&quot;){
x.all[2].style.display='';
}
else {
x.all[2].style.display=&quot;none&quot;
}
}
}
document.onclick=change
//-->
</SCRIPT>
</head>

<body bgcolor=&quot;#FFFFFF&quot; text=&quot;#000000&quot;>
<table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;1&quot; bordercolordark=#686e44&quot; rules=&quot;rows&quot;>
<tr>
<td class=&quot;mainsection&quot;> <a class=&quot;expandable&quot; href=&quot;#&quot;>MY LINKS</a><br>
<p class=&quot;subsection&quot; style=&quot;display:none&quot;>
<a href=&quot; target=&quot;_blank&quot;>Hotmail</a> <br>
<a href=&quot; target=&quot;_blank&quot;>Yahoo</a> <br>
<a href=&quot; target=&quot;_blank&quot;>Tek-Tips</a> <br>
<a href=&quot; target=&quot;_blank&quot;>GUJUm0deL's Plaza</a>
</p>
</td>
</tr>
</table>
</body>
</html>


Although this a great menu, it ONLY works for IE and not netscrap...ok?? But at macromedia's site they have others tha work for both NS and IE...
Hope I helped a little...
I have not failed; I merely found 100,000 different ways of not succeding...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top