He seguido a John para crear un nuevo filetext y que aparezca un acceso directo. https://apple.stackexchange.com/a/129702
Pero una vez que le doy al acceso directo, se abre una ventana para renombrar el archivo y luego tengo que ir al escritorio para abrirlo. Me preguntaba si podría añadir una línea en el código para que el archivo Abrir ¿después de cambiarle el nombre inmediatamente?
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 & "\""