Using threads will solve my problem?
Well, I have two jpanels, A and B. Whatever mouse movement I do in jpanel A, I want it to be done in jpanel B too. What I do now is to call the mouselistener of jpanel B whenever the mouselistener of jpanel A is called, using the same mouse event. Everything is fine, but the response is slow.
So, I thought to use threads. You think that this will be the solution to my problem? If yes, where should I use the thread? I mean, I used it inside the mouse listener, but there was no difference, the response remained slow.
Thanks
PS: I'm sorry if I don't post in the right place.