a simple return in a var$ :S
Blitz3D Forums/Blitz3D Beginners Area/a simple return in a var$ :S
| ||
var$="bla"+Chr(13) Text 0,0,var$ ;---------------------------------------------- ;shows me : bla| ;and what i want is : bla and a Carriage Return ;not like this : var$="bla":Print ;because it must by dynamic ;---------------------------------------------- ;bla ; ;---------------------------------------------- WaitKey Thanks Very Much GC-Martijn -->:) |
| ||
There's no such thing as a carriage return in graphics mode. You'll have to use Print or find another way. |
| ||
Indeed. Text command just plasters the text on the screen wherever you want. Control characters are not printable. |
| ||
mmm oke. Thanks |