Search found 4326 matches

by TheQwerty
30 Mar 2017 15:21
Forum: Wishes
Topic: Custom column - Ability to display icon(s)
Replies: 82
Views: 15934

Re: Custom column - Ability to display icon(s)

Can we please have the the ability to specify a list of icons that are shown side by side? Yep, can be done. Has been done. Filled my morning but it was worth it. Still waiting for a script that emulates a slot machine... :mrgreen: :beer: Thanks Don! However, this doesn't seem to work with Extra Co...
by TheQwerty
30 Mar 2017 13:11
Forum: Wishes
Topic: wishing my scripts could refresh individual items in list
Replies: 8
Views: 2025

Re: wishing my scripts could refresh individual items in list

What about having your script tag the items using one of the extra tags? I'm not sure what would be achieved by that in this thread's context? The active pane's active tab will automatically refresh the extra column when tagging items and you can explicitly tag only the items you want to "refr...
by TheQwerty
30 Mar 2017 12:46
Forum: Wishes
Topic: wishing my scripts could refresh individual items in list
Replies: 8
Views: 2025

Re: wishing my scripts could refresh individual items in list

What about having your script tag the items using one of the extra tags?

EDIT: As for Sammay's wish perhaps a new variable <cc_currentValue>? This would return the cell's current value if it exists which would allow us the ability to act on or even modify it.
by TheQwerty
30 Mar 2017 12:30
Forum: Wishes
Topic: Keyboard navigation "add/edit tags by list"
Replies: 13
Views: 3127

Re: Keyboard navigation "add/edit tags by list"

Odd that Ctrl+Space will not yield.

I have no love for the F-row, so maybe wait until other opinions are voiced.
by TheQwerty
28 Mar 2017 20:45
Forum: Wishes
Topic: Custom column - Ability to display icon(s)
Replies: 82
Views: 15934

Re: Custom column - Ability to display icon(s)

Can we please have the the ability to specify a list of icons that are shown side by side?
by TheQwerty
28 Mar 2017 18:16
Forum: Tips & Tricks, Questions & Answers
Topic: Getting the network path of a local path
Replies: 3
Views: 1408

Re: Getting the network path of a local path

You could also use: File | To Clipboard | Item UNC Path/Name(s)
Which can be accessed from XY's 32-bit context menu if you have enabled Configuration | Menus, Mouse, Safety | Context Menus | Custom items in shell context menu and have To Clipboard checked in the File List... items dialog.
by TheQwerty
28 Mar 2017 17:34
Forum: Wishes
Topic: Paste As SymLink into the right-click drag and drop menu
Replies: 13
Views: 4088

Re: Paste As SymLink into the right-click drag and drop menu

Well, there's still a big question mark for why it doesn't work correctly in XY's 64-bit context menu. I didn't investigate this and am not sure where it might be going wrong. The x86 installer may work better if you only want it to work in XY, but I did not verify this. (I'd lean towards it having ...
by TheQwerty
28 Mar 2017 17:00
Forum: Wishes
Topic: Paste As SymLink into the right-click drag and drop menu
Replies: 13
Views: 4088

Re: Paste As SymLink into the right-click drag and drop menu

:shock: :veryconfused: Link Shell Extension does not appear to register itself correctly. It makes a bunch of registry keys that are prefixed with '32' but many of these should probably be under Wow6432Node instead or should not necessarily be created at all. Further it completely fails to create ot...
by TheQwerty
27 Mar 2017 18:29
Forum: Wishes
Topic: IDEA: allow icon colum to have text overlay & ideas on size-bar scaling
Replies: 18
Views: 3085

Re: IDEA: allow icon colum to have text overlay

Perhaps a means to provide a meaningful tooltip could make its way into phase 1?

Maybe in the form of one of these:

Code: Select all

>"Tooltip" draw.stuff
>draw.stuff ... "Tooltip"
by TheQwerty
27 Mar 2017 14:31
Forum: Tips & Tricks, Questions & Answers
Topic: When in "Live filter box", how to prevent back key to navigate folders?
Replies: 21
Views: 3580

Re: When in "Live filter box", how to prevent back key to navigate folders?

I take it the dominant opinion is NO. Maybe, but it's not my opinion. As long as Enter navigates into a folder then there needs to be a way to get back out of the folder. Without such the feature is unbalanced and tends towards chaos. The issues I had with the backspace in empty LFB behavior was th...
by TheQwerty
23 Mar 2017 13:58
Forum: Tips & Tricks, Questions & Answers
Topic: Click Columns no longer triggered by Refresh Column
Replies: 3
Views: 1033

Click Columns no longer triggered by Refresh Column

v17.80.0001 - 2017-03-22 16:21 . . . * Custom Columns: Experimentally a Refresh Column on columns with trigger "Click" now restores the Click icon. Before, it processed a fake click for each item in the list. Why was this change made? I personally found the previous behavior rather useful...
by TheQwerty
23 Mar 2017 12:38
Forum: Tips & Tricks, Questions & Answers
Topic: When in "Live filter box", how to prevent back key to navigate folders?
Replies: 21
Views: 3580

Re: When in "Live filter box", how to prevent back key to navigate folders?

I'm confused.

Why are you asking that specific question Don?
Especially since the OP is asking about a third option: go nowhere.
by TheQwerty
22 Mar 2017 16:35
Forum: Reviews
Topic: Like a new feature? Say thanks here
Replies: 880
Views: 310816

Re: Like a new feature? Say thanks here

When draw.circle was first introduced I didn't think too much of it, but having played with it for the last few days I must say..

draw.circle is absolutely my new favorite feature!

Fantastic idea, Don!
:appl: :tup: :beer:
by TheQwerty
22 Mar 2017 16:15
Forum: Tips & Tricks, Questions & Answers
Topic: Drawing colored circles according to number ranges
Replies: 8
Views: 2128

Re: Drawing colored circles according to number ranges

You could do something like this: $quality = tagitems('ex3',, <cc_item>); switch (true) { case $quality >= 85: return ">draw.circle , 0c00ff, 150"; //High case $quality >= 70: return ">draw.circle , 00fe0f, 150"; //Good case $quality >= 55: return ">draw.circle , fefe0c, 150...