symbols and templates

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default symbols and templates

    I created buttons symbols using up, over, down and over while down, in
    Fireworks to use as a menu. I also am using a template in Dreamweaver that
    utilizes the Fireworks menu. When creating the various pages on my site by
    applying the template, the states, down and over while down obviously don't
    appear because as you click on the buttons they envoke a "new" page with a
    refreshed menu. Hence only showing the up and over state.
    Is there a way to use buttons with all the staut also use them as a template?
    What is the best way to accomplish this?
    Help! Thanks.
    Dave

    dkmanley Guest

  2. Similar Questions and Discussions

    1. Libraries, Templates, Nested Templates, Repeat Regions,
      Hi I have eight categories to display in my site navigation. Each category has at least one (some have two) levels of subcategories. For example...
    2. Issues with templates and nested templates
      Hello, I hope there is someone out there that can help me. I created a website using 1 main template and several nested templates. Everything...
    3. Dreameaver Templates Applide to Templates?
      Hello, I was updating pages using templates today and I found that I had to create several templates to cover different styles of pages. There...
    4. are there symbols in ID?
      I have to reuse a shape many times in my document and I would like to have the option of changing just one of the copies and have the rest update...
    5. Symbols
      I am interested in creating some personal palettes of symbols. I know how to make a symbol in an open document, however, I have not been able to any...
  3. #2

    Default Re: symbols and templates

    When you say "Fireworks menu" do you mean "Fireworks pop-up menu"?

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

    "dkmanley" <webforumsuser@macromedia.com> wrote in message
    news:dg74nh$pj2$1@forums.macromedia.com...
    >I created buttons symbols using up, over, down and over while down, in
    > Fireworks to use as a menu. I also am using a template in Dreamweaver that
    > utilizes the Fireworks menu. When creating the various pages on my site by
    > applying the template, the states, down and over while down obviously
    > don't
    > appear because as you click on the buttons they envoke a "new" page with a
    > refreshed menu. Hence only showing the up and over state.
    > Is there a way to use buttons with all the staut also use them as a
    > template?
    > What is the best way to accomplish this?
    > Help! Thanks.
    > Dave
    >

    Murray *TMM* Guest

  4. #3

    Default Re: symbols and templates

    I did not use the dedicated create (popup) menu function. I created button
    symbols with links and combined them with a graphic in Fireworks that i then
    pulled into Dreamweaver. I then referenced this file and created a .dwt that I
    then use for all the pages on the site.
    [url]www.bsa7153.com[/url]
    thanks,
    DM


    dkmanley Guest

  5. #4

    Default Re: symbols and templates

    Ahh - yes. Silly me. I see that you really specified that in your original
    post.

    The nav bar function that you have used is right long in the tooth. If it
    were me, I'd rip it out and just use simple image swaps in DW. Then, to
    make the selected button stay down you could use this method in your
    template page -

    Put this in script tags in the editable region called "head" in the template
    document, and in each child page -

    function P7_downImage() {
    var g7="<imagename>"
    var g7url="<pathname>"
    if ((g7=MM_findObj(g7))!=null) {g7.src=g7url;}
    }

    and put this in the Template's <body> tag

    onLoad="P7_downImage()", e.g.,

    <body .... onLoad="P7_downImage()">

    Then on each child page you would need to make two edits:

    Set g7 to the *name* of the button (not the file name but the HTML name -
    e.g., "productsbutt"), and g7url to the pathname to the button (e.g.,
    "images/nav/button3.gif"), and bada bing, bada boom!

    There is an excellent tutorial here -

    [url]http://www.projectseven.com/support/answers.asp?id=126[/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
    ==================

    "dkmanley" <webforumsuser@macromedia.com> wrote in message
    news:dg77b2$a0$1@forums.macromedia.com...
    >I did not use the dedicated create (popup) menu function. I created button
    > symbols with links and combined them with a graphic in Fireworks that i
    > then
    > pulled into Dreamweaver. I then referenced this file and created a .dwt
    > that I
    > then use for all the pages on the site.
    > [url]www.bsa7153.com[/url]
    > thanks,
    > DM
    >
    >

    Murray *TMM* Guest

  6. #5

    Default Re: symbols and templates

    Go to

    [url]http://www.bsa7153.com/troop/troop_Main.html[/url]

    for the example
    dkmanley Guest

  7. #6

    Default Re: symbols and templates

    Wow, great answer. The problem is i am not nearly as fluent in HTML
    coding/scripting as I am in graphics creation/using the tools in
    Fireworks/Dreamweaver. I'll check out the tuts and give you suggestion a try
    though. Thanks!

    dkmanley Guest

  8. #7

    Default Re: symbols and templates

    By the way, when you put that function in the head region, make sure you
    wrap it in script tags, e.g.,

    <script type="text/javascript">
    <!--
    ....the function I listed...
    // -->
    </script>

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

    "dkmanley" <webforumsuser@macromedia.com> wrote in message
    news:dg783f$1g8$1@forums.macromedia.com...
    > Wow, great answer. The problem is i am not nearly as fluent in HTML
    > coding/scripting as I am in graphics creation/using the tools in
    > Fireworks/Dreamweaver. I'll check out the tuts and give you suggestion a
    > try
    > though. Thanks!
    >

    Murray *TMM* Guest

  9. #8

    Default Re: symbols and templates

    What about creating a more elaborate menu and using server side includes, site wide?
    dkmanley Guest

  10. #9

    Default Re: symbols and templates

    That's an even better way, of course. And making your menu rollovers into
    CSS rollovers is the best of all.

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

    "dkmanley" <webforumsuser@macromedia.com> wrote in message
    news:dg7933$30d$1@forums.macromedia.com...
    > What about creating a more elaborate menu and using server side includes,
    > site wide?

    Murray *TMM* Guest

  11. #10

    Default Re: symbols and templates

    I have created some pages using the MM CSS template. I love the menu above. Isn't this a CSS rollover? Is there a tutorial or good tutorial or reference site for CSS rollovers?
    dkmanley Guest

  12. #11

    Default Re: symbols and templates

    Google CSS rollovers. You'll find more than you can read. Or go here -

    [url]http://www.tjkdesign.com/articles/dropdown/default.asp[/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
    ==================

    "dkmanley" <webforumsuser@macromedia.com> wrote in message
    news:dg7a1u$4fo$1@forums.macromedia.com...
    >I have created some pages using the MM CSS template. I love the menu above.
    >Isn't this a CSS rollover? Is there a tutorial or good tutorial or
    >reference site for CSS rollovers?

    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