using text command in If then

Blitz3D Forums/Blitz3D Beginners Area/using text command in If then

Braden(Posted 2009) [#1]
How do I make text invisible then visible later?
(I figured out my first question which was the subject...)


Warner(Posted 2009) [#2]



Braden(Posted 2009) [#3]
thaanks...


BoneStan(Posted 2009) [#4]
I use thess twp ways to show/hide Text.



Marchesi(Posted 2009) [#5]
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