04-09-2024, 12:13 AM
(04-09-2024, 12:08 AM)bplus Wrote:I have done that, and it worked fine; I still want to be able to scroll without going to console:only mode. If I can.Code: (Select All)'Screen _NewImage(800, 600, 32)
$Console:Only
Print "This program will count to 100 from the number you supply."
Input "Enter the number to start counting from > ", count%
While count% <= 100
Print count%
count% = count% + 1
Wend
this will work for that program too;
Code: (Select All)Screen _NewImage(800, 600, 32)
''Console:Only
Print "This program will count to 100 from the number you supply."
Input "Enter the number to start counting from > ", count%
While count% <= 100
Print count%;
count% = count% + 1
Wend