to show text of name in different colors, you can do like this: first make a mq2 tooltip with the "normal" text color for uninvis: ${If[${Group[1].Member.Visible},${Group[1].Member.Name},]} then make one with the invis color: ${If[!${Group[1].Member.Visible},${Group[1].Member.Name},]} Tha...