Repeating tweens

Hi

Can anybody explain the difference between loop and repeat in tweens and tween chains? And where to use which?

regards Anne

A tween can loop and a tween data (property change per target) can repeat. You can repeat some or all property changes and if they have different durations or delays then the repeats will happen at different times. A loop starts after every tween data completes once.

Chains can only loop.

Thanks! Am I right to understand that if a tween property repeats indefinitely, you cannot loop the tween or indeed a tween chain, the outer loop stops?
regarsd

Yes.

Thank you for your replies!