Skip to content Skip to sidebar Skip to footer

Run An Gif Animation Only Once On Kivy

I wanted to make an kivy app which runs an gif animation. The gif animation is supposed to be stopped after it runs once on the application start, but the gif animation is running

Solution 1:

You should set anim_loop property:

anim_loop                                                Added in 1.9.0

    Number of loops to play then stop animating. 0 means keep animating.

    anim_loop is a NumericProperty defaults to 0.

Post a Comment for "Run An Gif Animation Only Once On Kivy"