2016-08-30 3 views

答えて

0

フォルダアクションは標準追加で定義されています。このアクションのための完全な構文は次のとおりです

app = Application.currentApplication() 
app.includeStandardAdditions = true 

function addingFolderItemsTo(this_folder, {afterReceiving:added_items}) 
{ 
    app.beep(2) 
    // your code here uses this_folder and/or added_items 
} 

パラメータ:

this_folderが受信フォルダに別名である

on adding folder items to this_folder after receiving added_items 

あなたJXAスクリプトが何かこのようなになります。

は、ドロップされたアイテムのエイリアスのリストです。私は、ファイルのパスを表示するには、フォルダのアクションワークフローを構築できるのAutomatorを使って

+0

@KZNatt、その答えはあなたのために働いたのですか? –

+0

悲しいことにそれはしなかった: '( – KalanyuZ

1

のみJavaScriptを使用してフォルダに移動:

function run(input, parameters) { 
    var app = Application.currentApplication(); 
    app.includeStandardAdditions = true; 
    var text = "FileName = " + input[0]; 
    var options = { }; 
    app.displayAlert(text, options); 

    return input; 
} 

私は助けることができる願っています。

関連する問題