How can I make a UIProgressView with Corona SDK

Hello.

I would like to know if you can help me out.

I would like to make a UIProgressView,

or a Progress Circle Counter.

Something similar to what you have in iTunnes,

or quick time

or other programs, where you see the play button

and as soon as you tap, a circular image is rotation

to show the progress of the audio, until it finish the audio

you see a complete black circle.

Something similar to that.

Thanks for your help.

https://docs.coronalabs.com/daily/api/library/widget/newProgressView.html

http://www.jasonschroeder.com/2014/12/21/progress-ring-module-for-corona-sdk/

http://github.com/roaminggamer/CoronaGeek/raw/master/Hangouts/Tips_and_Tricks/dialTimer.zip

Thank you, very much. This is great!

The code is a little advanced for me.

But I will read it and study it.

To see how I can actually use it in my own app.

but it’s great, thanks.

P.S. I also see the “self” a lot.

thanks

Here is another possibility:

https://docs.coronalabs.com/daily/api/library/native/setActivityIndicator.html

Thank you roaminggamer… I like this a lot

      native.setActivityIndicator( true )       -- Hide activity indicator after 3 seconds     timer.performWithDelay( 3000, function() native.setActivityIndicator( false ) end )

specially because it’s extraordinarily EASY!!! to use

Thanks

https://docs.coronalabs.com/daily/api/library/widget/newProgressView.html

http://www.jasonschroeder.com/2014/12/21/progress-ring-module-for-corona-sdk/

http://github.com/roaminggamer/CoronaGeek/raw/master/Hangouts/Tips_and_Tricks/dialTimer.zip

Thank you, very much. This is great!

The code is a little advanced for me.

But I will read it and study it.

To see how I can actually use it in my own app.

but it’s great, thanks.

P.S. I also see the “self” a lot.

thanks

Here is another possibility:

https://docs.coronalabs.com/daily/api/library/native/setActivityIndicator.html

Thank you roaminggamer… I like this a lot

      native.setActivityIndicator( true )       -- Hide activity indicator after 3 seconds     timer.performWithDelay( 3000, function() native.setActivityIndicator( false ) end )

specially because it’s extraordinarily EASY!!! to use

Thanks