Thanks a lot!
Hey, creator of the extension,
I am facing two key issues with this and don't know what I'm doing wrong:
First, the Animate Progress block seems to be broken and creating an infinite loop of the cycle getting from 0 to 100 once the first cycle is done manually.
Second, the Percentage Text isn't showing even after correctly using any needed blocks and booleans. Does it need a innate label to be in?
Thanks.
Make sure to run it only once until it completes, if running the function multiple times will repeat the animation.
These 2 properties has to be set true in order to show the text and enable it as percentage: TextVisible
and PercentageText
Wow, thanks for the really fast response!
Look at my code:
Optional settings for the text are unused here, yet it still doesn't show.
And I'm sorry, but I don't know how to work with the Animate Progress block, I want it to play from 0 or at least the previously set value into the new one, not from 0 to max. Along with the previous issue.
Progress bar properties has to be set before creating the progress bar. Make sure that text color is not WHITE
since background is also WHITE
.
For this action animate progress is not suitable as it just animates the progress from 0 to max within specified duration. To animate the custom value of progress you need to use update progress to update it with a new progress value. You may also use Clock component to update the progress at a specified interval of time.
Thanks, worked like a charm!
I'll experiment with the clock later on my own