What you're after is indeed possible but it's currently an undocumented feature (mostly because it's difficult to explain clearly).
First, notice that the help files show you how to define comments for a filter:
Code: Select all
+ageM: d AND *.txt //text files modified today>,FFFF00
Well there is a special switch ('m|') that can be placed at the start of the comment to enable "Merging" of separate background and text filters. You apply this switch to a background filter and it tells XY to continue searching for a matching filter for the text color.
What this really means is two things:
1. You have to define the background filters before (above) the text filters.
2. You have to include a comment on the background filters which beings with 'm|'.
So you were close on your first attempt! To get it working you need the following:
Code: Select all
+ageM: 0 d //m|>,FFFF00
+*.png;*.jpg;*.gif;*.tif;*.tiff;*.bmp;*.ppt;*.jpeg;*.sid;*.ecw;*.jp2;*.psd>EA0000,
Note that you can combine the switch with the comments so the following is also valid:
Code: Select all
+ageM: 0 d //m|Modified Today (with Merging)>,FFFF00
+*.png;*.jpg;*.gif;*.tif;*.tiff;*.bmp;*.ppt;*.jpeg;*.sid;*.ecw;*.jp2;*.psd>EA0000,
For full details you can read this thread (don't worry it's not long):
http://www.xyplorer.com/xyfc/viewtopic. ... 974#p54974
Hope that helps!
EDIT: To clarify, the switch is actually just 'm'. The '|' specifies the end of switches/beginning of comments. However, since there are currently no other publicly known switches, it's just as easy (though no more correct) to refer to 'm|' as the switch.
