Does not work with Visual Studio Code
tituswoo opened this issue ยท 5 comments
tituswoo commented
jnewland commented
Interesting! Does this applescript return a list of windows when run in the Applescript Editor?
set output to ""
set theapp to "/Applications/PATH TO VISUAL STUDIO CODE"
tell application theapp
set mywindowlist to the name of every window whose visible is true
end tell
repeat with n in mywindowlist
set output to output & n & return
end repeat
return output
tituswoo commented
jnewland commented
Hmm, that's interesting! The same applescript works fine with all other applications that I'm using, so I'm not sure how to address this problem offhand :/.
nikitavoloboev commented
Doesn't work for Visual Studio Code for me too. Perhaps it's because VS Code is an electron app and doesn't have an applescript dictionary. Is there any way to add support to it?
Love the workflow.
jnewland commented