Autohotkey 自动热键:如何在字符串中转义%?

Autohotkey 自动热键:如何在字符串中转义%?,autohotkey,Autohotkey,我有脚本,应该打开chrome.exe来显示网页 if WinExist("ahk_class Chrome_WidgetWin_1") { WinActivate ; Automatically uses the window found above. WinMaximize ; same Run C:\Program Files (x86)\Google\Chrome\Application\chrome.exe "https://mobilex.pe

我有脚本,应该打开chrome.exe来显示网页

if WinExist("ahk_class Chrome_WidgetWin_1")
{   
    WinActivate  ; Automatically uses the window found above.
    WinMaximize  ; same
    Run C:\Program Files (x86)\Google\Chrome\Application\chrome.exe    "https://mobilex.personio.de/calendar/team-view?eventTypes=time_off%3D45700&status=all&departments=73561&preventScrollTop=true"
当我运行此脚本时,我得到:


因此,我想我需要一种方法,如何在上面的URL中避开接近3D45700的%。因为当我删除%时,url将被调用,不幸的是,它无法工作,因为url缺少一个重要参数。

请参阅此自动热键文档


感谢您使用`对字符串中的%进行转义