Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
iiinsomniiiac #1
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
-
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 -
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... -
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? -
on Director : 3D layer + flash (SWF) layer (or with other layer type)
Thankx for all it's works :) Coool -
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... -
Murray *ACE* #2
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
-
iiinsomniiiac #3
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
-
Murray *ACE* #4
Re: Set Text of Layer Question
> An onclick event that simply loads an html file into a particular
You won't find it.> NON-ABSOLUTE
> div - or - better yet - a table cell.
ASP is server side script. To use it you would have to round-trip the page> Does Dreamweaver 8 have support for this - or am I going to have to
> hand-code
> it in using asp or ajax?
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
-
iiinsomniiiac #5
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
-
Murray *ACE* #6
Re: Set Text of Layer Question
> seen it done many times over in rss readers, although when I look at the
It would depend entirely on your level of HTML expertise.> page
> source I secretly hope that it's not as complicated as it appears.
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.
Linking from one page to another is how static HTML pages work. Having a> 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.
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



Reply With Quote

