Search found 13283 matches

by highend
20 May 2024 13:32
Forum: Wishes
Topic: modified in the hover box in addition to the file names
Replies: 4
Views: 55

Re: modified in the hover box in addition to the file names

Configuration | Information | File Info Tips & Hover Box | Show Hover Box | Tips...

...
by highend
20 May 2024 05:12
Forum: Bug Reports
Topic: sorting by labels
Replies: 9
Views: 114

Re: sorting by labels

@Norm

Thanks for the donation, totally unexpected :mrgreen:
by highend
20 May 2024 05:08
Forum: Tips & Tricks, Questions & Answers
Topic: Extract and rename extracted files
Replies: 4
Views: 57

Re: Extract and rename extracted files

Then don't do this with visible files but scan for them (the script doesn't continue anyway as long as the extraction isn't finished yet) (listfolder() / quicksearch()) and then do all renaming stuff on what's inside the variable instead of any selection first...
by highend
19 May 2024 16:34
Forum: Tips & Tricks, Questions & Answers
Topic: Does anyone else "Version Lock" their XY install ?
Replies: 2
Views: 40

Re: Does anyone else "Version Lock" their XY install ?

does anyone else "version lock" their XY ? No. I'm collection all versions (since v10) in an archive, so whatever I need can be extracted if necessary i see posts from time to time where people are referencing older/previous versions Or just because they've bought only a one-year license ...
by highend
19 May 2024 14:27
Forum: Bug Reports
Topic: sorting by labels
Replies: 9
Views: 114

Re: sorting by labels

From the changelog:
#335; sorted by Len instead of Status.
Shouldn't this be:
#335; sorted by Len instead of Label.
?
by highend
18 May 2024 23:51
Forum: Bug Reports
Topic: sorting by labels
Replies: 9
Views: 114

Re: sorting by labels

Could be a bug

#335 = Sort by label

But if used: menu - view - sort by
switches to len instead of label...

Don?
by highend
18 May 2024 07:03
Forum: Bug Reports
Topic: Doubled up items in Search Results
Replies: 2
Views: 57

Re: Doubled up items in Search Results

From what I visually see this only happens if you at least use two search terms (and ofc they are in the same root folder)
If three or more are selected doesn't matter beyond that point.
by highend
17 May 2024 19:41
Forum: Wishes
Topic: Avoid similar Tags...
Replies: 4
Views: 68

Re: Avoid similar Tags...

The 'Add Tags...' window
You need a shortcut for TAB+ENTER? Crazy^^
by highend
17 May 2024 16:57
Forum: Wishes
Topic: Avoid similar Tags...
Replies: 4
Views: 68

Re: Avoid similar Tags...

Why don't you use tag lists?
Tag creation window
Which window is that (and it doesn't close via Escape)?
by highend
17 May 2024 09:51
Forum: Tips & Tricks, Questions & Answers
Topic: How to suppress *.url and *.lnk file name extensions in DetailsView?
Replies: 15
Views: 1331

Re: How to suppress *.url and *.lnk file name extensions in DetailsView?

Code: Select all

renameitem(regexreplace(gpc(<curitem>, "base"), "^(.+?)(\.[^.]+?)$", "$1") . ".lnk");
by highend
16 May 2024 22:24
Forum: Script Exchange
Topic: script to open multiple files paths from clipboard
Replies: 7
Views: 95

Re: script to open multiple files paths from clipboard

If FoxitPDFEditor.exe automatically skips items that don't exist, you're lucky because you aren't quoting them... You are assigning the clipboard to a variable for no reason, you could also directly use it for the loop foreach has a flag to skip empty items so the whole if ... else statement in the ...
by highend
16 May 2024 21:10
Forum: Script Exchange
Topic: script to open multiple files paths from clipboard
Replies: 7
Views: 95

Re: script to open multiple files paths from clipboard

You need quote() | trim() and replace(), go and read their documentation and write it yourself?
by highend
16 May 2024 20:58
Forum: Wishes
Topic: [Done] controlposition() for preview pane?
Replies: 3
Views: 73

Re: controlposition() for preview pane?

Added in v25.90.0150 :appl:
by highend
16 May 2024 20:53
Forum: Script Exchange
Topic: script to open multiple files paths from clipboard
Replies: 7
Views: 95

Re: script to open multiple files paths from clipboard

By reformatting the clipboard content to a list of quoted, space-separated items?