Search found 46 matches

by rur54
07 Apr 2017 05:27
Forum: Tips & Tricks, Questions & Answers
Topic: inputselect parent from tabbed list
Replies: 21
Views: 4401

Re: inputselect parent from tabbed list

Hi After using tabbed list in inputselect box it became tiresome to make multiple selections.. searching for a name, I have to select name in list, delete search box, focus on item, find parents, click each, scroll some more find other parent... So not I might go with the route of replacing all tabs...
by rur54
05 Apr 2017 08:34
Forum: Tips & Tricks, Questions & Answers
Topic: inputselect parent from tabbed list
Replies: 21
Views: 4401

Re: inputselect parent from tabbed list

Thanks for reply highend. Yes, from within inputselect(). I know it was not possible but was hoping there was a scripting trick or something. SammaySarkar made a great little wrapper for popupnested() here: https://www.xyplorer.com/xyfc/viewtopic.php?p=147965#p147965 I used that to open taglist as a...
by rur54
05 Apr 2017 01:21
Forum: Tips & Tricks, Questions & Answers
Topic: inputselect parent from tabbed list
Replies: 21
Views: 4401

inputselect parent from tabbed list

hi and my appology for a quick dirty question as I am writing this on work break from my phone. any way through scripting to select parent of an item from tabbed list in inputselect. example: I import lightroom text file as a taglist into checkboxed inputselect so I get some grouping since there is ...
by rur54
01 Apr 2017 11:54
Forum: Tips & Tricks, Questions & Answers
Topic: popup menu icon size?
Replies: 2
Views: 1241

Re: popup menu icon size?

Hi. Sorry, it was late when I rushed the question. By catalog I meant context menus you can create for category items in a catalog with popupmenu command. I have been using autohotkey to create menus and was curious if I can change icon size in xyplorer as I can with ahk. Currently you have somethin...
by rur54
31 Mar 2017 15:54
Forum: Tips & Tricks, Questions & Answers
Topic: popup menu icon size?
Replies: 2
Views: 1241

popup menu icon size?

hi, any way to display bigger icons in popup menu?
I might want to remove "caption" and just display big icons and use "data"... or something like that but not important right now.
Icon size 48 or up to 128 would be good.

Any help is appreciated.
cheers
by rur54
21 Mar 2017 03:44
Forum: Tips & Tricks, Questions & Answers
Topic: regex match if or not exist part of name
Replies: 5
Views: 1180

Re: regex match if or not exist part of name

Thank you for this tutorial.
I was going to ask but did not want to waste you time.
Cheers again.
by rur54
20 Mar 2017 22:19
Forum: Bug Reports
Topic: catalog problem - removing category leaves scripts
Replies: 2
Views: 702

catalog problem - removing category leaves scripts

Hi, not sure if this bug or intended. I have a 300KB catalog and after I delete all "categories" with scripts (not scripts individually) and leave only a few, I assume it would remove all scripts as well from those categories but it looks like all those are left but now invisible. After I ...
by rur54
20 Mar 2017 22:05
Forum: Tips & Tricks, Questions & Answers
Topic: regex match if or not exist part of name
Replies: 5
Views: 1180

Re: regex match if or not exist part of name

Thank you for your time and help.
This works great on that list example but fails to work if I change the list or on actual selected files.
I tried changing things around but am just not as skilled in regex. Now I am not sure it is even possible to do regex that will do what I need.
Cheers
by rur54
19 Mar 2017 12:47
Forum: Script Exchange
Topic: dcFilename Tags
Replies: 0
Views: 824

dcFilename Tags

Hi, I am starting to add tags into filename as it is easier for cross platform searching and grandparents :) They do not have to worry about getting program for this metadata and program for that metadata or figuring out fancy search terms to search files. I looked into TagControl and FlatFileManage...
by rur54
19 Mar 2017 11:57
Forum: Tips & Tricks, Questions & Answers
Topic: regex match if or not exist part of name
Replies: 5
Views: 1180

Re: regex match if or not exist part of name

As I could not get this simple one-line regex to work I did it a long way... This seams to work but I am sure there is a better way. Not really important, but if anyone has a better solution I would love to know. Cheers $List = <<<>>> doc1_by_name.doc doc2_by_name-temp.doc doc3_by_name [tag1 tag2].d...
by rur54
19 Mar 2017 06:55
Forum: Tips & Tricks, Questions & Answers
Topic: regex match if or not exist part of name
Replies: 5
Views: 1180

regex match if or not exist part of name

Hi, I am regex dumb for now... Slowly learning and have looked some examples here and on regexlib.com But it has been few days on off when I have time but I decided to ask for some help as I believe it is quite easy (when you know it) I have combination of these filenames A_by_B A_by_B-C A_by_B-C [D...
by rur54
15 Mar 2017 19:51
Forum: Tips & Tricks, Questions & Answers
Topic: get parent content in popupnested()
Replies: 9
Views: 3426

Re: get parent content in popupnested()

@SammaySarkar
Thank you! Works well so far.
by rur54
15 Mar 2017 12:30
Forum: Tips & Tricks, Questions & Answers
Topic: get parent content in popupnested()
Replies: 9
Views: 3426

popupnested - get all menu names as path?

Hi, I came across "popupnested" and have been trying it out but can not figure out how to get entire manu path. For example if I click on Cb2, I would like to get entire path (all parents and child) like A1\B3\Cb2. Any way to get that path? Thank you all. from help.. $menu = <<<MENU A1 B1;...
by rur54
06 Mar 2017 20:45
Forum: Script Exchange
Topic: auto generate script menu? loop list of names...
Replies: 5
Views: 1455

Re: auto generate script menu? loop list of names...

thanks highend. I ended up doing this. Actually was quite simple. No need for anything else $base = "?:\documents\"; $subfolders = <<<>>> folder1 folder2 folder3 >>>; $dstFolder = popupmenu($subfolders, , , , , , <crlf>); if ($dstFolder) { moveto $base$dstFolder, get("SelectedItemsPat...