ok so i have taken a look through the WIKI but not had any luck finding my answer, the wiki is amazing and FULL of answers but i cannot find what im looking for, it probably is there i just had no luck finding it, can one of the clever people help PLEASE…
WIKI QUOTE
Ternary operator ( c ? t : f )
A great tool to simplifying expressions, the ternary operator evaluates c as a boolean, then if that evaluation is true, returns t, otherwise returns f.
is it possible to do a string like so…
{string([House : Alarm]) == ‘c’ ?’ [blue|Yes]’}
*c is just and example for the questionable string below
but with the following as the options
(c ? t1) (d ? t2) (e ? t3) (f ? t4)
t1 = yes
t2 = maybe
t3 = probably not
t4 = no
all i keep getting is the return false.