プラグインの場所(パス)を表示する
説明
プラグインのある場所(ローカルファイルへのパス)はplugInsのpathプロパティに格納されているので、これを読み出します。
サンプル [
実行する
]
console.show();
console.clear();
for (i=0; i<app.plugIns.length; i++)
{
str = app.plugIns[i].name + " : " + app.plugIns[i].path;
console.println(str);
}