Hi all,
I currently have the below script which adds space & brandName to the end of the existing folder name.
What I’m trying to do (and cannot figure out!) is have brandName space appear before the existing folder name when it’s dropped on the script application:
on open added_items
set dropped to item -1 of added_items
set brandName to text returned of (display dialog "What is the Brand name?" default answer "")
tell application "Finder"
set origName to name of dropped
set newName to origName & space & brandName
set name of dropped to newName
end tell
end open
Any pointers greatly received
Regards