Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- set fileName to text returned of (display dialog "Enter a name..." default answer "Untitled.txt" buttons {"Cancel", "OK"} default button "OK")
- tell application "Finder"
- if exists Finder window 1 then
- set newFilePath to (target of front Finder window as string)
- make new file at (target of front Finder window as text) with properties {name:fileName}
- else
- set newFilePath to (path to desktop)
- make new file at (path to desktop) with properties {name:fileName}
- end if
- set newFilePath to newFilePath & fileName as string
- open alias newFilePath
- end tell
Advertisement
Comments
-
- 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