Featured FLA
» Author: Nitin Tikhe
» Title: Cart
» Description: This Animation Tut is a fun and useful for kids below 15 years. Watch the Flag, Doors, Stick and Horse movements.
» More by Nitin Tikhe
Featured Site
» Posted in the Flash Kit Links section
» Title: Banana Swimwear
» Description: This is a banana swim wear interactive catalog we designed and animated in Flash
To scroll text in NS4, everything- including the interface-
has to be created from scratch. That's because no default tag or feature exists in NS4 to
simulate this action.
What does exist in NS4, though, is the tag (the
DHTML tag of the browser). This tag allows you to move whatever is inside of it freely
around the page, and by applying some control, we can mold that into a scroller!
Here's the basic idea. We define a tag and put
the text to scroll inside of it. We then wrap all of that with the tag,
which simply grounds it to appear inline with the rest of the page (as opposed to the
coordinates defined by the layer's left and top position).
This is scrolling text. This is scrolling text. This is scrolling text...
Then, by using a simple script to increment the left position
of this layer, it moves, just like in a scroller. Before I show you the script itself,
allow me to illustrate what I've just talked about graphically:
The tag defines the "scroller
window", the physical viewable area of the scroller (green rectangle). The
tag, on the other hand, defines/contains the scrolling text itself, and is
represented above as the white rectangle. We want to create a script that will move this
white rectangle continuously to the left until it reaches the end of the text, then start
over again.