Text Not displaying

BlitzPlus Forums/BlitzPlus Programming/Text Not displaying

dna(Posted 2013) [#1]
Hey All.

In this source:


Function GETIN$(MAXCHR)

NCHR=0 While CHRS<>13 Cls
CHRS=GetKey()
If CHRS=8 And Len(IN$)>0 Then IN$=Left$(IN$,Len(IN$)-1):NCHR=NCHR-1
If CHRS>13 And NCHR<=MAXCHR Then IN$=IN$+Chr$(CHRS):NCHR=NCHR+1
Text TXX,TYY,IN$
Flip
Wend Return IN$

End Function



the text is not displaying when the caps lock is on. What am I doing wrong?


Addi(Posted 2013) [#2]
When do use the Function, on wich Buffer do you write?
Also wich color are you using?

Try to change it using Color 255, 255, 255.

If you only want to test it, you can
switch on Debugmode and use Debug instead of Text.