In my estimation (and possibly experience, though that could just be bad memory) changing the size of a group should be a consistent transition, similar to changing the scale. However, this appears to be extremely fast (whereas scaling is not) and would point to a cumulative effect when using a transition. I was hoping to simply make this group more narrow, but it happens much fast than the time set in the transition parameters. Any ideas anyone?
a = display.newGroup() a.x, a.y = display.actualCenterX, display.actualCenterY display.newRect( a, 0, 0, display.actualContentWidth, 50 ) print(a.width,display.actualContentWidth,a[1].width) transition.to( a, { time=5000, xScale=0 } ) -- should take 5 seconds, is much quicker