You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use AppleScript version "2.4" -- Yosemite (10.10) or lateruse scripting additionsactivate application "QuickTime Player"-- 叫醒 QuickTimetell application "System Events" -- 让系统起来干活 tell process "QuickTime Player" -- 让系统去监督 QuickTime set frontmost to true click menu item "新建屏幕录制" of menu "文件" of menu bar 1 -- 点击「菜单栏 - 文件 - 新建屏幕录制」 repeat until exists window "屏幕录制" -- 等待「屏幕录制」窗口出现 end repeat tell application "System Events" to keystroke " " -- 按一下空格键开始录制 end tellend telldelay 0.5tell application "System Events" click at {720, 450}end tell