Switch between two symbols

I am familiar with using style customizers to animate an image and using timers to change x/y coordinates to animate a symbol. One thing I can’t figure out an easy way to do is to animate by switching between two symbols from the symbol factory. So for instance, there are bubble 1 and bubble 2 symbols that I want to be visible and alternate between when a tag value is 1. I’m guessing there is a simple way to do this?

Thanks!

Yes, you just need to bind the visible property of the symbols to an expression based on a timer. So let’s say you have two symbols and a timer. Your timer can go from 0 to 1 (bound of 2). The first one’s visible property can be bound to:{Root Container.Timer.value} = 0the second one should be:{Root Container.Timer.value} = 1