我有一個automator腳本,它應該使瀏覽器全屏顯示,並使用命令+ 0將其縮回到默認大小。全屏工作,但忽略帶有0的按鍵。Automator keystroke不能用於零數字
tell application "System Events"
keystroke "f" using {command down, control down}
keystroke "0" using {command down}
end tell
我想:
keystroke "0" using {command down}
keystroke 0 using {command down}
keystroke {29} using {command down}
所有被忽略。
在告訴系統事件和按鍵之前,您必須告訴您的瀏覽器並將其激活。然後擊鍵將按預期發送到您的瀏覽器。 – pbell
你的意思是返回輸入。是的,我有。這只是告訴腳本的一部分。命令+ F執行,但不執行命令+ 0 – Omar
什麼是瀏覽器和命令+ 0應該執行什麼操作? (我試過Safari,但是命令+ 0什麼都不做) – pbell