Search found 483 matches

by Norn
12 Oct 2025 10:48
Forum: Wishes
Topic: microsoft photo viewer
Replies: 10
Views: 5727

Re: microsoft photo viewer

Code: Select all

"Photos" {:Image}>::runq "ms-photos:viewer?fileName=" . urlencode("<curitem>")
or

Code: Select all

"Photos" {:Image}>::shellopen "ms-photos:viewer?fileName=" . urlencode("<curitem>")
by Norn
28 Sep 2025 22:27
Forum: Tips & Tricks, Questions & Answers
Topic: double-click on a pic, opening the image in full screen?
Replies: 27
Views: 4607

Re: double-click on a pic, opening the image in full screen?

When in a thumbnail view in XYplorer, you can use Mouse Down Blowup (MDBU). Refer to Tools > Configuration > Mouse Down Blowup. There's no need to double-click. You can set your normal (single) left-click on a thumbnail to blow-up the image and have it stay up while the left mouse button is being h...
by Norn
27 Sep 2025 14:53
Forum: Tips & Tricks, Questions & Answers
Topic: double-click on a pic, opening the image in full screen?
Replies: 27
Views: 4607

Re: double-click on a pic, opening the image in full screen?

Modify the registry. Or use AutoHotkey, modify the path to your actual XYplorer and compile it into an exe program. Then right-click the image and select Set as Default from the context menu. . . #Requires Autohotkey v2 if A_Args.length try Run '"D:\Tools\XYplorer\XYplorer.exe" /feed=|::go...
by Norn
08 Sep 2025 23:34
Forum: Wishes
Topic: Single-click to open an item, set or toggle
Replies: 10
Views: 10204

Re: Single-click to open an item, set or toggle

By the way, I use Single-click to open an item | On the icon only. For images I use Floating Previews and MDBU. It would be nice to be able to right-click on the icon to open the item.
(Sometimes frequent double-clicking causes fatigue so I need Single-click to open an item.)
by Norn
27 Aug 2025 08:17
Forum: Bug Reports
Topic: Beta... loading delay
Replies: 22
Views: 10259

Re: Beta... loading delay

Ah, this is a new instance. It was not checked in my configuration. 0 ms: 1,095 ms - Start Load 1,095 ms: 21 ms - Init Language 1,116 ms: 142 ms - Load Language 1,258 ms: 464 ms - Load Settings 1,722 ms: 54 ms - Init Custom File Icons 1,777 ms: 121 ms - Init Controls 1,898 ms: 438 ms - Init Graphics...
by Norn
27 Aug 2025 07:46
Forum: Tips & Tricks, Questions & Answers
Topic: Need a script please..
Replies: 13
Views: 6233

Re: Need a script please..

Thanks Norm for this "For Reference Only" script but unfortunately I don't have enough knowledge to make it work through to completion where it simply works. I tried as is just to see what happens and get I popups to confirm each file one by one then time stamping errors and then clicking...
by Norn
27 Aug 2025 07:36
Forum: Bug Reports
Topic: Beta... loading delay
Replies: 22
Views: 10259

Re: Beta... loading delay

I do not use tree. If possible, do not load the tree at startup when the tree is hidden... 0 ms: 1,354 ms - Start Load 1,354 ms: 79 ms - Init Language 1,433 ms: 163 ms - Load Language 1,596 ms: 485 ms - Load Settings 2,081 ms: 64 ms - Init Custom File Icons 2,145 ms: 201 ms - Init Controls 2,346 ms:...
by Norn
26 Aug 2025 02:49
Forum: Tips & Tricks, Questions & Answers
Topic: Need a script please..
Replies: 13
Views: 6233

Re: Need a script please..

For complex scripts like this, the AI ​​can usually give you a script that doesn't work, but you can consult the help documentation and provide feedback to fix it. For reference only: // === CONFIG === $src = "G:\Reolink\Reolink_Downloads"; // Root folder to search $dest = "J:\";...
by Norn
16 Aug 2025 21:01
Forum: Wishes
Topic: Go to previous/next sibling folder
Replies: 16
Views: 11247

Re: Go to previous/next sibling folder

admin wrote: 15 Aug 2025 20:48 Seems to go up. Not to sibling.
Sort Folders Apart...
(Will this not be added to the VB version? No problem, I will recommend the tB version to new users.)
by Norn
15 Aug 2025 19:38
Forum: Wishes
Topic: Go to previous/next sibling folder
Replies: 16
Views: 11247

Re: Go to previous/next sibling folder

This is what I implemented for a new user in 2023. It’s not elegant but simple. . .
#523; sel "+1"; if(exists(<curitem>) == "2") {#160;};
by Norn
13 Jul 2025 20:20
Forum: Tips & Tricks, Questions & Answers
Topic: Can you transfer labels & tags to a different computer / XYplorer installment?
Replies: 4
Views: 3573

Re: Can you transfer labels & tags to a different computer / XYplorer installment?

If your new machine doesn't have the same drivers, my thoughts: 1) Back up the configuration files. Search for all items containing tags and labels, then copy(Not move) them to D:\Tagged and keep the folder structure. Finally, copy D:\Tagged and XYplorer to the new machine and continue using them. (...
by Norn
10 Jul 2025 15:57
Forum: Bug Reports
Topic: Right-click items with different folders, the path parameters passed to the context menu is incorrect
Replies: 5
Views: 3191

Re: Right-click items with different folders, the path parameters passed to the context menu is incorrect

It seems to have been supported in previous 64-bit beta? If so, this is probably a bug in the 64-bit version. (I only use Selection Stats)
Alt+Enter
Items in multiple locations.png
Items in multiple locations.png (5.85 KiB) Viewed 2734 times
by Norn
08 Jul 2025 21:30
Forum: Script Exchange
Topic: Get filename on full screen preview pane
Replies: 1
Views: 5702

Re: Get filename on full screen preview pane

There are two ThunderRT6FormDC windows when the Floating Preview is open. The top Floating Preview window does not process WM_COPYDATA, and only has a few controls. You can judge the window by the number of controls. Or get the filename from the window title. Passing commands to XYplorer.exe will wo...
by Norn
07 Jun 2025 13:20
Forum: Script Exchange
Topic: Updated QuickSwitch [AutoHotkey]
Replies: 82
Views: 73118

Re: Updated QuickSwitch [AutoHotkey]

Raf wrote: 06 Jun 2025 09:07 Can you explain a little bit how you use this code? Does it work all the time or only once when the dialog appears?
I didn't add automatic switching, usually I switch it by clicking a button or Ctrl+G after the dialog appears.