a simple return in a var$ :S

Blitz3D Forums/Blitz3D Beginners Area/a simple return in a var$ :S

GC-Martijn(Posted 2004) [#1]
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
-->:)


soja(Posted 2004) [#2]
There's no such thing as a carriage return in graphics mode. You'll have to use Print or find another way.


Kanati(Posted 2004) [#3]
Indeed. Text command just plasters the text on the screen wherever you want. Control characters are not printable.


GC-Martijn(Posted 2004) [#4]
mmm oke.

Thanks