Watchmaker Wiki

The ultimate watch maker for Android Wear!

User Tools

Site Tools


tips:flashingtext

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tips:flashingtext [2015/01/28 19:31] – [Explanation] jt3tips:flashingtext [2015/01/28 19:39] (current) – [Flashing/Alternating Text or Graphics] jt3
Line 1: Line 1:
 ====== Flashing/Alternating Text or Graphics ====== ====== Flashing/Alternating Text or Graphics ======
  
-Ever want to display flashing text?  How about a battery indicator that flashes when the battery drops below 20%?  Or, maybe you'd like to show weather and date in the same space?  Here's how.+Ever want to display flashing text?  How about a battery indicator that flashes when the battery drops below 20%?  Or, maybe you'd like to show weather and date in the same space?  Here's how.  All example formulas are designed for the **Opacity** field.
  
 ===== Examples ===== ===== Examples =====
Line 7: Line 7:
 ==== Flashing ==== ==== Flashing ====
  
-   {drss}%6>=3 and 100 or 0 +   {drss}%6<3 and 100 or 0
-   +
 ==== Conditional Flashing ==== ==== Conditional Flashing ====
  
-   {bl}>=20 and 100 or {drss}%6>=3 and 100 or 0+   {bl}>=20 and 100 or {drss}%6<3 and 100 or 0
  
 ==== Alternating ==== ==== Alternating ====
Line 28: Line 27:
 You can add conditions to this, such as having the text flash when battery level is below 20%. In the example, the battery level display is steady until battery level falls below 20%, where it will start flashing.  This could be set the opposite way (Like a "Charge Battery Now!" sign) by simply changing that first 100 to 0. You can add conditions to this, such as having the text flash when battery level is below 20%. In the example, the battery level display is steady until battery level falls below 20%, where it will start flashing.  This could be set the opposite way (Like a "Charge Battery Now!" sign) by simply changing that first 100 to 0.
  
-Alternating text is basically this, twice.  You could choose to alternate colors, which means you probably still want to flash quickly, or you could use it to alternate displays, such as have date and weather alternate, so that both show in the same exact space.  In this case, you'd want to slow things down a bit.  Simply changing {drss} to {ds} in that same formula will slow things down so that each would display for seconds.  You alternate simply by reversing the opacity values on the objects, so that when one is 100 the other is 0 and vice versa. +Alternating text is basically this, twice.  You could choose to alternate colors, which means you probably still want to flash quickly, or you could use it to alternate displays, such as have date and weather alternate, so that both show in the same exact space.  In this case, you'd want to slow things down a bit.  Whereas {drss} takes 1 second to become divisible by 6, {ds} takes 6 seconds to get there.  So, simply changing {drss} to {ds} in that same formula will slow things down to a 3-second flash, rather than 1/2 second.  You alternate simply by reversing the opacity values on the objects, so that when one is 100 the other is 0 and vice versa. In this case, weather and date (or whatever) can each show for 3 seconds before switching to the other display.
tips/flashingtext.txt · Last modified: 2015/01/28 19:39 by jt3