using text command in If then
Blitz3D Forums/Blitz3D Beginners Area/using text command in If then| 
 | ||
| How do I make text invisible then visible later? (I figured out my first question which was the subject...) | 
| 
 | ||
|  | 
| 
 | ||
| thaanks... | 
| 
 | ||
| I use thess twp ways to show/hide Text. | 
| 
 | ||
| This is easier... 
Graphics 400, 300, 32, 2
SetBuffer BackBuffer()
While Not KeyHit(1)
    If KeyHit(57) Key = Not Key
    If Key Text 150, 150, "HI BRAZIL!"
	Flip
    Cls
Wend
 |