I used the following script to open new space in Ventura, after updating the new OS the script no longer works. Does anyone know any solution, If there’s an alternative way please share.
tell application "System Events"
do shell script quoted form of "/System/Applications/Mission Control.app/Contents/MacOS/Mission Control"
click button 1 of group "Spaces Bar" of group 1 of group "Mission Control" of process "Dock"
do shell script quoted form of "/System/Applications/Mission Control.app/Contents/MacOS/Mission Control"
end tell
Thanks for the script it works on the macOS Sonoma 14.1.1
I added the following
tell application "System Events" to tell application process "Dock"
key code 160
delay 1
tell group 2 of group 1 of group 1
click (buttons whose description is "add desktop")
end tell
delay 0.25
key code 53 -- # Esc key on US English Keyboard
end tell