Search found 13207 matches

by highend
08 May 2018 21:16
Forum: Tips & Tricks, Questions & Answers
Topic: Custom Backup/Copy Window Location
Replies: 2
Views: 443

Re: Custom Backup/Copy Window Location

Why don't you just run a general .ahk script in the background, that can take care of such individual adjustments? E.g. think of all the other people that have two or more monitors (on which one should it be displayed) or don't like that window in a corner but centered / top middle, bottom middle, e...
by highend
08 May 2018 21:12
Forum: Tips & Tricks, Questions & Answers
Topic: How to search for files and only show first match?
Replies: 8
Views: 1201

Re: How to search for files and only show first match?

First you need to tweak your XYplorer.ini file (https://www.xyplorer.com/faq-topic.php?id=tweak): PFAllowZombies=1 Then you can use a script (start it when you are inside the search path, e.g. "Z:\Family_Media\2009"): $pattern = input("Enter the part of the file name to search for&quo...
by highend
08 May 2018 15:23
Forum: Tips & Tricks, Questions & Answers
Topic: How to search for files and only show first match?
Replies: 8
Views: 1201

Re: How to search for files and only show first match?

And MovieFirsts.py contains... what?

Give a real world example with enough input data and the expected output (and expect XY to show a paperfolder afterwards)...
by highend
08 May 2018 12:13
Forum: Tips & Tricks, Questions & Answers
Topic: visual filter
Replies: 11
Views: 1982

Re: visual filter

And now take a close look at your 5 hours line again. What is different comparing it to the 3 hours line?
by highend
08 May 2018 12:03
Forum: Tips & Tricks, Questions & Answers
Topic: visual filter
Replies: 11
Views: 1982

Re: visual filter

Show a screenshot of Menu - Tools - List Management - Power Filters...
by highend
07 May 2018 09:41
Forum: Tips & Tricks, Questions & Answers
Topic: How to use regular expressions,boolean logic.
Replies: 1
Views: 435

Re: How to use regular expressions,boolean logic.

Code: Select all

::help "idh_find.htm#idh_findtabnamemode";
There are some examples...
by highend
27 Apr 2018 14:11
Forum: Tips & Tricks, Questions & Answers
Topic: Copy Paste
Replies: 5
Views: 1300

Re: Copy Paste

You do have these two enabled? Configuration | File Operations | File Operations | Custom Copy Operations | Use Custom Copy Configuration | File Operations | File Operations | Custom Copy Operations | For all copy operations And after clicking this button: Configuration | File Operations | File Oper...
by highend
26 Apr 2018 15:55
Forum: Bug Reports
Topic: Editing tags doesn't restore functionality
Replies: 3
Views: 1081

Re: Editing tags doesn't restore functionality

Your problem probably resulted from an incorrect sort order (it must be case-sensitive), the Check Database... fixes this. Or a script: $file = "<xydata>\tag.dat"; if (exists($file) != 1) { $file = inputfile(<xydata>, "dat", "Open the tag.dat file..."); } $content = rea...
by highend
26 Apr 2018 15:43
Forum: Bug Reports
Topic: Editing tags doesn't restore functionality
Replies: 3
Views: 1081

Re: Editing tags doesn't restore functionality

Did you try to fix it with:
Configuration | Information | Tags | Options | Database Check...
2 x OK button inside the message requesters...

You need to save your config (or at least the tags) afterwards to see the result of this operation in the tag.dat file...
by highend
26 Apr 2018 11:16
Forum: Wishes
Topic: Multiline tabbar
Replies: 24
Views: 5744

Re: Multiline tabbar

XY-wise, this is not possible. But ofc you could write a simple .ahk app, that queries XY via a script sent by WM_COPYDATA e.g. every second and evaluates what XY reports back. Display that stuff in a little window and e.g. dock that to XY. Whenever you select one of the items, again, send a script ...
by highend
26 Apr 2018 08:50
Forum: Tips & Tricks, Questions & Answers
Topic: select special
Replies: 22
Views: 3133

Re: select special

:mrgreen:
1.gif
1.gif (131.74 KiB) Viewed 2084 times
by highend
26 Apr 2018 07:10
Forum: Tips & Tricks, Questions & Answers
Topic: Problems with new configuration
Replies: 13
Views: 1782

Re: Problems with new configuration

Just try it. Configure it without importing preview handlers / catalog. It still does work? Fine. Backup that configuration.
Import preview handlers. Still works? Fine. Do NOT import your catalog. Recreate it from scratch...
by highend
26 Apr 2018 01:00
Forum: Script Exchange
Topic: Move selected files to new folders with same file names
Replies: 14
Views: 4349

Re: Move selected files to new folders with same file names

Code: Select all

    foreach($item, <get SelectedItemsPathNames |>, , "e") {
        moveto "<curpath>\" . regexreplace(gpc($item, "base"), "^(.*?)\.png_date.*", "$1"), $item, , 2;
    }
by highend
26 Apr 2018 00:42
Forum: Script Exchange
Topic: Move selected files to new folders with same file names
Replies: 14
Views: 4349

Re: Move selected files to new folders with same file names

Code: Select all

    foreach($item, <get SelectedItemsPathNames |>, , "e") {
        moveto "<curpath>\" . gettoken(gpc($item, "base"), 1, "."), $item, , 2;
    }