Quote:
Originally Posted by Wiggo
Sorry for necroing this old thread.
If I have two conditions with true/false to show two icons simultaneously I will need 4 rules with composed icon sets?
00
xx
0x
x0
|
Yes, if you want different icons for true and false.
I think it would be easier to use a single advanced rule that returns a compound icon. Something like this, but with the column names changed and the logic you want.
Code:
program:
icon1 = if $$#myint != 'none' then 'cry-icon.png' else 'dictionary.png' fi;
icon2 = if $$#mybool != 'true' then 'arrow-down.png' else 'arrow-up.png' fi;
icon1 & ':' & icon2
EDIT: added image of results