#PPx Paper Plane xUI において開いているタブのパスをコピー先としてメニュー表示
copy_menu.js
//!*script
// タブをメニューとして表示してコピー先を選択する
// PPx 1.41 x64 + Script Module R14
var tabs = PPx.Pane.Tab;
if (tabs.Count < 3) PPx.Execute('%k"C"'); // タブが3個未満なら普通のコピー
var tab = '';
var paths = {};
var path = '';
for (var i = 0; i < tabs.Count; i++) {
tab = tabs.Item(i);
path = tab.Extract('%D');
if (tab.Type == 1) {
paths[path] = 1;
continue;
}
if (paths[path] == undefined) paths[path] = 0;
}
var id = 65; // A
PPx.Execute("*setcust -|M_copy_to="); // 初期化
for (var path in paths) {
if (paths[path] == 1) var focus = String.fromCharCode(id);
PPx.Execute('*setcust M_copy_to:&' + String.fromCharCode(id) + ' ' + path.replace('\\t', '\\\\t') + '= *ppcfile copy, "' + path + '"\n');
id++;
}
PPx.Execute("%M_copy_to," + focus); // 反対窓のパスを選択
を作って *script copy_menu.js
を実行。
Author And Source
この問題について(#PPx Paper Plane xUI において開いているタブのパスをコピー先としてメニュー表示), 我々は、より多くの情報をここで見つけました https://qiita.com/hokorobi/items/8bc5d897acac114753c0著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .