I used this condition to change the transparency of an image. It only works in the browser, but in the watch it does not
(exemple)
$#BLP#>=80p?100:0$
i tried with BLN and BLP
I used this condition to change the transparency of an image. It only works in the browser, but in the watch it does not
(exemple)
$#BLP#>=80p?100:0$
i tried with BLN and BLP
Delete āpā and use #BLN#.
#BLP# gives back a text so you cannot use a math operator on it.
This should work:
$#BLN#>=80?100:0$
Thanks, it worked.