awtrobot
Listeners in conjunction with Robot class
I\'ve been playing with the Robot class recently and I have it doing 开发者_运维知识库what I want, but I haven\'t figured out how to interrupt/stop its actions via user input.[详细]
2023-04-11 15:00 分类:问答How can I use java.awt.Robot inside games?
I am developing an Android application that controls the PC keyboard and mouse. I wanted to add a new feature (using your mobile as a game controller). I am using java.awt.Robot.[详细]
2023-04-05 12:48 分类:问答Why is `robot.keyRelease(KeyEvent.VK_CONTROL)` necessary?
Whe开发者_StackOverflow中文版n using Robot class, what is the meaning of: robot.keyRelease(KeyEvent.VK_CONTROL);[详细]
2023-04-03 09:38 分类:问答Fast gathering image on screen and reading the pixels
I\'m trying to get a small section of image on the screen and开发者_Go百科 read any pixel to compare the other pixels.The code to get screen image is:[详细]
2023-03-21 17:23 分类:问答Java ignores VK_Enter event generated by robot
I\'m writing some integration tests using a robot.I have the robot opening a menu and it should be selecting one of the options form the menu; 开发者_Python百科except the enter key seems to be ignored[详细]
2023-03-19 10:53 分类:问答Use a robot to type characters in Java
I know how to have Robot simulate a Y keypress like so: Robot.k开发者_开发百科eyPress(KeyEvent.VK_Y);[详细]
2023-03-19 09:21 分类:问答Taking screenshot with Java applet using Java Robot class not working
I am using a Java applet to take a screenshot of the web browser, using Java\'s Robot class. Robot o开发者_开发知识库bjRobot = new Robot ();[详细]
2023-03-18 19:40 分类:问答What does the Java Robot class do?
What function exactly does the Robot class in J开发者_如何学JAVAava serve? Does it press keys or what?The robot class presses keys and uses the mouse.[详细]
2023-03-18 08:38 分类:问答How can I make Robot press and hold a mouse button for a certain period of time?
I am using Java to generate a mouse press using the Robot class: robot.mousePress(InputEvent.BUTTON1_MASK);[详细]
2023-03-14 03:02 分类:问答How do I get rid of the border made by capturing a jframe image to file?
So I made an application that creates a graphical timeline from a csv file. I have that part finished now I just need help getting the image \"pretty\". When capturing the image the border from the JF[详细]
2023-03-12 16:17 分类:问答