I would like to move my image every x ms.
When my theme starts my image is animated.
I use this code
local logo = fe.add_image("LogoAS.png", 400, -5, 432, 220 );
animation.add( PropertyAnimation(logo, { property = "y", start = 800, end = logo.y, tween = Tween.Bounce, time = 7500} ) );
I wish my image animation start again when 30 seconds have passed. Is that possible?
Thanks in advance.