Hey HardBoiled:: try this
timer.performWithDelay(100, function() transition.from(screenGroup,{ y = -200, time = 2000}) end, 1)
or if you are looking for a slide-in/push-out effect then something like this…
timer.performWithDelay(100, function() screenGroup.y = -(display.contentHeight) transition.to(screenGroup,{ y = 0, time = 2000}) end, 1)
The above is just a simple test given how you said to recreate the problem, the reason for the “do once” timer is that your example uses the corona storyboard sample and it is doing some goofy stuff to show the various workings of storyboard.
That being said, the above code does work so I am unable to reproduce the problems you guys are having but have verified that Transition 2.0 and Easing 2.0 are working good and while I really can’t see a difference on win/apple simulator or iOS i do see a major improvement on Android where I use to “sometimes” get this lag when sliding one object to the other it now works a lot more smoother on Nexus 7 and Droid X (which are my two test devices).