JavaUser Code: Mouse Hex Value Check

User Code: Mouse Hex Value Check

Developer.com content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

This simple routine will check the Hex value of the mouse button being pressed and will send output to the system output telling you which button has been pressed. This can be changed so you can have other tasks done when the left or right mouse button is pressed. Note: This only works for two-button mice.

 private void Form2_mouseDown(Object source, MouseEvent e)
 {
 int Mouse = e.button;
 Integer MyMouse = new Integer(Mouse);
 String MouseHex = MyMouse.toHexString(Mouse);
 String MouseL = "1000000";

 if (MouseHex.compareTo(MouseL) < 0)
 {
 System.out.println("Left Mouse Button");
 }
 else
 {
 System.out.println("Right Mouse Button.");
 }
 }

That's it.

[To contribute a code article to Gamelan, please contact kmurphy@internet.com.]

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Latest Posts

Related Stories