2017-08-10 33 views
1

私はappleescriptとautomator.Iを初めて使っています。 まあ、私の問題は、私はそれがフォルダアクションを適用した "仕事"フォルダを持っているということです。 「仕事」、つまり「abc」に新しいフォルダが作成されたら、「abc」に3つの新しいフォルダを作成したいと思います。私のコード指定されたフォルダにフォルダを作成すると、新しいフォルダにサブフォルダを作成します

on adding folder items to this_folder after receiving added_items 
    tell application Finder 
    repeat with this_item in added_items 
     make new folder at this_item with properties {name:"Main"} 
     make new folder at this_item with properties {name:"Lower"} 
     make new folder at this_item with properties {name:"Upper"} 
    end repeat 
    end tell 
end adding folder items to 

答えて

1

をチェックアウトほとんど...

Finderは、二重引用符で囲む必要があり

tell application "Finder" 
+0

コードは大丈夫ですが、新しいフォルダ –

+0

を作成しながら、あなたがいずれかを忘れている可能性があります実行されていませんフォルダアクション設定のステップ。コードを正常にテストしました。 – vadian