Posted: 21st Dec 2011 2:31
i have been having trouble printing pound signs (?) on to the screen.
i can print $ but not ? for some reason.

any suggestions????
Posted: 21st Dec 2011 17:12
Can you cut and paste this code and show me what your screen looks like, thanks:

DO
Print("Hello ???")
Sync()
LOOP
Posted: 21st Dec 2011 21:48
Hi,
i ran the program and only the "Hello" part was printed.
I have attached the screenshot.
Posted: 22nd Dec 2011 6:36
Lee, I also get the same outcome as Rickynzx. I wrote up a quick program and it seems that only part of the ASCII chart (33 - 127) is supported...well printed.

+ Code Snippet
char as integer = 0
LastTime as float = 0.0

while char <= 255
    if Timer() - LastTime > 0.4
        print( str(char) + ": " + chr(char))
        LastTime = Timer()
        char = char + 1
        sync()
    endif
endwhile
end
Posted: 22nd Dec 2011 9:00
This is the same problem as printing accented characters. It appears to be on the 'to do' list.
Posted: 22nd Dec 2011 22:12
Just replace the $ with a ? (with a paint tool) in the font png file!!!!
Posted: 29th Dec 2011 0:21
thanks. ill try changing the font png.
Posted: 31st Dec 2011 16:06
Hi guys,

im having problems with the getpointerstate command. cabn anyone tell me why this works
[do
if GetPointerstate ( ) = 1 then
print ( GetPointerX ())
print (getpointery())
sync()
loop
code]

and this doesnt

[do
if GetPointerstate ( ) = 1
print ( GetPointerX ())
print (getpointery())
sync()
endif
loop
code]


thanks.
Posted: 31st Dec 2011 18:38
put the sync after the endif on the second example and it should work.

Your first example is like:

//print this when the mouse is down
if GetPointerstate ( ) = 1 then print ( GetPointerX ())

//print this all the time
print (getpointery())
sync()
Posted: 2nd Jan 2012 12:14
yeah, that did the trick.

Thanks