Hey bryanisfishing
I played around with the sinus funktion and I found this little line to help you with your problem
Math.sin((time*0.31415915) *5 )*1000000;
The sinus funktion makes the value of the opacity go up and down
the variable time is the timeline variable that feeds the sinus funktion with a continous value
the strange number 0.31415915 is actually there to calibrate the blinking to almost exactly 10seconds. (correct for more than 1hour)
the *5 is the “x” value that you would want to change to set the blinking to your needs
it goes like this
10seconds / x = blinking time
so here it would be 10/5 = 2 so every 2 seconds the layer changes the opacity from 0 to 100
the *1000000 is used so that the blinking isn’t fading.
I hope I could help you