As I recall, in Screen 0, or no Screen specified, all the x, y's are character cells columns and rows including mouse coordinates and _PrintString too? (Maybe not that one??) Pete's the expert on (Screen) Nothing LOL!
A quick experiment to confirm?
Yes! It's all in Char Cell "Locates"
Everything you do with pixels, just reimagine as char cells. And if you are a simple person you will love all the color choices! ;-))
A quick experiment to confirm?
Yes! It's all in Char Cell "Locates"
Code: (Select All)
Do
While _MouseInput: Wend ' poll mouse
If _MouseButton(1) Then
_Delay .2
_PrintString (_MouseX, _MouseY), Str$(_MouseX) + "," + Str$(_MouseY)
End If
Loop Until Len(InKey$)
Everything you do with pixels, just reimagine as char cells. And if you are a simple person you will love all the color choices! ;-))
b = b + ...