Search found 13264 matches

by highend
15 May 2024 22:36
Forum: Wishes
Topic: controlposition() for preview pane?
Replies: 0
Views: 11

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: 3
Views: 25

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: 6
Views: 74

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(...
by highend
15 May 2024 20:01
Forum: Wishes
Topic: extracttext() for Htm and Html
Replies: 6
Views: 74

Re: extracttext() for Htm and Html

All complex formats need to be understood by applications that can display them. .htm(l) is rendered (by a browser engine), .pdf is rendered via a viewer that understands that format, etc. You can show html even in XY (via html() ) but this can't be automated... What you need is: loop over all files...
by highend
15 May 2024 17:32
Forum: Wishes
Topic: extracttext() for Htm and Html
Replies: 6
Views: 74

Re: extracttext() for Htm and Html

What do you think happens with a styled document of any type if you remove every formatting? You get chunks of text^^ So you're now asking for a command that preserves the formatting to let you reassemble a styled htm/html document ? That's readfile() and sorry but I'm 100% sure that Don won't inves...
by highend
15 May 2024 16:29
Forum: Wishes
Topic: extracttext() for Htm and Html
Replies: 6
Views: 74

Re: extracttext() for Htm and Html

extractext() is meant to give you text that is stripped from all formatting code (regardless if it's a .doc, .htm or anything else) so I don't understand the feature request here...

If you want a (fast) searchable XY help file, download the .pdf version?
by highend
14 May 2024 21:44
Forum: Tips & Tricks, Questions & Answers
Topic: change date from part of filename
Replies: 1
Views: 42

Re: change date from part of filename

$items = <get SelectedItemsPathNames>; end (!$items), "No item(s) selected, aborted!"; foreach($item, $items, <crlf>, "e") { $base = gpc($item, "base"); $date = gettoken($base, 2, "_"); $date = substr($date, 0, 4) . "-" . substr($date, 4, 2) . "...
by highend
14 May 2024 14:51
Forum: Tips & Tricks, Questions & Answers
Topic: Rapid Access
Replies: 13
Views: 131

Re: Rapid Access

It's where all the elements are that can be shown / hidden (in the tree)?

Configuration | General | Tree and List | Items in Tree and List | Select Items...
by highend
14 May 2024 06:44
Forum: Bug Reports
Topic: illogical navigation?
Replies: 4
Views: 154

Re: illogical navigation?

I could post a little video of it if it would help
Make a .gif animation and attach it to your next posting
by highend
13 May 2024 20:36
Forum: Tips & Tricks, Questions & Answers
Topic: Script or RegEx to replace multiple Search & Replace actions?
Replies: 2
Views: 520

Re: Script or RegEx to replace multiple Search & Replace actions?

$items = <get SelectedItemsNames>; end (!$items), "No item(s) selected, aborted!"; $items = recase($items); $items = regexreplace($items, "( |-|_)+", "-"); $new = ""; foreach($item, $items, <crlf>, "e") { $new .= regexreplace(gpc($item, "base&q...
by highend
07 May 2024 18:20
Forum: Tips & Tricks, Questions & Answers
Topic: Is there any way to apply labels to a folder externally?
Replies: 13
Views: 523

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

Without any details nobody can say anything...
Correct hwnd, correct msg type, content of the script, the check what XY received (look into the scripting section, there is a command for that)...

On holiday for a week, somebody else needs to answer that^^
by highend
06 May 2024 17:18
Forum: Tips & Tricks, Questions & Answers
Topic: Is there any way to apply labels to a folder externally?
Replies: 13
Views: 523

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

E.g. by sending a WM_COPYDATA message with a script to tag that file / folder
by highend
05 May 2024 10:12
Forum: Bug Reports
Topic: Error:93 (0x0000005D), Invalid pattern string
Replies: 2
Views: 159

Re: Error:93 (0x0000005D), Invalid pattern string

It’s a script, check if it works correctly before using it there. The same problem would occur if you didn’t enter it directly but load an external script file instead
by highend
03 May 2024 19:16
Forum: Tips & Tricks, Questions & Answers
Topic: Help with regex search / visual filter
Replies: 3
Views: 121

Re: Help with regex search / visual filter

How you name the column isn't relevant, in the example it's the extra1 column = ex1 and the > isn't part of the name, it's to indicate that's a regex pattern