Ok
I am trying to do an animation.
I found a tutorial with the following series in the transparency field for three images
Image 1:
$#DWFSS#>0&&#DWFSS#<=100?100:0$
Image 2:
$#DWFSS#>100&&#DWFSS#<=200?100:0$
Image 3:
$#DWFSS#>200&&#DWFSS#<=360?100:0$
I want to do something similar but more limited to when it occurs (plus with nine images lol)
So essentially I only want the animation to occur on the hour, for the first ten seconds; with the last image staying on for two seconds
So I figure the following:
$#DWFMS#>0&&#DWFMS<=6$ (within the first minute)
and
$#DWFSS#>0&&#DWFSS#<=6?100:0$ (within the first second + the actual transparency function)
I just don’t know if i can combine the above two arguments.
I would move the seconds ahead for each image as in the example above, e.g. (minus the DWFSS);
6&&<=12, .
12&&<=18,
18&&<=24,
24&&<=30,
30&&<=36,
36&&<=42,
42&&<=48,
48&&<=60
Any help would be appreciated.
I think I have explained what I am trying to achieve sufficiently.
I am use to excel where i can put as many “=if()” functions within each as i want. I am still learning this language.
I also found the topic about gifs:
But it is once again a single argument. I want this to only occur on the hour.
This is my beginner attempt:
$#DWFMS#>0&&#DWFMS<=6?$#DWFSS#>0&&#DWFSS#<=6?100:0$:0$
Thanks