I know I know use the search tool. Well I have been and I have got pretty far but im stuck. I have been creating this script to create folders on our server at work called “Graphics”. Where designers save their files making them available to all users. 2 things that I’m having problems with are If the user tries to create the file and is not connected to “Graphics” can I change that message to say something to effect of “Not Connected to Graphics Server.” Instead of “Cant make “Graphics” into type item”.
Using this great resource I have successfully integrated custom icons (removed them from this script). But I was also wondering if it is possible to have a header in the display dialog window. Like the application name.
Thanks in advance for any help.
tell application "Finder"
set MasterNumber to text returned of (display dialog "Please Enter Master Number:" default answer "M1")
set Client to text returned of (display dialog "Please Enter Client:" default answer "JWT")
set Job to text returned of (display dialog "Please Enter Job Title:" default answer "Demo")
set loc to "Graphics"
set newfoldername to MasterNumber & "_" & Client & "_" & Job
set newfo to make new folder at loc with properties {name:newfoldername}
make new folder at newfo with properties {name:"AfterEffects"}
make new folder at newfo with properties {name:"Audio"}
make new folder at newfo with properties {name:"Combustion"}
make new folder at newfo with properties {name:"Deko"}
make new folder at newfo with properties {name:"Docs"}
make new folder at newfo with properties {name:"Mac"}
make new folder at newfo with properties {name:"SEQ"}
make new folder at newfo with properties {name:"Targa"}
set artw to make new folder at newfo with properties {name:"Interactive"}
make new folder at artw with properties {name:"Flash"}
make new folder at artw with properties {name:"Elements"}
make new folder at artw with properties {name:"Video"}
end tell