0
這是我當前的代碼:如何使查找程序在applescript中運行鍵盤快捷鍵?
tell application "Finder"
tell application "System Events" to keystroke "k" using {command down}
end tell
但它不會工作。
任何提示?
這是我當前的代碼:如何使查找程序在applescript中運行鍵盤快捷鍵?
tell application "Finder"
tell application "System Events" to keystroke "k" using {command down}
end tell
但它不會工作。
任何提示?
你不告訴Finder告訴系統事件做什麼。
您需要確保您要截取擊鍵的應用程序處於活動狀態。然後告訴系統事件做擊鍵。
tell application "Finder" to activate
tell application "System Events"
keystroke "k" using {command down}
end tell