- ; 运行记事本,输入“Hello world!”并通过鼠标全选文本。
-
-#Include "IbAhkSend.ahk"
-
-IbSendInit() ; IbSendInit("AnyDriver", 1)
-
-Send("#r")
-WinWaitActive("ahk_class #32770")
-Send("notepad`n")
-
-WinWaitActive("ahk_exe notepad.exe")
-Send("Hello world+1")
-Sleep(100)
-MouseClickDrag("Left", 5, 5, 150, 50) |
- ; 运行记事本,输入“Hello world!”并通过鼠标全选文本。
-
-#Include %A_ScriptDir%
-
-#Include IbAhkSend.ahk
-
-IbSendInit() ; IbSendInit("AnyDriver", 1)
-
-Send #r
-WinWaitActive, ahk_class #32770
-Send notepad`n
-
-WinWaitActive, ahk_exe notepad.exe
-Send Hello world+1
-Sleep 100
-CoordMode, Mouse, Client
-MouseClickDrag, Left, 5, 5, 150, 50 |
-
-