Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
shyrocker #1
dropdown menu
hi everyone, im s student doing an interactive cv as project and would like
to have a dropdown menu in the project but all the help files dont explain them
properly and i cant find any tutorials on them. all i need is a menu of 3 links
to other parts of the score ubt im completly stumped. any help would be a great
help
cheers
shyrocker Guest
-
List/Menu Form hides dropdown Menu
http://2006.maximizer.com/about/customers/index.html when you scroll over 'company' in the main navbar at the top of the page, you'll see what... -
another dropdown menu post
hello to the one who took the efford to read this. I created a dropdown in DW MX, and it works fine everywhere except, IE 5.0 on mac, it drives... -
Dropdown/Pulldown menu
Could anyone please tell how to make dropdown/pulldown menu using Flex 1.5 thanx vijai -
Dropdown Menu (Noob)
I have two tables linked together by an ID field. The first table contains reviewers. The second table contains reviews. I also have a drop down... -
Horizontal DropDown Menu
OK, so I am definitely not a guru in writing DHTML JavaScript, and my boss likes the horizontal dropdown menu on the top navigation of... -
JB #2
Re: dropdown menu
There is no predefined function for this, other then making a program
menu bar in a projector.
There is a simple drop down selector behavior in the Library window.
JB Guest
-
iso96 #3
Re: dropdown menu
1. create a text field.
2. copy and paste the below code into a behaviour
3. put the behaviour into the text field created in 1.
4. play movie, place mouse over text field then click. you should see - plate,
cylider etc
5. in the code change to what you want to appear in the list : set droplist
= [ "??????? " , "????????", ] you can enter as many lines as you want
Hope it helps
on mouseDown
set me = the castNum of sprite (the clickOn)
-- Prep the dropdown list:
set dropList = ["Plate Circular", "Plate Irregular", "Cylinder Straight" ]
set temp = EMPTY
repeat with x in dropList
put x & RETURN after temp
end repeat
-- Remove the trailing "RETURN":
delete char (length (temp)) of temp
put temp into field me
-- Enter main repeat loop:
set oldLine = 0
repeat while the stilldown
if the mouseCast = me then set newLine = the mouseLine
else set newLine = 0
if oldLine <> newLine then
if newLine then hilite line (newLine) of field me
else put temp into field me
set oldLine = newLine
end if
end repeat
-- Clean up and close out:
if newLine then put (line (newLine) of field me) into field me
else put "Select from list" into field me
end mouseDown
iso96 Guest
-
-
Joker7 #5
dropdown menu
[url]http://www.dynamicdrive.com/dynamicindex1/dropmenuindex.htm[/url]
The above dropdown menu I have been trying to make it work with a frameless
window ;ie to open a popup when the link is clicked,so the new link is in a
frameless window.
But can not get it to work has anyone an idea of how to make it work.
Thanks
Chris
Joker7 Guest
-
Murray *TMM* #6
Re: dropdown menu
Don't use menus like that. They embed all your links in javascript and will
render your site non-spiderable unless you also have the same links in plain
HTML somewhere.
Learn how to do these menus the right way - use the methods taught and the
free extensions here -
[url]http://www.projectseven.com/tutorials/navigation/snapmenus/index.htm[/url]
or
[url]http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm[/url]
and here's an example you can analyze -
[url]http://www.projectseven.com/tutorials/autolayers/[/url]
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"Joker7" <sat_ring@hotmails.com> wrote in message
news:2rnqufF1bi2s2U1@uni-berlin.de...> [url]http://www.dynamicdrive.com/dynamicindex1/dropmenuindex.htm[/url]
>
> The above dropdown menu I have been trying to make it work with a
> frameless
> window ;ie to open a popup when the link is clicked,so the new link is in
> a
> frameless window.
>
> But can not get it to work has anyone an idea of how to make it work.
>
> Thanks
> Chris
>
>
Murray *TMM* Guest
-
Joker7 #7
Re: dropdown menu
"Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
news:cj6e6l$gau$1@forums.macromedia.com...
: Don't use menus like that. They embed all your links in javascript and
will
: render your site non-spiderable unless you also have the same links in
plain
: HTML somewhere.
:
: Learn how to do these menus the right way - use the methods taught and the
: free extensions here -
<quote>
The PVII extensions used in this tutorial work in Dreamweaver versions 4.01
through MX 2004. However, because of severe limitations in the Dreamweaver4
rendering engine, Dreamweaver MX or higher is required to complete this
tutorial.
</quote>
Has I only have Dreamweaver4 I can not use this :-(
I don't have a problem with menus just need away to open a frameless window
from it .
Thanks
Chris
Joker7 Guest
-
Murray *TMM* #8
Re: dropdown menu
You can use the methods with ordinary show-hide layers and they will work
fine. All that means is that you cannot use their extensions with DW4, but
the methods are universal.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"Joker7" <sat_ring@hotmails.com> wrote in message
news:2ro0fcF1csknvU1@uni-berlin.de...>
> "Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
> news:cj6e6l$gau$1@forums.macromedia.com...
> : Don't use menus like that. They embed all your links in javascript and
> will
> : render your site non-spiderable unless you also have the same links in
> plain
> : HTML somewhere.
> :
> : Learn how to do these menus the right way - use the methods taught and
> the
> : free extensions here -
>
> <quote>
> The PVII extensions used in this tutorial work in Dreamweaver versions
> 4.01
> through MX 2004. However, because of severe limitations in the
> Dreamweaver4
> rendering engine, Dreamweaver MX or higher is required to complete this
> tutorial.
> </quote>
> Has I only have Dreamweaver4 I can not use this :-(
> I don't have a problem with menus just need away to open a frameless
> window
> from it .
>
> Thanks
> Chris
>
>
Murray *TMM* Guest
-
sna.xs #9
Dropdown menu
Hello, ive just made my buttons in photoshop, light gray, and some shadows..
now does buttons i want to use them as rollover buttons, but with the same
colors and properties as the buttons.. so it matches my buttones.. ive already
got a dropdown menu, but the background is white.. so any tutorials or examples
o how to do this?
[Q]Thanks[/Q]
sna.xs Guest
-
Murray *ACE* #10
Re: Dropdown menu
What popup did you use?
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"sna.xs" <webforumsuser@macromedia.com> wrote in message
news:e74it3$mt8$1@forums.macromedia.com...> Hello, ive just made my buttons in photoshop, light gray, and some
> shadows..
> now does buttons i want to use them as rollover buttons, but with the
> same
> colors and properties as the buttons.. so it matches my buttones.. ive
> already
> got a dropdown menu, but the background is white.. so any tutorials or
> examples
> o how to do this?
> [Q]Thanks[/Q]
>
Murray *ACE* Guest



Reply With Quote

