Page 1 of 1
Coloring individual Files
Posted: 28 Aug 2015 15:09
by djmccartney
Is there any way to color the file name text (or the background) in a detail file list?
I process (print) multiple PDF files daily and it would be helpful to color code the rush jobs.
sshot-2015-08-28-[1].png
Re: Coloring individual Files
Posted: 28 Aug 2015 15:11
by highend
Menu - Favorites - Labels - choose a color?
Re: Coloring individual Files
Posted: 31 Aug 2015 23:03
by djmccartney
OK - that helps.
Now to create a macro so I can turn the color off & on quickly.
Thanks - Dave
Re: Coloring individual Files
Posted: 31 Aug 2015 23:23
by highend
Code: Select all
if (tagitems() == 4) { // 4 = green
tagitems(, "");
} else {
tagitems(, 4);
}
Re: Coloring individual Files
Posted: 01 Sep 2015 05:28
by bdeshi
there' a default button you can add via right click toolbar > customize toolbar for setting/unsetting all labels.
Re: Coloring individual Files
Posted: 19 Sep 2015 19:47
by djmccartney
Thanks to all.
SammaySarkar's suggestion works perfectly. "Ctrl R" to highlight in red, "Ctrl C" to clear.