Applescript: display the input filename in a notification
Hi, I'm trying to display the input filename in a notification using Automator. Here is my Applescript:
on run {input, parameters}
display notification input with title "Action done" subtitle "Completed"
return input
end run
Is there a way to display the filename/basename of input?
Thanks