Aboghazala / AwesomeTkinter

Pretty tkinter widgets
MIT License
104 stars 7 forks source link

About the progressbar #5

Closed TianT1209 closed 3 years ago

TianT1209 commented 3 years ago

I have a questioin about the progressbar. If I have changed the mode to 'indeterminate', the progressbar don't work. How should I change the code?

Aboghazala commented 3 years ago

@TianT1209 unfortunately both RadialProgressbar and RadialProgressbar3d works only in 'determinate' mode, that's why this option is hard-coded.

zocky96 commented 3 years ago

and if I want to change the value of the progressbar

Aboghazala commented 3 years ago

and if I want to change the value of the progressbar

@zocky96 you can use "set()" method to set progressbar or get() to get current value example:

bar = atk.RadialProgressbar(root)
bar.pack()
bar.set(30)
zocky96 commented 3 years ago

Thnx