Toolbar icon buttons for each of the following four

Features wanted...
Locked
pat55
Posts: 287
Joined: 15 Mar 2016 22:27

Toolbar icon buttons for each of the following four

Post by pat55 »

I wish that XY would provide separate toolbar icon buttons for each of the
following four (perhaps all):
Details
Thumbnail #1
Thumbnail #2
Thumbnail #3

The display on the thumbnails could be "D", "1", "2","3" say similar to
the large "F" since they would most likely all be needed at about the same
time.

This would also fit well with the age and size icons. One can quickly
find stuff 'visually' with rapid change of views.
I frankly did not know just how handy these single click displays are
until I experienced it. Eliminating one click is a big deal IMHO -when done often.

Perhaps there is a simple way that I could do this myself - do a script or
whatever - but frankly I have limited time/experience available to
experiment.

The current roll-down menu could be kept as is.

This should be of help to a lot of people - so let your opinion weigh in.

p
Attachments
C^ 8-01-10_7674.jpg
C^ 8-01-10_7674.jpg (53.47 KiB) Viewed 1018 times

highend
Posts: 13313
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Toolbar icon buttons for each of the following four

Post by highend »

"List of all commands", get the necessary id, put it in a new tb icon: On left click...
One of my scripts helped you out? Please donate via Paypal

jupe
Posts: 2794
Joined: 20 Oct 2017 21:14
Location: Win10 22H2 120dpi

Re: Toolbar icon buttons for each of the following four

Post by jupe »

If you really have *no* time, you can try these if you want, type

Code: Select all

snippet;

in the XY addressbar and then add the contents of these code blocks in the dialog that pops up, each one will add a button on the far right of your toolbar, you should be able to easily customize one of these for a details button if you want, I didn't bother doing that one for you but the command ID is #302.

Code: Select all

Snip: CTB 1
  XYplorer 18.60.0008, 12/1/18 10:51:30 AM
Action
  NewUserButton
Name
  Thumbnails View 64x64
Icon
  label:64
ScriptL
  #306;
ScriptR
  
FireClick
  0

Code: Select all

Snip: CTB 1
  XYplorer 18.60.0008, 12/1/18 10:51:50 AM
Action
  NewUserButton
Name
  Thumbnails View 192x192
Icon
  label:192
ScriptL
  #307;
ScriptR
  
FireClick
  0

Code: Select all

Snip: CTB 1
  XYplorer 18.60.0008, 12/1/18 10:52:11 AM
Action
  NewUserButton
Name
  Thumbnails View 256x256
Icon
  label:256
ScriptL
  #308;
ScriptR
  
FireClick
  0
these would give you butons that look like this, if you think that is suitable, otherwise just change the icons yourself.
thumb_btns.png
thumb_btns.png (1 KiB) Viewed 1009 times

Locked