Page 1 of 1

Find Items with Same Tags (Everywhere) in Thumbnails, Tiles or Icons View

Posted: 04 Jun 2026 17:49
by Schuller
When my View selected is Details or Details with Thumbnails I can see the Tags column with my list of tags and I have the option to right click and "Find Items with Same Tags (Everywhere)" and I believe this is because I have "Popup by tags columns right-click" selected in my Configuration. This is sufficient enough for me for that View.
What I would like is to be in one of the other Views (Thumbnails, Tiles, Icons) and have a one-click option (maybe script on user button) after an item is selected that would do the same thing (Find Items with Same Tags Everywhere). Currently I've been switching back and forth between views or using Find files but that is to many clicks and is not as efficient as when I'm Details view.

Re: Find Items with Same Tags (Everywhere) in Thumbnails, Tiles or Icons View

Posted: 04 Jun 2026 18:35
by highend
As a script something like this should work (the tags are taken from the current selected item):

Code: Select all

    $tags = tagitems("tags");
    if ($tags) { goto "Computer?tags:" . quote($tags) . " /rv"; }

Re: Find Items with Same Tags (Everywhere) in Thumbnails, Tiles or Icons View

Posted: 05 Jun 2026 12:39
by Schuller
Works perfect,
Thanks!

Re: Find Items with Same Tags (Everywhere) in Thumbnails, Tiles or Icons View

Posted: 05 Jun 2026 15:33
by highend
My please, as always :oops: