combo Instant color filter syntax help....

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
kunkel321
Posts: 664
Joined: 10 Jun 2012 03:45
Location: Near Seattle

combo Instant color filter syntax help....

Post by kunkel321 »

Hi All,

Should one of these work?
This one:
"New red to old blue" ageC:>5 d ;ageM: >5 d >,D2D2FF||ageC:<5 d;ageM: <5 d >,B1FEDA||ageC:<1 d;ageM: <1 d >,FFFFBB||ageC:<120 n;ageM: <120 n >,FFCB97||ageC:< 10 n;ageM: < 10 n >,FF9D9D
Or the reverse order:

Code: Select all

"New red to old blue" ageC:< 10 n;ageM:  < 10 n >,FF9D9D||ageC:<120 n;ageM:  <120 n >,FFCB97||ageC:<1 d;ageM:  <1 d >,FFFFBB||ageC:<5 d;ageM:  <5 d >,B1FEDA||ageC:>5 d ;ageM: >5 d >,D2D2FF
I want Back Colors only, and I want these colors
Red
FF9D9D
Orange
FFCB97
Yellow
FFFFBB
Green
B1FEDA
Blue
D2D2FF

It should be newer files/folders are red, then go through the spectrum to older files being blue. No matter which of these I use, all of the files/folders are blue.

Thots?
ste(phen|ve) kunkel
Scaling: Main monitor 125%, Secondary monitor on the right 100%
OS: Win 10. XYplorer version: Latest beta, unless specified.

TheQwerty
Posts: 4373
Joined: 03 Aug 2007 22:30

Re: combo Instant color filter syntax help....

Post by TheQwerty »

Ordering matters! ;)

The <1d patterns will never get evaluated because those items are already satisfied by the <5d entry.
Likewise, the <10n entries are already colored by the <120n entry.

Start with the smallest unit and work your way up:

Code: Select all

"New red to old blue" ageC:<10 n;ageM:<10 n>,FF9D9D||ageC:<120 n;ageM:<120 n>,FFCB97||ageC:<1 d;ageM:<1 d>,FFFFBB||ageC:<5 d;ageM:<5 d>,B1FEDA||ageC:>5 d;ageM:>5 d>,D2D2FF

kunkel321
Posts: 664
Joined: 10 Jun 2012 03:45
Location: Near Seattle

Re: combo Instant color filter syntax help....

Post by kunkel321 »

Thanks.
ste(phen|ve) kunkel
Scaling: Main monitor 125%, Secondary monitor on the right 100%
OS: Win 10. XYplorer version: Latest beta, unless specified.

Post Reply