I am wondering is it possible somehow to move another window on the screen to different location using Java ?
Example: I would like to move this window to the marked location.
I am wondering is it possible somehow to move another window on the screen to different location using Java ?
Example: I would like to move this window to the marked location.
Interfering with other programs is usually only allowed with superuser access (root). If you do not mind executing your program as root, there are possibilities, but they are certainly not cross-platform, so you would have to write a version for every OS around. I would not use java for such things.
Also, the answer about using the Windows API will not work, since you will not be able to get the window handle of a different process. Just check the documentation:
SetWindowPos Changes the size, position, and Z order of a child, pop-up, or top-level window.
Java APIs will not help you out here.