Nov 8, 2001 #1 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
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
Nov 9, 2001 #2 coldfused Technical User Jan 27, 2001 2,442 US 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.. carlsatterwhite@orlandomediasolutions.com Upvote 0 Downvote
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.. carlsatterwhite@orlandomediasolutions.com
Nov 9, 2001 Thread starter #3 august MIS Aug 24, 2000 150 PH I use loadvariables to load my .TXT thanks, AUgust Upvote 0 Downvote
Nov 9, 2001 #4 oldnewbie Technical User Dec 6, 2000 9,142 CA Carl, your dynamictext.fla precisely does that! Send it to August! Regards, ldnewbie Upvote 0 Downvote
Nov 9, 2001 #5 wangbar Programmer Jul 23, 2001 1,906 GB 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. Upvote 0 Downvote
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.
Nov 9, 2001 Thread starter #6 august MIS Aug 24, 2000 150 PH 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 Upvote 0 Downvote
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