First: include this script in UDC:
- Code: Select all
//Collect
getkey $c, "items", "collected", "collect.ini";
focus;
#101;
set $p, <clipboard>.<crlf>.$c;
replace $p, $p, <crlf>,"|";
replace $p, $p, "||","|";
setkey $p, "items", "collected", "collect.ini";
Next: include this script in UDC:
- Code: Select all
//Copyto
input $c, Copy items to <curpath> (add folder if needed);
getkey $p, "items", "collected", "collect.ini";
copyto "<curpath>\$c", $p;
setkey , "items", "collected", "collect.ini";
All set. I simply use Shift+C to collect items I need and finally use Shift+P to dump them.
How it works: Your files will be collected in the collect.ini file inside XYpath and when you are ready, files will be pasted and items in collect.ini will be emptied.
I have tested this 4-5 times now and it works. But be cautious anyways.

