Good Morning,
I must not be getting it. Can someone tell me what my group does not scale or move with this code:
chap1_5Group = self.view
television = display.newImage(tmis3imageSheet,teleindex)
television.x = centerx
television.y = centery
–television:scale(1,1)
chap1_5Group:insert(television)
–transition.to( television, {time=3000, yScale=2.5, xScale=2.5, y=television.y+600})
testpattern = display.newImage(tmis3imageSheet,testpatternindex)
testpattern.x = centerx
testpattern.y = centery-100
–testpattern:scale(1,1)
chap1_5Group:insert(testpattern)
chap1_5Group:scale(.1,.1)
chap1_5Group.x = centerx
chap1_5Group.y = 0
–transition.to( chap1_5Group, {time=3000, yScale=2.5, xScale=2.5, y=chap1_5Group.y+600})
I would expected the bolded line to scale everything in the group to .1 size, but it does not. It does not move the gorup to y = 0 either.
Any ideas? Am I all wet?
thanks!!!
Arthur