Hello,
I am using Tween class to achieve zoom effect, when image zooms from scale 0 to scale 100. Also I’ve added two more tweens for _x and _y positions so effect looks like image zooms from its center.
So basically I have four tweens:
...Tween(mc, "_xscale"...
...Tween(mc, "_yscale"...
...Tween(mc, "_x"...
...Tween(mc, "_y"...
Problem is that quality of image during transition is very poor. Is there any options
like smoothing image in as?
Just to mention that all images are loaded dynamically using xml files.
Is there any other and better method for achieving this effect?
Thanks in advance!