Hello
I have a java swing application and one button that open CharacterPallete.app (native Mac CharacterMap)
The code looks like that:
When i push the button CharacterPallete appear but cannot insert any char to any editor (works only on DragAndDrop)Code:String[] argument = new String[] {"open","/System/Library/Input Methods/CharacterPalette.app"};
Runtime.getRuntime().exec(argument);
Any idea how can i solve it?
Thanks
