Looping the Progress Ring Module

Hi!

Is there a way to “loop” (start it again) the customized progress bar called Progress Ring Module?

This module is fully explained at http://www.jasonschroeder.com/2014/12/21/progress-ring-module-for-corona-sdk/ , but I couldn’t make it to keep looping.

The init code is like this:


local progressRing = require(“progressRing”)

local ringObject = progressRing.new({

     radius = 80,

     bgColor = {0, 0, 0, 0},

     ringColor = {0, 255, 0, 1},

     ringDepth = .10,

})

-----display ring----------

ringObject.x, ringObject.y = 285, 285

local t = 10000

ringObject:goTo(1,t)

Super thanks in advance!

Eduardo