Hi there,
I think you may have to do it in two parts...
One:
Code:
set monthname to month of (current date) as text
if monthname = "January" then set monthnum to 1 as text
if monthname = "February" then set monthnum to 2 as text
if monthname = "March" then set monthnum to 3 as text
if monthname = "April" then set monthnum to 4 as text
if monthname = "May" then set monthnum to 5 as text
if monthname = "June" then set monthnum to 6 as text
if monthname = "July" then set monthnum to 7 as text
if monthname = "August" then set monthnum to 8 as text
if monthname = "September" then set monthnum to 9 as text
if monthname = "October" then set monthnum to 10 as text
if monthname = "November" then set monthnum to 11 as text
if monthname = "December" then set monthnum to 12 as text
set daynum to day of (current date) as text
set yearnum to year of (current date) as text
set theName to (monthnum & daynum & yearnum)
tell application "Finder"
make new folder at desktop with properties {name:theName}
end tell
Copy this into Script Editor...
Applications-->AppleScript-->Script Editor
Then Save it as an Application.
This will create the folder for you !
...thinking of stage two !
regards
Ric