开发者

I am not able to execute many APIs of JWinAuto.Has anyone able to implement all APIs?

开发者 https://www.devze.com 2023-04-01 16:13 出处:网络
I installed and 开发者_如何学编程configured it but only two functions are working :AU3_WinMinimizeAll and AU3_WinMaximizeAllTry this discussion here. Basically AutoIt has sinced moved to unicode, so t

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.WStrings everywhere they previously passed Strings.

eg.

was

public int AU3_WinWait(String szTitle, String szText, int nTimeout);

now

public int AU3_WinWait(WString szTitle, WString szText, int nTimeout);

0

精彩评论

暂无评论...
验证码 换一张
取 消