I can’t upgrade mine now but, I found a solution for the scrollview:
function fix.transition.to(target, params) if (params and params["onComplete"] and (not params["onPause"])) then params.onPause=function() transition.resume(target) end end return transition.to(target, params) end
It seems that scrollview pauses the transitions of it’s childs when moved and so, all that I need to do is call resume on pause for that case.
But I’m still having problems with another things and transitions. There are situations when sometimes, when I click on a button that slides 2 groups from right to left, the slide stops (and some other animations not related to it stop too) or the loading images that come inside these groups stop rotating.
This is weird because it only happens sometimes and also stops some animations that are not related.