Advertisement
michaelbtice

Create new text file Applescript

Mar 31st, 2024 (edited)
583
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. set fileName to text returned of (display dialog "Enter a name..." default answer "Untitled.txt" buttons {"Cancel", "OK"} default button "OK")
  2.  
  3. tell application "Finder"
  4.     if exists Finder window 1 then
  5.         set newFilePath to (target of front Finder window as string)
  6.         make new file at (target of front Finder window as text) with properties {name:fileName}
  7.     else
  8.         set newFilePath to (path to desktop)
  9.         make new file at (path to desktop) with properties {name:fileName}
  10.     end if
  11.    
  12.     set newFilePath to newFilePath & fileName as string
  13.     open alias newFilePath
  14. end tell
Advertisement
Comments
  • michaelbtice
    1 year (edited)
    # text 0.24 KB | 0 0
    1. Create a new Automator Quick Action, add the Run Applescript action, paste in this Applescript, and voila, you ALMOST have a recreation of Windows right click create new text file from Explorer. It's just in the Services menu in the top left.
Add Comment
Please, Sign In to add comment
Advertisement