There are two timers we can use to move things about the screen .
[UTC_TS] and [SEC_MSEC] .
The first is the Universal Time Code which is a big number running in Milliseconds . It is used on most digital products throughout the World . The beautiy for us it just continualy counts it does not go to zero every 60 second like the second one .
We have to make it into a sensible number to use it .
(([UTC_TS]/5000)%1)*400)
Deviding it by 1000 gets round the milisecond and deviding it by a furthur 5 will give us a 5 seconds cycle . Then because that is still a big number we Modulus the number by 1 , % in this formula means modulus .
This givers us a number that runs 0 to 1 every 5 seconds and we Multiply that by the Distance in Pixels we want to travel
. Put the Formula in a text box and delete elements with thier associated () and see the numbers . [UTC_TS] ( UNIX EPOCH TIMER ) is facinating it runs out in Feb 2023.
This should make a completely smooth scrolling but Samsung have introduced a Glitch to it to discourage us from using it because it is a Battery Drain .