I am not able to execute many APIs of JWinAuto.Has anyone able to implement all APIs?
I installed and 开发者_如何学编程configured it but only two functions are working :AU3_WinMinimizeAll and AU3_WinMaximizeAll
Try this discussion here. Basically AutoIt has sinced moved to unicode, so the calls from the JNA interface need to pass com.sun.jna.WString
s everywhere they previously passed String
s.
eg.
was
public int AU3_WinWait(String szTitle, String szText, int nTimeout);
now
public int AU3_WinWait(WString szTitle, WString szText, int nTimeout);
精彩评论