I’d like to create a folder on my desktop but the script is too specific in that it only works on the existing user account. I’d like this very simple script to work on ANY user account. Here’s the code that works, it’s just too specific. I want the program to be able to run on any computer and not just mine.
tell application "Finder"
activate
display dialog "Name of new content directory" default answer "" buttons {"Cancel", "OK"} default button 2 with icon 1
set the name_folder to the text returned of the result
make new folder at folder "Desktop" of folder "dmn_01" of folder "Users" of startup disk with properties {name:name_folder}
. . .
Thanks. Seeing as how I have about 90 minutes of experience with AppleScript could I ask someone where that code should go? As soon as that’s fixed my first script is done!!!