This FAQ answers the following questions:
The AutoScroller consists of 2 nested, absolute positioned DIV tags, so you can put any HTML formatting you like in it.
Yes, as stated above, because the AutoScroller consists of 2 nested, absolute positioned DIV tags (= regular HTML elements), you can put any content you like in it.
Using SSI (server-side includes), it is very well possible to have the content for the scroller coming from an external file.
You'll find basic information about SSI at http://www.dwfaq.com/tutorials/dynamic/SSIs.asp, but a simple search in Google will return lots of links about this subject.
You need to apply the 'AutoScroller - Stop/Continue' behavior to each of the links in the scroller. In fact you need to apply it twice for each link:
Here's how to do that:
In the 'Cross-browser AutoScroller - Stop/Continue' behavior dialog (available from FlevOOware flyout in Behavior panel), you have the option:
Try experimenting with those options.
The AutoScroller is an absolute postioned DIV, which means that it gets a
fixed position in relation to the top/left corner of the document. Thus its
position does not change when the browser window is resized, whereas eg.
a centered table does.
If you want the AutoScroller to maintain a position in relation to eg. a
centered table, you will need to 'snap' the layer to something (eg. an image)
within that table. The free "SnapLayer" extension available at www.projectseven.com can
do that for you.
Use SnapLayer to 'snap' the entire AutoScroller to something (an image) in your centered page, and apply it to both the onLoad and the onResize event of the <body> tag. The AutoScroller will then move with the page content when resizing the browser window.
By default, the AutoScroller defines the styles for the content layer embedded
in the <head> section of the page, but chances are you've somehow altered
those styles and now all or some of the styles for the nested layer are directly
on the layer itself.
However, Netscape 4.x chokes on styles defined directly on nested layers
and will refuse scrolling.
To fix this, you can run Yaromat's "Layer2Style" extension (available
from http://www.yaromat.com/dw/index.php?t=Command&r=layers),
or move these styles manually to the <head> section of your page.
A DHTML scroller is not really scrolling. What is happening is that a layer
under another layer is being moved below the upper layer's clip region. Content
in the layer below that falls outside of the clip area is hidden as a result,
and the appearance is as if the content was 'scrolling'. And obviously that
moving layer with the actual content can only be in one place at a time.
For the AutoScroller this means that the content layer will only be repositioned
at the bottom of the upper layer's clip region again when all content has moved/scrolled
by. And then the upward movement can start all over again.
A seamless scrolling effect can be achieved by using more than one content layer
and making them take turns in the scrolling movement.
But AutoScroller is just a very simple, basic scroller and thus doesn't support
that.
Scroller Genie however (= commercial extension: http://www.dmxzone.com/showDetail.asp?NewsId=4952)
is far more advanced and does support seamless scrolling.