0 votes

Je sais comment créer un fichier de raccourci (.txt) dans le Finder, mais je veux aller un peu plus loin [aide au codage].

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 & "\""

1voto

wch1zpink Points 6067

Voici ce qui devrait vous convenir

try
    tell application "Finder" to set the this_folder ¬
        to (container of the front Finder 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 & "\""

set theFile to thefullpath as POSIX file as alias

tell application "TextEdit" to open theFile

LesApples.com

LesApples est une communauté de Apple où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres utilisateurs d'appareils Apple, poser vos propres questions ou résoudre celles des autres.

Powered by:

X