I wonder if it is possible in applescript to create a script for which we give as input the application name and a number N, so this app gets opened in the Space\'s space nu
This works to switch to Space 2 and then back to Space 1:
tell application "System Events"
key code 19 using {control down} -- control+2 is switch to Display Space 2
end tell
delay 1.0
tell application "System Events"
key code 18 using {control down} -- control+1 is switch to Display Space 1
end tell
delay 1.0