I have been trying to create a very simple java clipboard application.
When the user hits a predefined keyboard shorcut (for example CTRL + 1), I want my application to paste the contents of my system clipboard, into any other application.
From what I have researched, Java Swing keybindings and keyboard listeners do not work when the Java application is minimized or not in focus.
I have been looking at JNA (Java native access), and some of the source files. But this is my first time using JNA and first time trying to paste into other applications. And i can't seem to figure out where to even start.
Are there any pointers that you guys/girls can provide?
Thanks, Julie