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

Fix for flashing text

Root / Submissions / [.]

cp30rocksCreated:
If your text in your program is glitchy then you just have to put a wait command in the code:
@LOOP
Print "blah blah stuff i'm typing blah blah
WAIT 1
CLS
GOTO @LOOP

I'm not sure this is a very helpful resource, other than being a quick fix (theres a better quick fix too...) Things you might want to consider: Why does the text flash? Why use WAIT over something like VSYNC? Does the screen actually have to be cleared for your use case?

Replying to:kldck_hul
I'm not sure this is a very helpful resource, other than being a quick fix (theres a better quick fix too...) Things you might want to consider: Why does the text flash? Why use WAIT over something like VSYNC? Does the screen actually have to be cleared for your use case?
I think the biggest question you should ask yourself is "why am I printing static text in a loop?"

VSYNC is better

Replying to:kldck_hul
I'm not sure this is a very helpful resource, other than being a quick fix (theres a better quick fix too...) Things you might want to consider: Why does the text flash? Why use WAIT over something like VSYNC? Does the screen actually have to be cleared for your use case?
Ideally you would do: WHILE 1 LOCATE 1,1:PRINT "blah blah stuff i'm typing blah blah" WEND

Replying to:kldck_hul
I'm not sure this is a very helpful resource, other than being a quick fix (theres a better quick fix too...) Things you might want to consider: Why does the text flash? Why use WAIT over something like VSYNC? Does the screen actually have to be cleared for your use case?
When you do want to clear the screen, you should do it right BEFORE displaying, not after, as in
WHILE TRUE
VSYNC 1
CLS
Print "blah blah stuff i'm typing blah blah"
WEND

Replying to:kldck_hul
I'm not sure this is a very helpful resource, other than being a quick fix (theres a better quick fix too...) Things you might want to consider: Why does the text flash? Why use WAIT over something like VSYNC? Does the screen actually have to be cleared for your use case?
To add to what Lumage is saying: You want to have a pretty picture on screen before you start doing calculations that might take a while. That way the player has something to look at.