Re: input problem
- Posted by Ralf Nieuwenhuijsen <nieuwen at XS4ALL.NL> Nov 02, 1998
- 861 views
> I am using wait_key to enter a number value from the keyboard.
>
> i = wait_key()
Do this:
i = '1' + 1 + wait_key ()
And then it will work.
Wait_key returns the scan code of the key, not its actual value.
Good luck.
Ralf

