Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Continues Scroll?

Status
Not open for further replies.

august

MIS
Aug 24, 2000
150
PH
How can i make make text scrolled continueslly while im pressing a button then if i stop from pressing then it should stop?

Thanks,
August
 
depends..do you want to load it externaly or fake it with a movie clip that contains the text and have it scroll frame to frame?..

a couple options..goto google and type in scrolling text in flash..should pull up a couple ways..
logo.gif


carlsatterwhite@orlandomediasolutions.com
 
I use loadvariables to load my .TXT

thanks,
AUgust
 
Carl, your dynamictext.fla precisely does that!
Send it to August!

Regards,
mywink2.gif
ldnewbie
 
Sounds like the problem is the button, not the scrolling part itself, yeah?

This code on the button should do the trick...

on(press){
scrolling=true;
}
on(release){
scrolling=false;
}

... on your text clip you need to add...

if(scrolling){
textbox.scroll+=1;//or -1 depending on the direction
}

If you need to scroll up and down just have two buttons with upScroll and downScroll as the variables and alter the textbox code to suit.
 
I'm okey now, I almost got it workin'
i'ved got some tutorial in virtual-fx perfectly fit on my problem.
thanks for all the response guys!

thanks
August
agencisa@yahoo.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top