eeeh, umm not really sure, what to name this. Using a char to include into
Ok sry i have no clue what to name this, sry.
Heres the code.
publicstaticvoid sendWord(Robot robot, String word){
String wordUp = word.toUpperCase();
char [] letters = wordUp.toCharArray();
for(int i = 0; i < letters.length; i++){
System.out.println(letters[i]);
pressKey(robot, KeyEvent.VK_letters[i]);
}
}
The problem is apperant. the wonderfull pressKey(robot, KeyEvent.VK_letters);
How should i go about doing this? This seems pretty self explanitory, but it might not be so if i need to explain the code i will.

