Color Filters
Posted: 02 Feb 2011 05:17
I have several color filters based on groups of file names. I thought I would add a background color based on the age of a file. I was hoping that with a query that had the background cleared would work along side another query that had the text cleared. For example:
+*.png;*.jpg;*.gif;*.tif;*.tiff;*.bmp;*.ppt;*.jpeg;*.sid;*.ecw;*.jp2;*.psd>EA0000,(no color)
ageM: 0 d>(no color),FFFF00
That logic doesn't work so I tried combining them in to one line. Like the following:
(*.png;*.jpg;*.gif;*.tif;*.tiff;*.bmp;*.ppt;*.jpeg;*.sid;*.ecw;*.jp2;*.psd) AND (ageM: 0 d)>EA0000,FFFF00
I added the Parethesis because the ; represents an OR. I want all images created today to be queryed.
I now realize that I will have to add the Age after each file string like the following:
*.png AND ageM: 0 d OR *.jpg AND ageM: 0 d OR etc.
But that will take a long time since I have many different file types not just images.
Anybody have a better way to go about this with shorter syntax?
+*.png;*.jpg;*.gif;*.tif;*.tiff;*.bmp;*.ppt;*.jpeg;*.sid;*.ecw;*.jp2;*.psd>EA0000,(no color)
ageM: 0 d>(no color),FFFF00
That logic doesn't work so I tried combining them in to one line. Like the following:
(*.png;*.jpg;*.gif;*.tif;*.tiff;*.bmp;*.ppt;*.jpeg;*.sid;*.ecw;*.jp2;*.psd) AND (ageM: 0 d)>EA0000,FFFF00
I added the Parethesis because the ; represents an OR. I want all images created today to be queryed.
I now realize that I will have to add the Age after each file string like the following:
*.png AND ageM: 0 d OR *.jpg AND ageM: 0 d OR etc.
But that will take a long time since I have many different file types not just images.
Anybody have a better way to go about this with shorter syntax?