Scale problem

Hi guys , i got one small problem with scaling.

For example … when i scale my object and make it bigger and then i try to scale it to default size , it has different size then default.

Like this:

platform\_icons[i] = display.newImage("platform.png"); --New image platform\_icons[i]:scale(0.2\*mp\_w,0.6\*mp\_h); -- Scale to 0.2\*mp\_w and 0.6\*mp\_h then in some time I do this: platform\_icons[i]:scale(1\*mp\_w,3\*mp\_h); and then in some other time I do this platform\_icons[i]:scale(0.2\*mp\_w,0.6\*mp\_h); it has different size of image then in original from line 2

Thanks.

You can reset the scale of an object like this:

obj.xScale = 1 obj.yScale = 1

You can reset the scale of an object like this:

obj.xScale = 1 obj.yScale = 1