Search found 13276 matches

by highend
18 May 2024 07:03
Forum: Bug Reports
Topic: Doubled up items in Search Results
Replies: 1
Views: 14

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: 47

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: 47

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: 1313

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: 70

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: 70

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: 61

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: 70

Re: script to open multiple files paths from clipboard

By reformatting the clipboard content to a list of quoted, space-separated items?
by highend
16 May 2024 17:43
Forum: Tips & Tricks, Questions & Answers
Topic: file structure left pane, auto expands on the right pane
Replies: 1
Views: 34

Re: file structure left pane, auto expands on the right pane

menu - user - manage commands...
left side: category: run script
right side: new... - add new command
caption: open in other pane
script: 1062;

and in the same window beyond these lines: assign keyboard shortcut...
by highend
16 May 2024 09:54
Forum: Tips & Tricks, Questions & Answers
Topic: ThisPC folders
Replies: 5
Views: 126

Re: ThisPC folders

That's normal
by highend
16 May 2024 09:36
Forum: Tips & Tricks, Questions & Answers
Topic: Is there any way to apply labels to a folder externally?
Replies: 17
Views: 591

Re: Is there any way to apply labels to a folder externally?

You can do this in any way you want

E.g.: https://chatgpt.com/
Convert this autohotkey v2 script into python {ENTER}
Afterwards paste the script into the checkbox, again {ENTER}

and chatgpt converts it...
by highend
15 May 2024 22:36
Forum: Wishes
Topic: [Done] controlposition() for preview pane?
Replies: 3
Views: 61

[Done] controlposition() for preview pane?

Can you add "PP" (the real one, not the one in the info panel) for this function please?
by highend
15 May 2024 21:56
Forum: Tips & Tricks, Questions & Answers
Topic: CTRL-F in the preview window
Replies: 4
Views: 98

Re: CTRL-F in the preview window

You have to click inside the PP before you can use CTRL+F there so you'd need an external tool (as always e.g. via AHK / AutoIt) that handles this stuff
by highend
15 May 2024 20:30
Forum: Wishes
Topic: extracttext() for Htm and Html
Replies: 7
Views: 106

Re: extracttext() for Htm and Html

E.g. the most simple approach (check your html files if they use the same elements!): $files = <get SelectedItemsPathNames>; $jsAll = ""; $cssAll = ""; $bodyAll = ""; $dst = "D:\output.html"; foreach($file, $files, <crlf>, "e") { $content = readfile(...