I was reviewing your Widget Demo and I noticed that the ProgressView Widget Documentation was missing the setProgress () method call and explanation.
Can you please update it and any other details about this control.
[lua]
local newProgressView = widget.newProgressView
{
left = 20,
top = 240,
width = 100,
isAnimated = true,
}
group:insert( newProgressView )
– Set the progress to 100%
newProgressView: setProgress ( 1.0 )
[/lua]
Thanks
Larry Meadows