Autohotkey v2实现快速联网断网(原神卡bug用) #Requires AutoHotkey v2.0 ;以管理员权限运行 #HotIf WinActive("ahk_exe yuanshen.exe") ;以太网改为自己电脑上的连接名,可使用 netsh interface show interface 命令查看 commandPrefix := A_ComSpec ' /c netsh interface set interface "以太网" ' global net...
(A_EventInfo) #HotIf WinActive("ahk_class AutoHotkeyGUI") $Enter::SayHello() Return SayHello(*) { If WinExist("ahk_class SoPY_Comp") { Send("`n") ;输入法捕捉完Enter继续发送一个Enter return } If not WinExist("ahk_class SoPY_Comp") { ;搜狗输入法 Saved := MyGui.Submit(true) ...
必须上一下autohotkey(V2)代码,已经写上注释,直接见下代码 SetTitleMatchMode "RegEx" ;由于xshell的title会变,因此需要设定ahk的title匹配模式为正则 SetTitleMatchMode "Slow" ;匹配模式slow,虽然慢一些,但匹配的会更好吧。。。 #HotIf WinActive("ahk_exe Xshell.exe") ;只在xshell窗口激活时触发 XButton2...
if (WinActive("ahk_class WorkerW") || WinActive("ahk_class Shell_TrayWnd") || WinActive("ahk_class Progman")) return WinActivate(window) if WinGetMinMax(window) WinRestore(window) else WinMaximize(window) } Re: V2设置快捷键怎样才能不作用于桌面和任务栏 Posted:08 Jan 2024, 21:28 byMach...
附上AutoHotkey v2-beta代码 请使用链接里的AutoHotkey64.exe,打包了部分基础库以解决环境问题,比如解析yaml配置文件的库 #hotif WinActive("ahk_class PotPlayer64") F9::_SS.potSave(1);保存PotPlayer当前文件名称和时间 F10::_SS.potRestore(1);PotPlayer 当前播放文件跳转到记录的时间 ...
#Requires AutoHotkey v2;~^s::Reload;Win+F12启停此脚本 #SuspendExempt #F12::Suspend #SuspendExempt False CapsLock::Backspace;右Alt(+Shift)输入中文标点>!,::,>!.::。>!+,::《>!+.::》>!\::、>!+/::?>!;::;>!+;:::>!'::Send"‘’">!+'::Send"“”">!+9::(>!+0::)>!
AutoHotkey中文版是AutoHotkey中文社区“zj1d”在AutoHotkey v2版本上进行中英文适配而来,更多适合中文用户的功能和习惯正在积极完善和筹备中,敬请期待! 如果您有好的建议可以在评论区留言! 下面先放出目前中英文功能对照表: #头指令 原版中文 #Include #导入 #IncludeAgain #再次导入 #DllLoad #加载动态库/#加载DLL...
() } } else if WinActive("ahk_class WeChatMainWndForPC") { ;微信右键消息内容并点击多选 if !WinExist("ahk_class CMenuWnd") send("{RButton}") WinWait("ahk_class CMenuWnd") try UIA.FindElement(WinGetID(), "MenuItem", "多选").ClickByMouse() } else { ;记事本测试 run("notepad....
I checked the V2 doco on SetTitleMatchMode and it's default mode is 2. I don't need it in my case since I'm using "A" for Active Window and start my script with #HotIf WinActive("ahk_class AgWinMainFrame") which, according to the doco, will restrict the hot ke...
上面是V2的语法,如果使用V1,则HotIf可用IfWinActivate代替,即 #IfWinActive ahk_class CASCADIA_HOSTING_WINDOW_CLASS 除了在命令行中使用Python,Jupyter notebook也是常见的用于快速验证的Python IDE,而在命令行中进入notebook环境,也同样需要先开启conda。在进入notebook环境后,活动窗口也从命令行变成浏览器,故而添加...