(Windows)[alt]キーのダブルプレスのショートカットで Chromeアプリに切り替える

# [alt]キーダブルタップでVSCodeを保存してChromeへ切り替え
~LAlt:: ;~ prefix when the hotkey fires, its key's native function will not be blocked
IF !(A_TickCount < LAlt)
{
  KeyWait, LAlt
  LAlt := A_TickCount + 150
  Return
}
LAlt =
If WinActive("ahk_exe chrome.exe"){   ;Chromeがアクティブな時は何もしない

}else If WinActive("ahk_exe Code.exe"){  ;VS Codeがアクティブなら保存してChromeをアクティブにする
    Send,^+s
    WinActivate,ahk_exe chrome.exe
}else{
    WinActivate,ahk_exe chrome.exe    ;それ以外はChromeをアクティブにする
} 
return
No.1981
04/01 14:33

edit

(Windows)[alt]キーのダブルプレスのショートカットで Chromeアプリに切り替える

●(Windows)[alt]キーのダブルプレスのショートカットで Chromeアプリに切り替える

# [alt]キーダブルタップで Chromeへ切り替え
~LAlt:: ;~ prefix when the hotkey fires, its key's native function will not be blocked
IF !(A_TickCount < LAlt)
{
  KeyWait, LAlt
  LAlt := A_TickCount + 150
  Return
}
LAlt =
  IfWinExist ahk_class Chrome_WidgetWin_1
    winactivate ahk_class Chrome_WidgetWin_1
  else
    Run chrome.exe 
    WinWaitActive ahk_class Chrome_WidgetWin_1
Return
No.1980
04/01 14:33

edit

(Windows)[alt]キーのダブルプレスのショートカットで Chromeを起動する

●(Windows)[alt]キーのダブルプレスのショートカットで Chromeを起動する

# [alt]キーダブルタップで Chrome起動
~LAlt:: ;~ prefix when the hotkey fires, its key's native function will not be blocked
IF !(A_TickCount < LAlt)
{
  KeyWait, LAlt
  LAlt := A_TickCount + 500
  Return
}
LAlt =
Run chrome.exe
Return
No.1978
03/31 11:06

edit