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!
Sorry, This is from google images xD
Is this helpful? xD
Haven't tried it yet, but I will soon enough.
EDIT: Doesn't work. :/
Wow, The 'Try It!' is apparently telling people too ''Not Try It!" xD LOL
Why so complex?
FOR I=0 TO LEN(TXT$)-1 ?LEFT$(TXT$,I) WAIT 1 NEXT
By the way, I would do it more like this:
@LOOP CLS:GCLS GPUTCHR X,Y,"TEXT" Y=Y-1 WAIT 1 GOTO @LOOPThat would make the text move by pretty quickly though. So you could change Y=Y-1 to something more like Y=Y-.2.
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
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)