|
|
 |
Re: FN-FORUM Scrolling in Director 8!
date posted 1st May 2001 17:40
>am making a director movie and have a load of text which i would like
to
> scroll through. But dont want to use directors custum scroll bars!.
It's simple enough.
Make the text member so it's framing property is adjust to fit or
something.
Dump it on screen.
THen on your up arrow have some code like:
on mouseUp
sprite(textsprite).locV = sprite(textsprite).locV - 10
end
On your down arrow have some code like:
on mouseUp
sprite(textsprite).locV = sprite(textsprite).locV + 10
end
where textsprite is the sprite channel containing the text member.
You'll need to clip the values so the text doesn't scroll
indefinately, but that's just a simple check.
HTH
Barry Swan
[EMAIL REMOVED]
http://www.egroups.com/group/t3dtesters - Mailing list for the T3D
lingo engine
http://www.theburrow.co.uk/t3dtesters - Support site for the T3D lingo
engine
|
 |
|