Hi all,
I want to enter with a AHK scrpit data to chrome without using the mouse position (3) because the mouse position is not working very smooth from my point of view.
My small testcase is https://en.wikipedia.org/ and the search box. If it is possible what ID (1) or something else from the website has to be used ? from my point of view the ID "cdx-text-input__input" should the correct one.
Best regards,
J
I want to enter with a AHK scrpit data to chrome without using the mouse position (3) because the mouse position is not working very smooth from my point of view.
My small testcase is https://en.wikipedia.org/ and the search box. If it is possible what ID (1) or something else from the website has to be used ? from my point of view the ID "cdx-text-input__input" should the correct one.
CODE:
<^>!g::
{
ControlFocus,cdx-text-input__input
ControlSetText, cdx-text-input__input, "BLa"
;ControlSend, cdx-text-input__input , "BLa" {Enter}
}
Return
Best regards,
J
Statistics: Posted by JDOE365 — Today, 09:04