Re: [Pipmak-Users] Re: Hotspot maps
Status: Alpha
Brought to you by:
cwalther
From: Christian W. <cwa...@gm...> - 2004-09-29 20:18:43
|
> when i do the print Bingo trick, it prints bingo whatever key i press Yeah, that's what's supposed to happen. Good. > if key == string.byte("a") then > and it says "unused key 97 pressed" when i press a. OK, we're on the right track. Seems to be a bug in Pipmak indeed. string.byte("a") is supposed to return 97, but apparently it doesn't. Can you find out what it returns instead? For example, replace the 'pipmak.print("Bingo!")' line with 'pipmak.print("The magic number is ", string.byte("a"), "!")'. > when i tried your before and after trick, i got both messages. OK, fine. > btw, i do appreciate you taking the time to help with this. Well, I do appreciate you taking the time to help me squashing bugs (or design flaws) in Pipmak... :) -Christian |