Is it possible to tunnel custom results into a panel

Discuss and share scripts and script files...
Post Reply
mydarkpassenger
Posts: 31
Joined: 19 Apr 2014 19:39

Is it possible to tunnel custom results into a panel

Post by mydarkpassenger »

I would like to take a list and compare it against a directory and tell me which files are found against the search in one tab (or which files aren't found). Is this possible or is a better method to highlight the results in a tab against the list?

highend
Posts: 14940
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Is it possible to tunnel custom results into a panel

Post by highend »

Possible. What's better? That depends on you (and what you want to do with the results)...
One of my scripts helped you out? Please donate via Paypal

bdeshi
Posts: 4256
Joined: 12 Mar 2014 17:27
Location: Asteroid B-612
Contact:

Re: Is it possible to tunnel custom results into a panel

Post by bdeshi »

semi-automatic:
Main menu->select->Select items.
Paste item names. names-only or names with path - both types are supported.
[matched files are selected.]
Now exec (paste in addressbar and ENTER) this to report all matched items:

Code: Select all

::text <get selecteditemspathnames "<crlf>">;
or this to report all unmatched items:

Code: Select all

::$sel = <get selecteditemspathnames "|">;#252;$unsel = <get selecteditemspathnames "<crlf>">;selectitems $sel,,0;text $unsel;
Icon Names | Onyx | Undocumented Commands | xypcre
[ this user is asleep ]

Post Reply