http://docs.oracle.com/javase/7/docs/api/java/awt/event/KeyEvent.html#getKeyCode()
I don't know how to test if the key that was pressed was Enter. Using the following boiler plate and (alert ...)
. I've managed to determined that the event, e, is a KeyEvent and from its documentation I see there is a constant VK_Enter
to represent Enter and three methods getKeyChar, getKeyCode and getKeyText. Using (alert e)
It appears that getKeyChar returns Enter, or at least something that is represented with the Enter String, but (= (.getKeyChar e) "Enter")
returns false. How can I detect that Enter was pressed?
(-> (frame :title "Zangalon" :content
(text :text "Input Goes here"
:listen [:key-typed (fn [e] ..)]))
pack!
show!)
VK_Enter
A working example:
and the output:
Event itself is:
As you can see keyCode is 0 so .getKeyCode will not work.