Je cherche à créer un AppleScript qui m'aide à ouvrir VSCode dans un dossier spécifique (afin de pouvoir l'utiliser dans la barre d'outils du Finder). J'ai écrit le code suivant :
tell application "Finder"
if exists Finder window 1 then
set currentFolder to target of Finder window 1 as alias
else
return
end if
end tell
tell application "Visual Studio Code" to open quoted form of POSIX path of currentFolder
Cependant, cela ne fonctionne pas. Je n'ai jamais utilisé AppleScript auparavant, je ne sais donc pas ce que je fais de travers.
Comment pourrais-je y parvenir ?
Merci d'avance pour votre réponse.