rechte maustaste
-
hallo
wie kann ich die rechte maustaste abfangen?
-
Warum gibst du nicht einfach mehr Informationen? So kann dir ja wohl keiner eine vernünftige Antwort geben.
-
ja was willst du mehr.
mit mousepressed kann man eine gedrückte taste abfragen jetzt möchte ich nur noch unterscheiden welche taste gedrückt wurde.
-
When you receive a 1.1 InputEvent, use getModifiers() on it and mask
with BUTTON3_MASK. InputEvent is the superclass of KeyEvent and
MouseEvent, which are the Events you will actually get from
keyPressed(KeyEvent) and mousePressed(MouseEvent). You have to do
addMouseListener(this) and addKeyListener(this) in order to get the
Events of course.. Read "The Java Class Libraries Second Edition Volume
2" by Patrick Chan and Rosanna Lee.Roger
-
danke