Create and paste name of new folder from script in FMP5.5

Newbie to Applescript: I’d like to create a new folder to store FMP created PDF files and be able to paste in certain fields into the title of the folder. Is this possible? I checked many sites and could not find a create folder command or a paste command. :?

Yes this is possible. The below is just an example of how to make a folder. The variable theName should be created with the info from FMP and the variable someFolder should be the location where you want the new folder to be created.

tell application "Finder"
make folder with properties {name:theName} at someFolder
end tell

Hope this helps,
D

Thanks D! I’ll give this a try tomorrow> If I have any more questions can I get back to you?

Mike