Это, вероятно, ни к чему вас не приведет, но вы можете использовать этот скрипт для циклического прохождения всех ваших пробелов, пока не увидите приложение, на которое вы нацелены ...
set front_application to current application
tell application "Spotify" to next track
tell application "Finder" to set collapsed of front_application to false --makes sure the app isn't minimized
repeat
tell application "System Events" to keystroke (ASCII character 29) using {control down}
display dialog "Correct space?" buttons{"OK"} default button 1 giving up after 4 --don't click 'OK' if the current space isn't showing the target application
if gave up of the result is false then exit repeat
end repeat