This is fantastic. The help file does not give good enough examples to understand most of this stuff. You are doing a great job of teaching. Keep up the good work.
@guest238 Жыл бұрын
hola migo disculpa una pregunta como manipular un cuadro de dialogo que tenga la opcion si o no o cancelar de un programa con ahk?
@kevinlee33342 жыл бұрын
Hey Juho, is there a way to extract particular text when you used WinGetText on Window Spy?
@xohyuu Жыл бұрын
F7:: ; If pressing the key F7 Mouseclick, L ; The left button of a mouse is pressed. WinGetText, text ; Retrieves the [text] from the specified window. *text=value that is got. ;WinGetTitle, text ; Getting the [title] from a window. MsgBox, The text is:`n%text% ; A message box is displayed. Run, Notepad.exe ; Notepad is displayed. | Пусть наш Бог хранит Үкраїну. WinActivate, Notepad ; Notepad is activated. Sleep, 1000 ; After taking a break for a second. Send, The text is [%text%]{^}{^}{;} ; "The text is ~" is displayed on/in the activated notepad. Return ; Returns from a subroutine to which execution had previously jumped.