I would like use the "command" key instead of "control" key when i'm running my program on mac.
I have got a list with a click listener; today on mac, to select multiple items I use "control" + click. I would like use "command" + click.
Is there any way to change the key or change the keyboard with java ?
Then with :
if (os.startsWith("Mac OS X"){}
I could use the key only on mac.
Thanks.