0
マウスカーソルがテキストカーソルに変更されたかどうかを知り、新しいアクションをアクティブにしたいと思っています。Autohotkey - マウスカーソルがテキストカーソルに変更されたかどうかを検出するにはどうすればよいですか?
以下のコード:
#IfWinActive, ahk_exe chrome.exe
/* I want to put the if statement here; if not text cursor then the following would be activated */
Left::
{
SendInput, ^+{Tab} ; Navigate one tab back in chrome
}
return
Right::
{
SendInput, ^{Tab} ; Navigate one tab forward in chrome
}
return
/* End of the if statement */
#IfWinActive
感謝万人!