Page 1 of 1

combo Instant color filter syntax help....

Posted: 17 Mar 2015 16:44
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?

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

Posted: 17 Mar 2015 18:04
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

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

Posted: 17 Mar 2015 18:58
by kunkel321
Thanks.