Animation will not display on watch

Hey all, I’ve been having some trouble doing animation for my watchface and finally got it to work in the web creation tool, but unfortunately none of the images will load when the watchface is on the watch.

The way I have it set is that I basically have 10 different images that cycle transparency depending on the location of the second hand (as this is the only way it would work in the web tool). Here is what I have for the first image:

$#DWFSS#>0&&#DWFSS#<=1?100:0$||$#DWFSS#>10&&#DWFSS#<=11?100:0$||$#DWFSS#>20&&#DWFSS#<=21?100:0$||$#DWFSS#>30&&#DWFSS#<=31?100:0$||$#DWFSS#>40&&#DWFSS#<=41?100:0$||$#DWFSS#>50&&#DWFSS#<=51?100:0$||$#DWFSS#>60&&#DWFSS#<=61?100:0$||$#DWFSS#>70&&#DWFSS#<=71?100:0$||$#DWFSS#>80&&#DWFSS#<=81?100:0$||$#DWFSS#>90&&#DWFSS#<=91?100:0$||$#DWFSS#>100&&#DWFSS#<=101?100:0$||$#DWFSS#>110&&#DWFSS#<=111?100:0$||$#DWFSS#>120&&#DWFSS#<=121?100:0$||$#DWFSS#>130&&#DWFSS#<=131?100:0$||$#DWFSS#>140&&#DWFSS#<=141?100:0$||$#DWFSS#>150&&#DWFSS#<=151?100:0$||$#DWFSS#>160&&#DWFSS#<=161?100:0$||$#DWFSS#>170&&#DWFSS#<=171?100:0$||$#DWFSS#>180&&#DWFSS#<=181?100:0$||$#DWFSS#>190&&#DWFSS#<=191?100:0$||$#DWFSS#>200&&#DWFSS#<=201?100:0$||$#DWFSS#>210&&#DWFSS#<=211?100:0$||$#DWFSS#>220&&#DWFSS#<=221?100:0$||$#DWFSS#>230&&#DWFSS#<=231?100:0$||$#DWFSS#>240&&#DWFSS#<=241?100:0$||$#DWFSS#>250&&#DWFSS#<=251?100:0$||$#DWFSS#>260&&#DWFSS#<=261?100:0$||$#DWFSS#>270&&#DWFSS#<=271?100:0$||$#DWFSS#>280&&#DWFSS#<=281?100:0$||$#DWFSS#>290&&#DWFSS#<=291?100:0$||$#DWFSS#>300&&#DWFSS#<=301?100:0$||$#DWFSS#>310&&#DWFSS#<=311?100:0$||$#DWFSS#>320&&#DWFSS#<=321?100:0$||$#DWFSS#>330&&#DWFSS#<=331?100:0$||$#DWFSS#>340&&#DWFSS#<=341?100:0$||$#DWFSS#>350&&#DWFSS#<=351?100:0$

A bit much, but it worked in the web interface. And this is applied incrementally for each of the 10 pictures so that it creates a fluid animation. Any ideas as to why it might not be displaying on the watch itself? Thanks.

@Kentrei - First of all, let me say, very impressive use of expressions! This is a beast and we’re always for new tools to make expression building & debugging better and more fun, so let us know if there’s anything you’d like to see!

For this expression in particular, we don’t currently support boolean operators between conditionals on the watch (we’ll try to make this clearer in the documentation), however if you change the pattern to this $#DWFSS#>0&&#DWFSS#<=1?100:$$#DWFSS#>10&&#DWFSS#<=11?100:$...and so on... where you remove the 0 from the third segment of each conditional and remove the || between each, it should work on both platforms.

Let us know if you have any more questions!