Search found 13323 matches

by highend
03 Jun 2024 14:07
Forum: Tips & Tricks, Questions & Answers
Topic: [solved] readfile utf8 crlf
Replies: 6
Views: 65

Re: readfile utf8 crlf

Something like that should work Replace: if($file_ctn != ""){$file_ctn = $file_ctn.<crlf>.$line___n;} if($file_ctn == ""){$file_ctn = $line___n;} With: if($line___n != ""){$file_ctn .= $line___n . <crlf>;} else {$file_ctn .= <crlf>;} And: writefile($file____,$file_ctn,&...
by highend
03 Jun 2024 13:27
Forum: Tips & Tricks, Questions & Answers
Topic: [solved] readfile utf8 crlf
Replies: 6
Views: 65

Re: readfile utf8 crlf

$j = 1; foreach($line____,$file_cto,<crlf>){ sysdebug "j: " . $j . " = '" . $line____ . "'"; $j++; [6956] j: 1 = '' [6956] j: 2 = '' [6956] j: 3 = '12:40 03.06.2024 - Hello, Dear XYplorer Community!' [6956] j: 4 = ' Windows 10 Enterprise LTSC German, XYplorer v. 26.00....
by highend
03 Jun 2024 12:34
Forum: Tips & Tricks, Questions & Answers
Topic: [solved] readfile utf8 crlf
Replies: 6
Views: 65

Re: readfile utf8 crlf

Provide a sample file + the full script?
by highend
02 Jun 2024 23:34
Forum: Tips & Tricks, Questions & Answers
Topic: Dual Monitor
Replies: 3
Views: 57

Re: Dual Monitor

Mouse down blow up previews can be moved (just by moving the mouse while it is displayed) and the position can be remembered Configuration | Preview | Mouse Down Blow Up | Mouse Down on Thumbnails and Icons | [x] Remember relative position I do not have a dual monitor setup any more (but one very la...
by highend
02 Jun 2024 21:37
Forum: Wishes
Topic: exclude files with Live Filter
Replies: 8
Views: 177

Re: exclude files with Live Filter

Replace the last line with
filter trim($pattern, ";") . ")", 1+4+8;
?
by highend
02 Jun 2024 17:44
Forum: Wishes
Topic: exclude files with Live Filter
Replies: 8
Views: 177

Re: exclude files with Live Filter

$words = input("Enter ','-separated words", , "hello,world", "e"); $pattern = "!("; foreach($word, $words, ",", "e") { $pattern .= "*" . trim($word) . "*" . ";"; } copytext trim($pattern, ";") . &quo...
by highend
02 Jun 2024 17:21
Forum: Tips & Tricks, Questions & Answers
Topic: Dinosaur makeover - desperate to look hip
Replies: 35
Views: 511

Re: Dinosaur makeover - desperate to look hip

No I won't. But thanks for adding PatchedIcons so I can get the non-ugly ones back^^
by highend
02 Jun 2024 16:46
Forum: Tips & Tricks, Questions & Answers
Topic: Dinosaur makeover - desperate to look hip
Replies: 35
Views: 511

Re: Dinosaur makeover - desperate to look hip

Simple choice, the old ones as well...
by highend
02 Jun 2024 16:44
Forum: Wishes
Topic: Add 'Programmable Presets' in the Find Files dialog
Replies: 6
Views: 93

Re: Add 'Programmable Presets' in the Find Files dialog

The whole part of that gui doesn't resize like other components so it wouldn't work out for low resolution screens anyway.

You can already script the whole thing and put it on buttons, into the catalog, etc., though...
by highend
01 Jun 2024 15:54
Forum: Wishes
Topic: exclude files with Live Filter
Replies: 8
Views: 177

Re: exclude files with Live Filter

I haven't managed that yet. So the above command two or three times with different words?
The examples include such a case^^

And if it's too much work to type everything in, write a script that creates the necessary pattern for such cases...
by highend
31 May 2024 16:47
Forum: Tips & Tricks, Questions & Answers
Topic: Problem: tabsets stopped working
Replies: 4
Views: 107

Re: Problem: tabsets stopped working

Sounds like a regression. Don will fix that...
by highend
30 May 2024 16:15
Forum: Wishes
Topic: exclude files with Live Filter
Replies: 8
Views: 177

Re: exclude files with Live Filter

Sure it is, read the help about visual filter syntax for the NOT operator...
by highend
30 May 2024 09:08
Forum: Bug Reports
Topic: Error on right clicking ISO images Update
Replies: 7
Views: 130

Re: Error on right clicking ISO images

It's an older thread but obviously the error comes from the AHK side: https://www.autohotkey.com/boards/viewtopic.php?t=69763
Maybe recompiling it with the current version helps (or not^^)...
by highend
30 May 2024 00:41
Forum: Tips & Tricks, Questions & Answers
Topic: How to select entire folder for file found?
Replies: 2
Views: 87

Re: How to select entire folder for file found?

Append {space}+/p to your search term?
by highend
29 May 2024 21:05
Forum: Tips & Tricks, Questions & Answers
Topic: Load XY with Alternate Icon
Replies: 5
Views: 141

Re: Load XY with Alternate Icon

You're missing proper quoting for the content of the script^^

Code: Select all

E.g.:
/script="::appicon 'ABA';"
/script='::appicon "ABA";'