古海沉舟

Results 2 comments of 古海沉舟

^b:: text := Clipboard if (text != "") { SendCn(text) } return ctrl+b就把游戏外的剪切板内容粘贴进去了

我6月出现问题后其实也一直没彻底解决,自己研究了下我发现把C:\Program Files\BetterGI\BetterGI.exe的兼容性设置成Win8就可以正常打开 然后直接使用快捷方式还是会偶尔出错,用ahk写了个脚本,调用explorer来运行BetterGI.exe, 就会使用win8兼容来运行,就不会出错了 FilePath := "C:\Program Files\BetterGI\BetterGI.exe" if FileExist(FilePath) DllCall("shell32\ShellExecuteW", "Ptr", 0, "WStr", "runas", "WStr", "explorer.exe", "WStr", FilePath, "Ptr", 0, "Int", 1) exitapp 不知道对你是否有效