LoginSignup
1
1

More than 5 years have passed since last update.

Paper Plane xUI でアプリを起動して選択したフォルダ、ファイルをドロップする #PPx

Posted at

アプリを起動した後にドロップしていたけど、短縮できそうだったのでスクリプトにした。

実行例: *script launchdrop.js,cmd,caption
cmd はエイリアスで登録しておく。
caption はキャプション。

launchdrop.js
//!*script
// アプリを起動してドロップ
// PPx 1.41+2 x64 + Script Module R14

if (PPx.Arguments.length < 2) PPx.Quit(-1);
var cmd = PPx.Arguments.Item(0);
var caption = PPx.Arguments.Item(1);
// cmd はエイリアスに登録する
PPx.Execute("%Obi %'" + cmd + "' %: *autodragdrop " + caption );
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1