Search found 423 matches

by Norn
30 Apr 2024 11:23
Forum: Tips & Tricks, Questions & Answers
Topic: [CLOSED] The formatlist() "d" parameter does not seem to be able to filter duplicate items, a list of one per line
Replies: 2
Views: 30

Re: The formatlist() "d" parameter does not seem to be able to filter duplicate items, a list of one per line

Removing duplicates only works on adjacent items, so if the list is not sorted non-adjacent duplicates remain in the list.
I saw the notes. :whistle:
by Norn
30 Apr 2024 10:48
Forum: Tips & Tricks, Questions & Answers
Topic: [CLOSED] The formatlist() "d" parameter does not seem to be able to filter duplicate items, a list of one per line
Replies: 2
Views: 30

[CLOSED] The formatlist() "d" parameter does not seem to be able to filter duplicate items, a list of one per line

$paper = <<<MENU D:\test\1 D:\test\1.txt D:\test\1.zip D:\test\[2] D:\test\[2](1).zip <-dupe D:\test\[2].txt D:\test\[2].zip D:\test\[2] D:\test\[2](1).zip <-dupe D:\test\[2].txt D:\test\[2].zip MENU; text $paper; $paper = formatlist($paper, "d", <crlf>); text $paper It will work if you a...
by Norn
30 Apr 2024 10:20
Forum: Tips & Tricks, Questions & Answers
Topic: [SOLVED] How formatlist() filters item containing characters such as []
Replies: 5
Views: 70

Re: How formatlist() filters item containing characters such as []

Thanks!
I tested by renaming and it seems to be ineffective. :oops:
items.png
items.png (3.27 KiB) Viewed 32 times
by Norn
30 Apr 2024 09:48
Forum: Tips & Tricks, Questions & Answers
Topic: [SOLVED] How formatlist() filters item containing characters such as []
Replies: 5
Views: 70

Re: How formatlist() filters item containing characters such as []

formatlist treats [ as the beginning of a range and # as a digit, so you need to escape them by surrounding them with []
I have tried many times but no luck.
I haven't formally learned regular expressions yet, and you can see the mess of expressions in my code...
by Norn
29 Apr 2024 23:23
Forum: Tips & Tricks, Questions & Answers
Topic: [SOLVED] How formatlist() filters item containing characters such as []
Replies: 5
Views: 70

[SOLVED] How formatlist() filters item containing characters such as []

Use a list like this for testing: list.png Items containing [] characters will not be filtered by formatlist(): result.png $items = get("ItemsPathNames", "<crlf>", "a"); $paper = ""; foreach ($item, $items, <crlf>) { if (!regexmatches($item, "^.*zip$|^.*r...
by Norn
01 Apr 2024 16:23
Forum: Bug Reports
Topic: XY extremly slow response (seems freezing) and buggy
Replies: 18
Views: 2253

Re: XY extremly slow response (seems freezing) and buggy

@Skettalee
If you have Everything tool installed, you can try adding a custom column.
EverythingFolderSize column.gif
EverythingFolderSize column.gif (1.02 MiB) Viewed 128 times
by Norn
26 Mar 2024 20:14
Forum: Tips & Tricks, Questions & Answers
Topic: Shared Tag File Size, 2nd try
Replies: 9
Views: 1270

Re: Shared Tag File Size, 2nd try

I saved the tags to ADS (Alternate Data Stream), but it requires NTFS partition format, and Everything 1.5a supports searching ADS.
For backup: WinRAR can compress and save ADS, tick the option or via command line. Or write a script.
by Norn
26 Nov 2023 16:38
Forum: Script Exchange
Topic: [AutoHotkey v2] Redirect Explorer Windows
Replies: 8
Views: 921

Re: [AutoHotkey v2] Redirect Explorer Windows

I added wildcard support in v1.0.5. This PC, Home, etc. need to use CLSID, such as ::{20D04FE0-3AEA-1069-A2D8-08002B30309D} , or use a script to get it: #Requires AutoHotkey v2.0 f3:: ; Press F3 to get the Explorer Selection { explorerItems := explorerGetSelection() msgbox("Path Copied!`n"...
by Norn
26 Nov 2023 12:22
Forum: Script Exchange
Topic: [AutoHotkey v2] Redirect Explorer Windows
Replies: 8
Views: 921

Re: [AutoHotkey v2] Redirect Explorer Windows

Try v1.0.4.

Code: Select all

[excludeList_OnePerLine]
::{26EE0668-A00A-44D7-9371-BEB064C98683}
E:\Test
by Norn
04 Nov 2023 17:03
Forum: Bug Reports
Topic: Command "setthumb" not working for folders
Replies: 1
Views: 188

Command "setthumb" not working for folders

Starting with v24.40.0207.

Code: Select all

setthumb , "D:\Pic.jpg"
by Norn
18 Oct 2023 17:39
Forum: Bug Reports
Topic: The variable <newpath> in the Switch tabs of the CEA is empty
Replies: 1
Views: 177

The variable <newpath> in the Switch tabs of the CEA is empty

New instance of latest beta, CEA variables don't have any values when switching tabs, assign script to: Configuration | General | Custom Event Actions | Switch tabs echo "Special: " . <newpathspecial> . "<crlf>New: " . <newpath> . "<crlf>Old: " . <oldpath>
by Norn
26 Sep 2023 17:22
Forum: Other Software
Topic: file open/save dialog replacement
Replies: 7
Views: 5150

Re: file open/save dialog replacement

I played around with it again. :) 1) The ControlSetText function causes problems, use the EditPaste function instead. 2) Display automatically, press F4 to switch display. 3) Right-click will close Guis and navigate. 4) Support browse dialog. 5) Automatic second Gui size. 6) Automatically update XY ...
by Norn
23 Sep 2023 23:45
Forum: Script Exchange
Topic: [AutoHotkey v2] Redirect Explorer Windows
Replies: 8
Views: 921

[AutoHotkey v2] Redirect Explorer Windows

This script requires AutoHotkey v2 The redirection process hides the Explorer window and is normally invisible. The ini file is a configuration file and can be modified according to needs. RedirectExplorerWindows_TrayMenu.png CLSID list v1.0.6: Redirect Recycle Bin, correct regular expression. v1.0...
by Norn
18 Sep 2023 23:17
Forum: Other Software
Topic: file open/save dialog replacement
Replies: 7
Views: 5150

Re: file open/save dialog replacement

I played around with the AutoHotkey script a bit. Press F4 in the open/save dialog to display the queue Guis. The Gui on the right displays the XY tabs. I like using Listary. Queue Guis (File open or save dialog path switcher).png ImageButtons (Floating toolbar) Borderless &amp; Simplified versi...