Search found 13268 matches

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

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: 2
Views: 44

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

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: controlposition() for preview pane?
Replies: 2
Views: 35

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

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

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

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

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

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: 2
Views: 56

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: 16
Views: 224

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

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: 4
Views: 554

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: 17
Views: 577

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^^