Hi im new with AutoIT and i have a problem with integration with java i manage to do a script to open skype throw a java app but the problem is that the autoit part only sends text i need to sends things like ENTER and TAB this is the code private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {
String jacobDllVersionToUse;
if (jvmBitVersion().contains("32")){
jacobDllVersionToUse = "jacob-1.18-M2-x86.dll";
}
else {
jacobDllVersionToUse = "jacob-1.18-M2-x64.dll";
}
try{
File file = new File("lib", jacobDllVersionToUse);
System.setProperty(LibraryLoader.JACOB_DLL_PATH, file.getAbsolutePath());
AutoItX x = new AutoItX();
x.run("Skype", "C:/Program Files (x86)/Skype/Phone", AutoItX.SW_SHOW);
x.winActivate("Skype");
x.winWaitActive("Skype");
x.sleep(2000);
x.send("{TAB}!n" );
}catch(Exception e){
}
} Thy