0

この AppleScript には、私が購入したビデオ変換プログラムが付属しています。ダウンロードしたビデオのフォルダーを監視し、そのビデオをアプリケーションにインポートします。問題は、受け入れられない MP3 もインポートすることです。importファイルが MP3 でない場合にのみ、このスクリプトを編集する方法を誰か教えてもらえますか?

on adding folder items to thisFolder after receiving addedItems

    repeat with movieFile in addedItems
        tell application "iFlicks"
            import movieFile without gui
        end tell
    end repeat

end adding folder items to
4

1 に答える 1

1

試す:

on adding folder items to thisFolder after receiving addedItems
    repeat with movieFile in addedItems
        set isMP3 to false
        tell application "System Events" to if name extension of (contents of movieFile) is "mp3" then set isMP3 to true
        if not isMP3 then tell application "iFlicks" to import movieFile without gui
    end repeat
end adding folder items to
于 2013-05-29T02:07:26.707 に答える