C:\my_script\videoRemote\remoteKey.ahk
GroupAdd, remoteKey, ahk_exe msedge.exe
GroupAdd, remoteKey, ahk_exe chrome.exe
GroupAdd, remoteKey, ahk_exe 哔哩哔哩.exe
GroupAdd, remoteKey, ahk_exe bdcam.exe
GroupAdd, remoteKey, ahk_exe PotPlayerMini64.exe
#IfWinActive ahk_group remoteKey
{
AppsKey::
SendInput {Insert}
return
Enter::
SendInput {Space}
return
}
#p::Suspend
C:\my_script\videoRemote\remoteKeyEV.ahk
GroupAdd remoteKey, ahk_exe msedge.exe
GroupAdd remoteKey, ahk_exe chrome.exe
GroupAdd remoteKey, ahk_exe 哔哩哔哩.exe
GroupAdd remoteKey, ahk_exe bdcam.exe
GroupAdd remoteKey, ahk_exe PotPlayerMini64.exe
GroupAdd remoteKey, ahk_exe aDrive.exe
#IfWinActive ahk_group remoteKey
{
AppsKey::
SendInput {Ctrl Down}{F12}{Ctrl Up}
Return
Enter::
SendInput {Space}
return
}
#p::Suspend
C:\my_script\videoRemote\remoteKeyEV_autohotkey_v2.ahk
GroupAdd "remoteKey", "ahk_exe msedge.exe"
GroupAdd "remoteKey", "ahk_exe chrome.exe"
GroupAdd "remoteKey", "ahk_exe 哔哩哔哩.exe"
GroupAdd "remoteKey", "ahk_exe bdcam.exe"
GroupAdd "remoteKey", "ahk_exe PotPlayerMini64.exe"
HotIfWinActive "ahk_group remoteKey"
{
Down::{
SendInput "{Ctrl}+{F12}"
}
Enter::{
SendInput "{Space}"
}
}
#p::Suspend
C:\my_script\videoRemote\sportOteBandicam.ahk
Process, priority, , High ;
Media_Prev::
SendInput {Insert}
return
Media_Play_Pause::
SendInput {Space}
return
C:\my_script\videoRemote\sportOteEV.ahk
Process, priority, , High ;
GroupAdd remoteKey, ahk_exe msedge.exe
GroupAdd remoteKey, ahk_exe chrome.exe
GroupAdd remoteKey, ahk_exe 哔哩哔哩.exe
GroupAdd remoteKey, ahk_exe bdcam.exe
GroupAdd remoteKey, ahk_exe PotPlayerMini64.exe
GroupAdd remoteKey, ahk_exe aDrive.exe
#IfWinActive ahk_group remoteKey
{
Media_Next::
SendInput {Ctrl Down}{F12}{Ctrl Up}
return
Media_Play_Pause::
SendInput {Space}
return
}
#p::Suspend