J'ai suivi John pour créer un nouveau texte de fichier et le faire apparaître avec un raccourci. https://apple.stackexchange.com/a/129702
Mais une fois que j'ai cliqué sur mon raccourci, une fenêtre s'ouvre pour renommer le fichier, puis je dois aller sur le bureau pour l'ouvrir. Je me demandais si je pouvais ajouter une ligne dans le code pour que le fichier ouvrir après l'avoir renommé immédiatement ?
try
tell application "Finder" to set the this_folder ¬
to (folder of the front window) as alias
on error -- no open folder windows
set the this_folder to path to desktop folder as alias
end try
set thefilename to text returned of (display dialog ¬
"Create file named:" default answer "filename.txt")
set thefullpath to POSIX path of this_folder & thefilename
do shell script "touch \"" & thefullpath & "\""