Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
Module Checkit {
|
||||
\\ feed keyboard
|
||||
Keyboard "abcd"
|
||||
\\ Work in Windows not in Linux (no Osk.exe exist)
|
||||
\\ no error return in linux
|
||||
Keyboard ! 'open virtual keyboard
|
||||
Wait 3000
|
||||
\\ flush keyboard
|
||||
\\ we can use Do or Repeat (is the same)
|
||||
Repeat {
|
||||
a$=inkey$
|
||||
if a$="" then Print :exit
|
||||
Print a$;
|
||||
} Always
|
||||
}
|
||||
Checkit
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
Module checkit {
|
||||
Print "You have 3 seconds to write your name (press enter)"
|
||||
After 3000 {
|
||||
Input End
|
||||
}
|
||||
Input "Your name:", A$
|
||||
If A$="" Then Print "Not Ready" : Exit
|
||||
Print "Ok:";A$
|
||||
}
|
||||
Checkit
|
||||
Loading…
Add table
Add a link
Reference in a new issue