Тема: AHK: ControlSend
Добрый день! Подскажите пож-та, если стоит русская раскладка, то получается "аНкета. сМирнов а,", если на анг., то всё ок "Анкета. Смирнов А." Стоит win8.1, на win7 на обоих языках без проблем. Заранее спасибо!
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance force
^RButton::
Menu, MyMenu, Add, Анкета, Anketa
Menu, MyMenu, Show
return
anketa:
ControlGetText, text, ToolbarWindow324, ahk_class #32770
msgbox % text ; "Адрес: С:\Test\28.10.2019\Смирнов А"
text := RegExReplace(text, ".+\\(.+)\.*.{0}", "$1")
msgbox % text ; "Смирнов А"
ControlSetText Edit1,, ahk_class #32770
ControlSend, Edit1,Анкета. %text%., ahk_class #32770
return