Hi, I have a group of image objects and i want to scale this group from center (this means that the group grow from all directions, not just right side). But its grows just from right side. Here is my code :
function up() transition.to(group, {time=2000,xScale=1.4,yScale=1.4,onComplete=down}) end function down() transition.to(group, {time=2000,xScale=1,yScale=1,onComplete=up}) end
Thanks.