local img = display.newImage( ‘img.png’)
transition.to( img, { time=1000, xScale = 0.8 , yScale = 0.8 ,iterations=-1, transition = easing.continuousLoop} )
I wanted to be 1.0 -> 0.8 -> 1.0
but, it works weird…
and, i tried this code.
transition.to( img, { time=1000, width = img.width*0.8 , height = img.height*0.8 ,iterations=-1, transition = easing.continuousLoop} )
still didn’t work.