Using the Binding option to change the Text Color property will change the transparency to maximum which makes the…
Using the Binding option to change the Text Color property will change the transparency to maximum which makes the text invisible.
Am I doing something wrong?
]]>
< ![CDATA[
There is probably an issue with color encoding, I will have a look at this.
]]>
< ![CDATA[
Pierre Hébert Now it is working I’ve just found that I should use the color code in this format 0xff000000 before I was using this ff000000.
However, I’m facing a problem to use expression in the Binding. What is wrong with below?
$varCurrPrayer = 4 ? 0xff003378 : 0xff000000
]]>
< ![CDATA[
this is == instead of =
A single = is affectation, while a double == is test for equality (a very very common mistake…)
]]>
< ![CDATA[
Pierre Hébert Thanks. That’s usually happens with newbie 🙂
]]>
< ![CDATA[
Not only 😉 But high level programming tools tend to detect this kind of error nowadays, leaving less room for errors.
]]>