Search found 4326 matches

by TheQwerty
22 Mar 2017 15:34
Forum: Wishes
Topic: Sorting by Size
Replies: 24
Views: 4531

Re: Sorting by Size

admin wrote:So, sorry, needs more meditation...
I love that as the OP you're apologizing to yourself here. :lol: :P
by TheQwerty
22 Mar 2017 15:29
Forum: Bug Reports
Topic: Scripting Bugs
Replies: 605
Views: 98462

Re: Scripting Bugs

Sigh, you are right, of course. Okay okay... No, it's really okay - that was not an attempt to guilt you into making it work. If that's a limitation of CCS and it is documented then it is perfectly okay in my mind to have this limitation. There are already differences in how the CCS dialog takes sc...
by TheQwerty
22 Mar 2017 15:09
Forum: Tips & Tricks, Questions & Answers
Topic: Possible set "name" for "on right click" in user buttons?
Replies: 10
Views: 2365

Re: Possible set "name" for "on right click" in user buttons?

You need to specify a caption for your scripts. So change your click definitions to: "Paste Image Into New File" #206; "Paste As Shortcut(s)" #218; Further you can use the variable version of get('MenuCaption', command_ID, flags) to pull the captions used by XY for these command....
by TheQwerty
22 Mar 2017 14:41
Forum: Bug Reports
Topic: Scripting Bugs
Replies: 605
Views: 98462

Re: Scripting Bugs

Not looking forward to the confusion this will cause but I'm okay with the limitation.
by TheQwerty
22 Mar 2017 14:38
Forum: Wishes
Topic: Sorting by Size
Replies: 24
Views: 4531

Re: Sorting by Size

Not really.
by TheQwerty
22 Mar 2017 14:36
Forum: Bug Reports
Topic: Scripting Bugs
Replies: 605
Views: 98462

Re: Scripting Bugs

admin wrote:No, I just finished the thinking: User functions are not supported in the column scripts. Will update Help file.
But they can still be used if the CC loads a script file, right?
by TheQwerty
22 Mar 2017 13:15
Forum: Bug Reports
Topic: Scripting Bugs
Replies: 605
Views: 98462

Re: Scripting Bugs

Combination of functions and concatenation perhaps?
by TheQwerty
22 Mar 2017 12:40
Forum: Bug Reports
Topic: Scripting Bugs
Replies: 605
Views: 98462

Re: Scripting Bugs

Custom columns do not seem to like functions (or multiple 'returns'): Snip: CustomColumn 1 XYplorer 17.70.0208, 3/22/2017 7:36:18 AM Action ConfigureColumn Caption Test Type 3 Definition function A() { return 'A'; } function C() { return B() . 'C'; } function B() { return A() . 'B'; } return C() . '...
by TheQwerty
21 Mar 2017 19:25
Forum: Wishes
Topic: Zombie Tags (or Static Tags)
Replies: 3
Views: 965

Re: Zombie Tags (or Static Tags)

If you include (mode=2) the static database then XY treats them as read-only and no changes are made to the static database. If you import (mode=1) then XY copies them into the current database and changes will be made in the current database but the static database is left untouched. You can furthe...
by TheQwerty
21 Mar 2017 19:09
Forum: Wishes
Topic: Zombie Tags (or Static Tags)
Replies: 3
Views: 965

Re: Zombie Tags (or Static Tags)

How about storing these static tags in a separate tags database and then using tagload($staticDB, 2); to include them?
by TheQwerty
21 Mar 2017 11:18
Forum: Other Software
Topic: Save Icon Locations - Minor, but I do Hate Losing my Desktop Setup
Replies: 7
Views: 4080

Re: Save Icon Locations - Minor, but I do Hate Losing my Desktop Setup

Dustydog wrote:Looks like an interesting product. Curious if you're just using fences or went whole hog with their object desktop?
I've only used Fences. I'm hesitant to install programs that hook into the depths of Windows and try to replace the shell. Plus I'm still on Windows 7 so... :whistle:
by TheQwerty
20 Mar 2017 21:05
Forum: Wishes
Topic: Custom column - Ability to display icon(s)
Replies: 82
Views: 15941

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

2017-03-20 155948.png
2017-03-20 155948.png (10.92 KiB) Viewed 2532 times
I know this screenshot says otherwise, but we really need 'draw.oval' with the ability to specify height AND width.

It would beat asking XY to draw 100 overlapping circles for every item and should look quite a bit smoother.
by TheQwerty
20 Mar 2017 20:34
Forum: Bug Reports
Topic: Website and Help Typos
Replies: 392
Views: 95208

Re: Website and Help Typos

Now that Microsoft is showing ads within File Explorer it might be worthwhile to mention that XYplorer provides an ad-free experience. :P

Explore files without an adblocker!
by TheQwerty
20 Mar 2017 16:33
Forum: Wishes
Topic: Custom column - Ability to display icon(s)
Replies: 82
Views: 15941

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

v17.70.0208 takes care of 1 (default color), 2 (yellow), and 5 (crlf). :appl: Recapping: 3) Now I occasionally can see a flash of red and then it restores the correct color. Note that it is actually flashing the default text color (which I temporarily made red for debugging purposes) so it might not...
by TheQwerty
20 Mar 2017 15:25
Forum: Wishes
Topic: Custom column - Ability to display icon(s)
Replies: 82
Views: 15941

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

5) Might be nice if <crlf> could be used as an alternative separator to ';' so that we can more easily define multiple circles with a HEREDOC. Fun tip: Make your column return a permanent variable and then you can easily play with drawing circles from the address bar. return ">draw.circle $P_CI...