Is there anyway to do a mousemove event with java.awt.Component.dispatchEvent(AWTEvent)?

.dispatchEvent(new MouseEvent(client.a
                           .getComponentAt(1, 1),
                               MouseEvent.MOUSE_MOVED,
                               System.currentTimeMillis(),
                               MouseEvent.NOBUTTON,
                               x,y,
                               1,
                               false));

I got this now but it doesnt perform a mouse move. How can i do it?

Edit: I tried it like this but its not working:

.dispatchEvent(new MouseEvent(client.a
                           .getComponentAt(1, 1),
                               MouseEvent.MOUSE_MOVED,
                               System.currentTimeMillis(),
                               MouseEvent.NOBUTTON,
                               x,y,
                               0,
                               false));

Thanks, Jeffrey

link|improve this question

I know of no way to do this the way you're trying as the MouseEvent (as far as I understand it) is for sending mouse messages to components not the operating system. Usually I've used the Robot class or JNA to actually move the mouse cursor on the screen. – Hovercraft Full Of Eels Feb 3 at 17:12
Do you want your component to react on a MouseEvent which did not actually happened (faking mouse events), or do you want to move the cursor on the screen ? – Robin Feb 3 at 17:15
Like a virtual mouse. On a applet. – Jeffrey Gearsoffun Feb 3 at 18:00
@JeffreyGearsoffun: answer given in comment. If you want it official, I'll make it an "answer". – Hovercraft Full Of Eels Feb 3 at 18:10
feedback

2 Answers

up vote 3 down vote accepted

I know of no way to do this the way you're trying as the MouseEvent (as far as I understand it) is for sending mouse messages to components not the operating system. Usually I've used the Robot class or JNA to actually move the mouse cursor on the screen.

link|improve this answer
Can you give me a explaination or a link how to do it with JNA? – Jeffrey Gearsoffun Feb 3 at 18:11
@JeffreyGearsoffun: why not make it a lot easier on yourself and try using the Robot class first. – Hovercraft Full Of Eels Feb 3 at 18:19
I want a virtual mouse btw. not that the main cursor moves It needs to be used only by the applet – Jeffrey Gearsoffun Feb 3 at 18:19
@JeffreyGearsoffun: OK, now I'm confused. Please let me know what you mean by "virtual mouse"? – Hovercraft Full Of Eels Feb 3 at 18:20
1  
It was my code but your answer was helping me so ty :) – Jeffrey Gearsoffun Feb 3 at 18:26
show 2 more comments
feedback

I use Abbot to emulate MouseEvent in my application. It was recently updated by an Oracle employee for Java 6, JUnit 4, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.