Hi Jason,
One last question please! 
I noticed when running my app on iPad Mini 2 , that ringColor “gets out” of the ring diameter on about 135 degrees position.
I use clockwise spin, and subject problem is NOT present on Android phones.
This problem can be solved by using masks I am not mistaken?
My ringColor alpha is always 1.
“Each progress ring object utilizes two masks that are created on-the-fly, through code. One is to create the “donut hole” effect, and the other is to mask the movement of the ring “slices” as they appear from a zero position. Corona has a nested masking limit of 3, so take care when inserting your progress ring into other masked objects, such as display containers, to make sure you don’t exceed that limit.”
I WILL TRY THIS SOLUTION ON MY IPAD 
local mask = graphics.newMask( "circlemask.png" ) local ringObject = progressRing.new({ radius = 200, bgColor = {1, 0, 0, 1}, ringColor = {0, 1, 0, 1}, ringDepth = .33, time = 4000, }) ringObject:setMask( mask )
I will use Dynamically-Selected Mask and let you know the results!
Many thanks!
Ivan