how can the text blink in the Qbasic output screen?
Answers
Answered by
3
Answer:
CONST BlinkFactor = 16.
COLOR 15.
PRINT "This is bright white;"
COLOR 15 + BlinkFactor.
PRINT "This is bright white, but blinking."
COLOR 4.
PRINT "This is red;"
COLOR 4 + BlinkFactor.
Answered by
0
Answer: There is a More Easier way to do this Which is by using loop.
Explanation:
Cls
For i = 1 To 15
For s = 2 To 16
Color (i) + (s)
Print "Text colour is changed"
Next s
Next i
End
Similar questions