Search found 33 matches

by mickey4mice
19 Jul 2017 08:00
Forum: Tips & Tricks, Questions & Answers
Topic: Keyboard Shortcut to Toggle View Modes?
Replies: 2
Views: 1310

Keyboard Shortcut to Toggle View Modes?

Hi,

How do I assign a keyboard shortcut to toggle Details/Thumbnail view #1?

Thanks
by mickey4mice
12 Aug 2015 20:38
Forum: Tips & Tricks, Questions & Answers
Topic: Help with Custom Toggle for Sort
Replies: 2
Views: 901

Re: Help with Custom Toggle for Sort

Save this script in your script folder (<xyscripts> in the address bar + enter) as: SwitchSortOrder.xys perm $P_SortOrder; if (!$P_SortOrder || $P_SortOrder == "m") { sortby "name", "a"; $P_SortOrder = "n"; } elseif ($P_SortOrder == "n") { sortby &q...
by mickey4mice
12 Aug 2015 07:46
Forum: Tips & Tricks, Questions & Answers
Topic: Help with Custom Toggle for Sort
Replies: 2
Views: 901

Help with Custom Toggle for Sort

Hi,

Can anyone help me create a custom button that toggles Name(ascending)/Modified(descending)?

Also, how do I assign keyboard shortcuts to easily switch between these 2 sorting?

Thanks
by mickey4mice
27 Jun 2015 02:52
Forum: Wishes
Topic: High Resolution Icons for 1080p & Beyond?
Replies: 2
Views: 1330

High Resolution Icons for 1080p & Beyond?

Hi,

Is there any plan to upgrade to high-res icons for 1080p+ screens? On my Dell XPS13 1080p screen, with Windows scaling disabled for XYplorer, fonts look clear and crisp but icons are rather fuzzy and I'm not even using large icons option.

Image
by mickey4mice
27 Jun 2015 02:38
Forum: Wishes
Topic: Instant Color Filter for Active Pane Only
Replies: 0
Views: 806

Instant Color Filter for Active Pane Only

Would it be possible to add a toggle for instant color filters to apply to active pane only? I use this feature a lot, but with dual pane, colors applied to files in inactive pane often become a distraction.
by mickey4mice
22 Jun 2015 03:02
Forum: Wishes
Topic: Please use Flat color for Labels & Dupe Groups
Replies: 6
Views: 1878

Re: Please use Flat color for Labels & Dupe Groups

I'm on Windows 8.1 myself and I love flat, but I don't seem to have a lot of problems with the current look of the labels. Just to make sure we talk about the same thing, do you have a screenshot showing "gradient makes some color combinations of labels hard to see"? PS: Made some experim...
by mickey4mice
21 Jun 2015 02:56
Forum: Wishes
Topic: Please use Flat color for Labels & Dupe Groups
Replies: 6
Views: 1878

Re: Please use Flat color for Labels & Dupe Groups

The 3D effect here is needed to separate the groups. For a flat approach we would need either separating lines or differing colors. Or? Line or maybe strips across the color, as long as they are flat. I'm more desperate for the labels to go flat though, 3D not only looks dated, it severely limits t...
by mickey4mice
07 Jun 2015 03:55
Forum: Wishes
Topic: Please use Flat color for Labels & Dupe Groups
Replies: 6
Views: 1878

Please use Flat color for Labels & Dupe Groups

Hello, Given all the UI across multiple platforms are moving toward flatness, I'd like to see Label & Dupe Group coloring in XYplorer going flat as well. The gradient implementation looks rather out-of-place in Windows 8 where almost every UI element is fully flat. Would really like to see the c...
by mickey4mice
29 May 2015 21:40
Forum: Script Exchange
Topic: Need Script:Collect Items and Generate QR Code
Replies: 10
Views: 3651

Re: Need Script:Collect Items and Generate QR Code

$pf = "DropStack"; $qrSend = "%APPDATA%\qrSend\qrSend.exe"; $files = replace(formatlist(paperfolder($pf, , , "r"), "q", "<crlf>"), "<crlf>", " "); run """$qrSend"" $files", 1; paperfolder($pf, , , &q...
by mickey4mice
29 May 2015 04:02
Forum: Script Exchange
Topic: Need Script:Collect Items and Generate QR Code
Replies: 10
Views: 3651

Re: Need Script:Collect Items and Generate QR Code

Create a user button for a paperfolder. E.g.: Name: paper:DropStack If you use a different name, change the $pf variable in the script to it^^ The qrSend installer on windows puts the qrSend.exe into the %APPDATA%\qrSend folder. Hence the content of the variable $qrSend in the script. Change it if ...
by mickey4mice
29 May 2015 01:15
Forum: Script Exchange
Topic: Need Script:Collect Items and Generate QR Code
Replies: 10
Views: 3651

Re: Need Script:Collect Items and Generate QR Code

Create a user button for a paperfolder. E.g.: Name: paper:DropStack If you use a different name, change the $pf variable in the script to it^^ The qrSend installer on windows puts the qrSend.exe into the %APPDATA%\qrSend folder. Hence the content of the variable $qrSend in the script. Change it if ...
by mickey4mice
29 May 2015 01:14
Forum: Script Exchange
Topic: Need Script:Collect Items and Generate QR Code
Replies: 10
Views: 3651

Re: Need Script:Collect Items and Generate QR Code

Thanks everyone! highend's paperfolder solution works great for me.
by mickey4mice
28 May 2015 08:23
Forum: Script Exchange
Topic: Need Script:Collect Items and Generate QR Code
Replies: 10
Views: 3651

Need Script:Collect Items and Generate QR Code

Hi, I use a little Java app called qrSend to generate QR code on the file and send it to my phone via phone's QR app over home wifi, I prefer this method to copy files from my PC to android for privacy reasons. So instead of 1 file per QR scan, I'm looking for a script where I can collect various it...