Search found 13312 matches

by highend
30 May 2024 16:15
Forum: Wishes
Topic: exclude files with Live Filter
Replies: 1
Views: 33

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

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: 1
Views: 38

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

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";'
by highend
29 May 2024 15:59
Forum: Script Exchange
Topic: Script to toggle XYPlorer Shell Integration / Default File Manager
Replies: 1
Views: 41

Re: Script to toggle XYPlorer Shell Integration / Default File Manager

In the GUI? You could try sendkeys (before invoking the configuration via command ID) but this would be more or less a hack

Let XY scripting create a .bat file, putt the necessary reg add / delete commands into it and execute it afterwards
by highend
29 May 2024 12:21
Forum: Tips & Tricks, Questions & Answers
Topic: Dinosaur makeover - desperate to look hip
Replies: 25
Views: 249

Re: Dinosaur makeover - desperate to look hip

and what is "Home"?
Probably a tag (it's in the tags subcategory) :mrgreen:
by highend
29 May 2024 08:59
Forum: Reviews
Topic: XYplorer in Reviews, Blogs, Newletters, and other Media...
Replies: 74
Views: 52317

Re: XYplorer in Reviews, Blogs, Newletters, and other Media...

Come on, they never really tested it (KI written?). Too many buttons with unclear functionality... Yeah, it probably was to difficult for them to right click the toolbar and show button captions? Not only scripting seems too advanced for the average tester, even the most basic configuration stuff is^^
by highend
28 May 2024 21:10
Forum: Wishes
Topic: Customize tab context menu
Replies: 3
Views: 85

Re: Customize tab context menu

Then you're out of luck
by highend
28 May 2024 09:18
Forum: Wishes
Topic: Customize tab context menu
Replies: 3
Views: 85

Re: Customize tab context menu

Won't happen and you are free to create the context menu you want by using a custom event action with a script (that your would need to write ofc)
by highend
27 May 2024 23:56
Forum: Tips & Tricks, Questions & Answers
Topic: Is there an "up" button?
Replies: 5
Views: 101

Re: Is there an "up" button?

Ideally, it would be located in the row above the "Name" column Show the navigation buttons in the breadcrumb bar? Or just double click on white in the file list pane (as long as you're using the default association in the custom event section for this and no full row select)? two dots an...
by highend
27 May 2024 11:35
Forum: Bug Reports
Topic: [solved] no dimensions for Webp images
Replies: 8
Views: 157

Re: [solved] no dimensions for Webp images

It's by default included in a fresh instance but we were not talking about custom columns...

The special property - dimensions column does work fine, no need for the cc alternative
by highend
27 May 2024 11:19
Forum: Bug Reports
Topic: [solved] no dimensions for Webp images
Replies: 8
Views: 157

Re: [solved] no dimensions for Webp images

but I had to add the .webp extension in the list of managed files.
You've added it where?
by highend
26 May 2024 23:03
Forum: Bug Reports
Topic: [solved] no dimensions for Webp images
Replies: 8
Views: 157

Re: no dimensions for Webp images

And it's really the special property dimensions column you're using?
by highend
24 May 2024 22:53
Forum: Tips & Tricks, Questions & Answers
Topic: How to Add a "Resolution" Column, when Viewing a Videos folder?
Replies: 8
Views: 154

Re: How to Add a "Resolution" Column, when Viewing a Videos folder?

Your OS is missing the codecs to show that info, hence I suggested to install the k-lite package (v13.8.5 is the latest that still works on XP)
by highend
24 May 2024 22:36
Forum: Tips & Tricks, Questions & Answers
Topic: How to Add a "Resolution" Column, when Viewing a Videos folder?
Replies: 8
Views: 154

Re: How to Add a "Resolution" Column, when Viewing a Videos folder?

Either install the basic k-lite codec package or use mediainfo... $mediaInfo = "<your path to the .exe>\MediaInfo.exe"; return regexreplace(runret("$mediaInfo --Inform=Video;%Width%x%Height% ""<cc_item>"""), "\r?\n"); Or tag them once and show the ta...