Filemaker には、AppleScript を利用する機能があります。
Filemaker 内から、6 つのサブフォルダーを保持する新しいフォルダー (FileMaker フィールドの名前を持つ) を作成したいと考えています。
私はApplescriptに関しては完全な初心者です。
これまでの私のスクリプトは次のとおりです。
tell application "FileMaker Pro Advanced"
set folder_name to cell "FolderName" of current record
end tell
tell application "Finder"
activate
make new folder at folder "Desktop" of folder "dick" of folder "Users" of startup disk with properties {name:folder_name}
end tell
tell application "Finder"
activate
make new folder at folder {name:folder_name} of folder "Desktop" of folder "dick" of folder "Users" of startup disk with properties {name:"subfolder"}
end tell
私の問題は次のとおりです。「Subfolder1」の作成
私の間違いは何ですか?
助けていただければ幸いです