Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
(import java.awt.Robot)
|
||||
(import java.awt.event.KeyEvent)
|
||||
(defn keytype [str]
|
||||
(let [robot (new Robot)]
|
||||
(doseq [ch str]
|
||||
(if (Character/isUpperCase ch)
|
||||
(doto robot
|
||||
(.keyPress (. KeyEvent VK_SHIFT))
|
||||
(.keyPress (int ch))
|
||||
(.keyRelease (int ch))
|
||||
(.keyRelease (. KeyEvent VK_SHIFT)))
|
||||
(let [upCh (Character/toUpperCase ch)]
|
||||
(doto robot
|
||||
(.keyPress (int upCh))
|
||||
(.keyRelease (int upCh))))))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue