Help with Layer Positioning and TimeLine

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

  1. #1

    Default Help with Layer Positioning and TimeLine

    Hello all, here is my situation:
    I am trying to do a simple Layer animation for my home page... 4 Layers
    startoff at the right of my webpage(table) and end up at the left handside, as
    an example.
    My problem is I have a main 1x1 table that is centered, and that works fine to
    center all the text and images that are within it, but the layers that I tried
    placing within it stay absolute to the screen and not relative to the table....
    and if I try to specify relative position in the first place for any of the
    layers that Layer disapears from my Layer panel and I cannot timeline with
    it???!!!
    This Started out as a lame trial to avoid making a flash movie for this
    animation.. but right now I am more interested in knowing the possibilities and
    limitations of using Layers and Timelines in Dreamweaver.... Any help or
    comments are most welcome.

    Layth

    laythss Guest

  2. Similar Questions and Discussions

    1. timeline layer within another layer
      I try to work with css divs instead of table cells. I make a "wrapper" div that centers all my content in the browser window. Within that div I want...
    2. Layer positioning
      I'm building a DHTML menu system but I am having the problem of positioning the layers on different page widths. I know the problem is that I am...
    3. FF vs IE Layer Positioning Problems
      Problem page: www.boxnetworks.net/pos/index.htm I have encountered yet another rendering disparity between IE and FF. In IE there are gaps...
    4. Please Help with multiple layer positioning
      I really need some help. I built a site using multiple layers, and when I finished, realized that the content was way too far to the right side of...
    5. Layer Positioning Question
      I am using DWMX and would like a layer with an image in it to anchor itself to the bottom-right hand corner of the browser window at any size. If...
  3. #2

    Default Re: Help with Layer Positioning and TimeLine

    If you go here - [url]http://www.great-web-sights.com/g_layerlaws.asp[/url], and read
    through the layer laws, you'll see that you have broken at least one by
    putting your layers into a table. Being absolutely positioned, the layers
    do not rely on the table for their location on the screen. There are ways
    to do this (easily) if you understand the whole concept of CSS positioning.
    You can try the following things -

    * After setting your timeline the way you want it, MANUALLY change the
    position attribute of each layer from "absolute" to "relative". The
    timeline will still work, but you have changed the entire paradigm for
    positioning on the <div> tags by making that change. Having relatively
    positioned elements withing a table seems to work pretty well.

    or

    * After setting your timeline the way you want it, MANUALLY move the code
    for the layers OUT OF THE TABLE, and place it back on the page, immediately
    above the </body> tag. Then follow these directions -

    Change this -

    </head>

    to this -

    <style type="text/css">
    <!--
    body { text-align:center; color:#CCC; }
    #wrapper { text-align:left; width:720px; margin:0 auto;position:relative; }
    -->
    </style>
    </head>

    change this -

    <body ...>

    to this -

    <body ...>
    <div id="wrapper">

    and this -

    </body>

    to this -

    </div><!-- /wrapper -->
    </body>

    and see if that helps.


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


    "laythss" <webforumsuser@macromedia.com> wrote in message
    news:e6p832$sht$1@forums.macromedia.com...
    > Hello all, here is my situation:
    > I am trying to do a simple Layer animation for my home page... 4 Layers
    > startoff at the right of my webpage(table) and end up at the left
    > handside, as
    > an example.
    > My problem is I have a main 1x1 table that is centered, and that works
    > fine to
    > center all the text and images that are within it, but the layers that I
    > tried
    > placing within it stay absolute to the screen and not relative to the
    > table....
    > and if I try to specify relative position in the first place for any of
    > the
    > layers that Layer disapears from my Layer panel and I cannot timeline with
    > it???!!!
    > This Started out as a lame trial to avoid making a flash movie for this
    > animation.. but right now I am more interested in knowing the
    > possibilities and
    > limitations of using Layers and Timelines in Dreamweaver.... Any help or
    > comments are most welcome.
    >
    > Layth
    >

    Murray *ACE* Guest

  4. #3

    Default Re: Help with Layer Positioning and TimeLine

    I have requested that the thread be removed, Andrew. That's the best we can
    do, I'm afraid. Thing is, it can only be removed from the webforums, and
    not from the local computers of those who have already downloaded the
    message. Also, if Google Groups synched already, then it's like being
    carved in stone....

    You can see if that's the case by searching here -

    [url]http://groups.google.com/advanced_group_search?q=+group:macromedia.dreamwea ver[/url]


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


    "Murray *ACE*" <forums@HAHAgreat-web-sights.com> wrote in message
    news:e6pceb$4t6$1@forums.macromedia.com...
    > If you go here - [url]http://www.great-web-sights.com/g_layerlaws.asp[/url], and read
    > through the layer laws, you'll see that you have broken at least one by
    > putting your layers into a table. Being absolutely positioned, the layers
    > do not rely on the table for their location on the screen. There are ways
    > to do this (easily) if you understand the whole concept of CSS
    > positioning. You can try the following things -
    >
    > * After setting your timeline the way you want it, MANUALLY change the
    > position attribute of each layer from "absolute" to "relative". The
    > timeline will still work, but you have changed the entire paradigm for
    > positioning on the <div> tags by making that change. Having relatively
    > positioned elements withing a table seems to work pretty well.
    >
    > or
    >
    > * After setting your timeline the way you want it, MANUALLY move the code
    > for the layers OUT OF THE TABLE, and place it back on the page,
    > immediately above the </body> tag. Then follow these directions -
    >
    > Change this -
    >
    > </head>
    >
    > to this -
    >
    > <style type="text/css">
    > <!--
    > body { text-align:center; color:#CCC; }
    > #wrapper { text-align:left; width:720px; margin:0
    > auto;position:relative; }
    > -->
    > </style>
    > </head>
    >
    > change this -
    >
    > <body ...>
    >
    > to this -
    >
    > <body ...>
    > <div id="wrapper">
    >
    > and this -
    >
    > </body>
    >
    > to this -
    >
    > </div><!-- /wrapper -->
    > </body>
    >
    > and see if that helps.
    >
    >
    > --
    > 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
    > ==================
    >
    >
    > "laythss" <webforumsuser@macromedia.com> wrote in message
    > news:e6p832$sht$1@forums.macromedia.com...
    >> Hello all, here is my situation:
    >> I am trying to do a simple Layer animation for my home page... 4 Layers
    >> startoff at the right of my webpage(table) and end up at the left
    >> handside, as
    >> an example.
    >> My problem is I have a main 1x1 table that is centered, and that works
    >> fine to
    >> center all the text and images that are within it, but the layers that I
    >> tried
    >> placing within it stay absolute to the screen and not relative to the
    >> table....
    >> and if I try to specify relative position in the first place for any of
    >> the
    >> layers that Layer disapears from my Layer panel and I cannot timeline
    >> with
    >> it???!!!
    >> This Started out as a lame trial to avoid making a flash movie for this
    >> animation.. but right now I am more interested in knowing the
    >> possibilities and
    >> limitations of using Layers and Timelines in Dreamweaver.... Any help or
    >> comments are most welcome.
    >>
    >> Layth
    >>
    >
    >

    Murray *ACE* 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