Set Text of Layer Question

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

  1. #1

    Default Set Text of Layer Question

    A Very Easy Question.

    I attempt to "set text to layer." I click on the plus sign on the behaviors
    window, and set text to layer. A cute little box pops up. In the Layer drop
    down box is a host of "unnamed <span>"s. None of my divs are listed. In the
    body of this page are Plenty of ID'd divs. I have named layers out the wazoo.

    Why Are My Named Layers Not Listed In the Layer Drop Down Box?

    iiinsomniiiac Guest

  2. Similar Questions and Discussions

    1. layer positiong question....
      sory but my english isnt perfect.. im interested how to make layer position based on top edge of table, but not of top edge of page.... thx
    2. Text in upper layer is not same.
      (Problem) My upper layer's paragraph are not same blue color. (Situatuin) Since my bottom layer is a gray gradient fill, the blue colors of upper...
    3. DRAG LAYER TEXT
      need to drag a layered TEXT to another image but need to be in the same location placement as the original - how do i accomplish this?
    4. 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: Set Text of Layer Question

    > I have named layers out the wazoo.

    A layer is an absolutely positioned element. You may have plenty of ID's on
    those divs, but if none of them are absolutely positioned, you have no
    layers.

    Also, why do you have so many <span> tags?

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


    "iiinsomniiiac" <webforumsuser@macromedia.com> wrote in message
    news:eeetdn$itq$1@forums.macromedia.com...
    >A Very Easy Question.
    >
    > I attempt to "set text to layer." I click on the plus sign on the
    > behaviors
    > window, and set text to layer. A cute little box pops up. In the Layer
    > drop
    > down box is a host of "unnamed <span>"s. None of my divs are listed. In
    > the
    > body of this page are Plenty of ID'd divs. I have named layers out the
    > wazoo.
    >
    > Why Are My Named Layers Not Listed In the Layer Drop Down Box?
    >

    Murray *ACE* Guest

  4. #3

    Default Re: Set Text of Layer Question

    Thanks for your response, ACE.

    I'm using an accordion widget as seen @ [url]http://moofx.mad4milk.net/[/url], which
    doesn't work well with absolute-positioned divs. As a self-professed newie, is
    there a workaround in this situation? Here's what I actually am looking for:

    An onclick event that simply loads an html file into a particular NON-ABSOLUTE
    div - or - better yet - a table cell.

    Does Dreamweaver 8 have support for this - or am I going to have to hand-code
    it in using asp or ajax?

    Thanks in advance for your help.

    iiinsomniiiac Guest

  5. #4

    Default Re: Set Text of Layer Question

    > An onclick event that simply loads an html file into a particular
    > NON-ABSOLUTE
    > div - or - better yet - a table cell.
    You won't find it.
    > Does Dreamweaver 8 have support for this - or am I going to have to
    > hand-code
    > it in using asp or ajax?
    ASP is server side script. To use it you would have to round-trip the page
    to the server. Is that what you want?

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


    "iiinsomniiiac" <webforumsuser@macromedia.com> wrote in message
    news:eekpot$apm$1@forums.macromedia.com...
    > Thanks for your response, ACE.
    >
    > I'm using an accordion widget as seen @ [url]http://moofx.mad4milk.net/[/url], which
    > doesn't work well with absolute-positioned divs. As a self-professed
    > newie, is
    > there a workaround in this situation? Here's what I actually am looking
    > for:
    >
    > An onclick event that simply loads an html file into a particular
    > NON-ABSOLUTE
    > div - or - better yet - a table cell.
    >
    > Does Dreamweaver 8 have support for this - or am I going to have to
    > hand-code
    > it in using asp or ajax?
    >
    > Thanks in advance for your help.
    >

    Murray *ACE* Guest

  6. #5

    Default Re: Set Text of Layer Question

    Well, my apologies for not knowing exactly what you mean by "round-trip"ing -
    but - I suppose I'm simply looking for the easiest way to do just what I
    explained: an onclick event that loads an html file into a div or td. I've
    seen it done many times over in rss readers, although when I look at the page
    source I secretly hope that it's not as complicated as it appears.

    With the accordion widget I'm using as the main visual feature of the site I'm
    creating, I find it unnacceptable to think I'll have to reload the entire page
    every time a user wants click on something to view information; I thought
    programming like that was a thing of the past.

    iiinsomniiiac Guest

  7. #6

    Default Re: Set Text of Layer Question

    > seen it done many times over in rss readers, although when I look at the
    > page
    > source I secretly hope that it's not as complicated as it appears.
    It would depend entirely on your level of HTML expertise.

    One way to solve the problem would be to use an IFrame to contain the
    external content on the page, but a frame is a frame is a frame. By that I
    mean that IFrames usually provide all the user problems that frames do.
    > With the accordion widget I'm using as the main visual feature of the site
    > I'm
    > creating, I find it unnacceptable to think I'll have to reload the entire
    > page
    > every time a user wants click on something to view information; I thought
    > programming like that was a thing of the past.
    Linking from one page to another is how static HTML pages work. Having a
    single page to display multiple content elements as loaded from a database
    requires that the page return to the server to fetch new content from the
    database on each click. Either method requires a page refresh.

    Linking to content that is placed within an IFrame doesn't require this page
    refresh, but carries other disadvantages as mentioned above.

    Does that help at all?

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


    "iiinsomniiiac" <webforumsuser@macromedia.com> wrote in message
    news:eem5ib$ur$1@forums.macromedia.com...
    > Well, my apologies for not knowing exactly what you mean by
    > "round-trip"ing -
    > but - I suppose I'm simply looking for the easiest way to do just what I
    > explained: an onclick event that loads an html file into a div or td.
    > I've
    > seen it done many times over in rss readers, although when I look at the
    > page
    > source I secretly hope that it's not as complicated as it appears.
    >
    > With the accordion widget I'm using as the main visual feature of the site
    > I'm
    > creating, I find it unnacceptable to think I'll have to reload the entire
    > page
    > every time a user wants click on something to view information; I thought
    > programming like that was a thing of the past.
    >

    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