View Full Version : A Good Scrolling Text Box Tutorial
sintax321
September 20th, 2002, 12:23 PM
I know there are turorials on Kirupa but the good ones are for MX and the only other one dosn't do what I want. I just want a scrolling text box (mabye with dynamic loaded text), an up and down button that when pressed and held will continue to scroll (but stop at the bootom and top), and a drag bar that will go up and down. I have been searching for a good on but with no luck. All the ones I have found have been poor quality or didn't function they way I want. If anybody has a good one or a link to a good one please post. Thanks :)
chris
September 24th, 2002, 12:09 PM
Hi sintax,
I haven't visited the forum for awhile so I have only just seen your post, I've attatched a fla for you to do with as you wish I hope it helps:bandit:
sintax321
September 24th, 2002, 12:30 PM
Thanks for the FLA. I'll be sure to try it when I get home from my trip.=)
chris
September 24th, 2002, 12:33 PM
Glad I could help and if you have any questions don't hesitate to ask...enjoy your trip:bandit:
sintax321
September 26th, 2002, 01:04 AM
Thanks alot man. Most people just post a link to a tutorial or some actionscript. This will be a big help on every project I do until I get MX thanks again:)
chris
September 26th, 2002, 04:43 AM
Your welcome:bandit:
waffe
November 15th, 2002, 04:31 PM
This is probably the best text scroller I have seen for flash 5. One question, how would you resize the scroll bar regardless of how much text you have?
nOoB
October 15th, 2003, 05:42 PM
I'm sorry if just jumping into this thread, but is there any way to make the text scroll as LONG as the mouse is over the button and make it stop scrolling when the mouse isnt over.
I have asked this question several times on flashkit forum but no one seems to be able to help me...
i even tried this **** script:
while(rollOver){
scroll the text;
}
but of course it didnt work...
waffe
October 15th, 2003, 05:56 PM
Use this button code instead
//top btn
// begin the movie loop that sends the slider upwards
on (rollOver){
tellTarget ("_root.up") {
gotoAndPlay (2);
}
}
on (rollOut){
tellTarget ("_root.up") {
gotoAndstop (1);
}
}
// stop the movie loop that sends the slider upwards
on (release, releaseOutside) {
tellTarget ("_root.up") {
gotoAndStop (1);
}
}
//bottom btn
// begin the movie loop that sends the slider downwards
on (rollOver) {
tellTarget ("_root.down") {
gotoAndPlay (2);
}
}
on (rollOut){
tellTarget ("_root.down") {
gotoAndstop (1);
}
}
// stop the movie loop that sends the slider downwards
on (release, releaseOutside) {
tellTarget ("_root.down") {
gotoAndStop (1);
}
}
worked for me.:p:
nOoB
October 16th, 2003, 04:31 PM
thx, i will try that script later :D
kev
October 22nd, 2003, 07:51 AM
I have another very good scroller that I have modified!
It will load in text from an external .txt file and also reconise html from the .txt file so it's easy to update!
Also you can just drag the content box and scroller to match the size you want it!
I'll attach a zip later as I don't have the file with me at the mo!
kev
October 22nd, 2003, 04:34 PM
Here's the file! I can't take credit for the original, I got it off flashkit I think ages ago, I have simplified it a little and gave it a new look!
Hope you find this usefull. just drag the MC on to your stage and change the content in the .txt file - really simple and easy a bit like a component, but this is flash 5 :)
Let me know if you find it usefull
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.