LoginLogin
Nintendo shutting down 3DS + Wii U online services, see our post

How to make Scrolling Text!

Root / Submissions / [.]

16bitcoderCreated:
CodingEpic found this out and I am just sharing the knowledge! DEF SCROLLS WAIT 3 PRINT "";K$;"" END @MENU K$=="hi" PRINT "LOOK PRINT"SCROLLING PRINT"TEXT SCROLLS WAIT 1:GOTO @VIEW @VIEW WAIT 1:GOTO @VIEW DID THIS HELP? TRY IT!

almost swear that is from hackers the movie 90's

Replying to:incvoid
almost swear that is from hackers the movie 90's
Sorry, This is from google images xD

Is this helpful? xD

Replying to:16bitcoder
Is this helpful? xD
Haven't tried it yet, but I will soon enough. EDIT: Doesn't work. :/

Replying to:16bitcoder
Is this helpful? xD
Wow, The 'Try It!' is apparently telling people too ''Not Try It!" xD LOL

Replying to:16bitcoder
Is this helpful? xD
It should've worked...

Why so complex?
FOR I=0 TO LEN(TXT$)-1
?LEFT$(TXT$,I)
WAIT 1
NEXT

This really shouldn't be in submissions...

Replying to:Guzzler
This really shouldn't be in submissions...
By the way, I would do it more like this:
@LOOP
CLS:GCLS
GPUTCHR X,Y,"TEXT"
Y=Y-1
WAIT 1
GOTO @LOOP
That would make the text move by pretty quickly though. So you could change Y=Y-1 to something more like Y=Y-.2.

Got to agree with guzzler829 on that.

I know this is old, but um...isn't there a scroll command
PRINT "WUTT UP MAI BOIZ!"
SCROLL 1

Replying to:VG_Lover
I know this is old, but um...isn't there a scroll command
PRINT "WUTT UP MAI BOIZ!"
SCROLL 1
yes there is but you have to put both x and y

Replying to:VG_Lover
I know this is old, but um...isn't there a scroll command
PRINT "WUTT UP MAI BOIZ!"
SCROLL 1
I know, but I was sort of just giving a little example

Replying to:Mariominer
Why so complex?
FOR I=0 TO LEN(TXT$)-1
?LEFT$(TXT$,I)
WAIT 1
NEXT
You should use a CLS on the Loop if you want to make an RPG-Style scrolling text. (A scrolling text that scrolls in an X coordinate and prints it letter-by-letter)