Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default How is it done"

    :confused;
    I will be creating a new site for my office using Dreamweaver MX and Fireworks
    MX - We also have Flash MX. I have used the Dreamweaver quite a lot and have
    started using Fireworks (not really proficient yet) but have not used Flash.
    My boss likes the way the MM site's menu bar at top shows the next menu when
    moused-over. Can someone let me know what program was used to develop this?
    Any 'tips' will be appreciated.

    DarleneW Guest

  2. Similar Questions and Discussions

    1. Proj cannot run on LCDS 2.6 ES due to "Unable to resolveresource bundle "datamanagement" for locale "en_US"
      hi, all, We have developped an application on Flex Build 3 (run successfully), but failed when we try to deploy it on Tomcat with LCDS 2.5 ES...
    2. CFINPUT type="radio" w/ "value" requires "label"
      On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'...
    3. #26162 [NEW]: $a="0abcdefg";if ($a==0) echo "OK"; result is "OK" ?!
      From: zhuminglun at yahoo dot com dot cn Operating system: linux/win2000 PHP version: 4.3.4 PHP Bug Type: *General Issues...
    4. dr("field").toString returns "400.0000" instead of "400"
      I have just installed VS.NET 2003 on my computer. I have a project that I have been developing on VS.NET 2002. I haven't upgraded this project to...
    5. "Start" "Program" "Menu" list is empty
      For what ever reason my list of installed programs in my "Start" "Programs" menu is empty. Anyone know how to restore the list. Thanks for your...
  3. #2

    Default Re: How is it done"

    On many pages, those menus are Flash. However, having Flash as your main
    navigation element is (in my opinion) a mistake UNLESS you also provide some
    duplicate (non-Flash, i.e., plain HTML) navigation links somewhere.
    Otherwise, those who do not have Flash Player installed will not be able to
    navigate your site AT ALL.

    On other pages, those menus are ordinary HTML text with a very funky system
    for displaying the submenus. You can see them up close and personal (in
    DMX2004) by using FILE | New > Page Design (CSS), and selecting anything
    HALO. Having done that, the first thing you should do is to rip the menu
    system out, and rebuild it with Show/Hide Layer - a simple job. Then you
    will be golden.

    You can read more about the Halo menus here -

    [url]http://www.macromedia.com/devnet/mx/dreamweaver/articles/dissecting_halo.html[/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
    ==================

    "DarleneW" <webforumsuser@macromedia.com> wrote in message
    news:d4tm9g$pvp$1@forums.macromedia.com...
    > :confused;
    > I will be creating a new site for my office using Dreamweaver MX and
    > Fireworks
    > MX - We also have Flash MX. I have used the Dreamweaver quite a lot and
    > have
    > started using Fireworks (not really proficient yet) but have not used
    > Flash.
    > My boss likes the way the MM site's menu bar at top shows the next menu
    > when
    > moused-over. Can someone let me know what program was used to develop
    > this?
    > Any 'tips' will be appreciated.
    >

    Murray *TMM* Guest

  4. #3

    Default Re: How is it done"

    Thanks for that info - any other suggestions to do the following:

    We have approximately 450 -500 pages in our existing site. The new site needs
    to have interactive 'menus' - one on the main page(s) that will be on every
    page in the site. and then sub-menus for each section (and possibly even a
    sub-sub-menu on some sections. I have tried pop-up menus - they do not seem to
    work with either 'Library' or Templates.

    DarleneW Guest

  5. #4

    Default Re: How is it done"

    > I have tried pop-up menus - they do not seem to
    > work with either 'Library' or Templates.
    Unfortunately, they work fine with both Library items and Templates, but you
    do have to understand how to make them do so. That's not to say it's black
    magic, but it does require an understanding of how to manage the support
    javascript.

    If it were me (heck it IS me - I am just finishing a site like that), I
    would use server-side includes for the section specific menus, and then a
    series of Template logic tests to determine which one to use - I have done
    just that in this markup (this is just a fragment of the entire logic set) -

    <!-- TemplateBeginMultipleIf --> <!-- TemplateBeginIfClause
    cond="(id=='products') && (productSubsection=='none')" -->
    <!--#include virtual="/newsite/includes/prodproductmenu.html" -->
    <!-- TemplateEndIfClause --> <!-- TemplateBeginIfClause
    cond="(id=='products') && (productSubsection=='dummy')" -->
    <!--#include virtual="/newsite/includes/proddummymenu.html" -->
    <!-- TemplateEndIfClause --> <!-- TemplateBeginIfClause
    cond="(id=='products') && (productSubsection=='practice')" -->
    <!--#include virtual="/newsite/includes/prodpracticemenu.html" -->
    <!-- TemplateEndIfClause --> <!-- TemplateBeginIfClause
    cond="(id=='products') && (productSubsection=='training')" -->
    <!--#include virtual="/newsite/includes/prodtrainingmenu.html" -->
    <!-- TemplateEndIfClause --> <!-- TemplateBeginIfClause
    cond="(id=='products') && (productSubsection=='amkor')" -->
    <!--#include virtual="/newsite/includes/amkormenu.html" -->

    In this case, each child page is given several parameter values that define
    which section it belongs to. Based on the values of those parameters, the
    proper include is selected for the menus.

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

    "DarleneW" <webforumsuser@macromedia.com> wrote in message
    news:d4tq0n$26c$1@forums.macromedia.com...
    > Thanks for that info - any other suggestions to do the following:
    >
    > We have approximately 450 -500 pages in our existing site. The new site
    > needs
    > to have interactive 'menus' - one on the main page(s) that will be on
    > every
    > page in the site. and then sub-menus for each section (and possibly even
    > a
    > sub-sub-menu on some sections. I have tried pop-up menus - they do not
    > seem to
    > work with either 'Library' or Templates.
    >

    Murray *TMM* Guest

  6. #5

    Default Re: How is it done"

    WoW! Guess I've got some studying to do - I've not had the opportunity to use
    Server Side Includes and some other issues too. I downloaded the MX2004 - have
    not installed yet -- Since I'm already running DW MX (I think 2000) will the
    2004 overwrite my version? I don't want to cause myself problems. When I
    changed from DW4 to MX the MX 'took over' - which was okay since I was going to
    use it anyway -- but the download is only a trial basis. That makes me a
    little nervous. PS - You have been very helpful. Can you direct me to the
    website that you mention in your last message?

    DarleneW Guest

  7. #6

    Default Re: How is it done"

    You mean the one from which that markup snippet was taken? It's not quite
    ready yet....

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

    "DarleneW" <webforumsuser@macromedia.com> wrote in message
    news:d4u6og$jdj$1@forums.macromedia.com...
    > WoW! Guess I've got some studying to do - I've not had the opportunity to
    > use
    > Server Side Includes and some other issues too. I downloaded the MX2004 -
    > have
    > not installed yet -- Since I'm already running DW MX (I think 2000) will
    > the
    > 2004 overwrite my version? I don't want to cause myself problems. When I
    > changed from DW4 to MX the MX 'took over' - which was okay since I was
    > going to
    > use it anyway -- but the download is only a trial basis. That makes me a
    > little nervous. PS - You have been very helpful. Can you direct me to
    > the
    > website that you mention in your last message?
    >

    Murray *TMM* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139