
-----------------------------------
Laetus
Sun Sep 26, 2004 7:08 pm

Turing 4.0.0
-----------------------------------
In my version of Turing, the graphics window doesn't work (it's always the same size), and all my graphics move toward the left side.
example:

View.Set ("nocursor, graphics : 500 ; 500")
colourback (black)
cls
for i : 1 .. 2
    colour (i)
end for
var num : int
var row, col : int
loop
randint (num, 0, 9)
randint (row, 1, maxrow - 1)
randint (col, 1, maxcol - 1)
locate (row, col)
put num
delay (5)
end loop


In my turing, all the numbers move to the left.
Can anyone help?[/code]

-----------------------------------
Cervantes
Sun Sep 26, 2004 7:15 pm


-----------------------------------
View.Set ("nocursor,graphics:500;500")

the reason your numbers "move" to the left side is because when you use the put command you erase everything in that row after that column.

So, your text isn't actually moving to the left side, its just that it gets erased from the left side much less often than from the right.
follow?

-----------------------------------
Laetus
Fri Oct 15, 2004 9:00 pm


-----------------------------------
Ok. Thank you. My computer at school didn't do it that way, so it looked like something was going wrong. Thanks!
