Scale different sized objects to custom size?

I have multiple images that are different sizes and I want the app to scale them to a size that I choose.
I can’t do this with the xScale / yScale since they start off at different sizes.

Any suggestions?
[import]uid: 24111 topic_id: 21341 reply_id: 321341[/import]

This sounds like a job for… maths man!!!

Assume you want then all to be 200 x 300 in size

myObject.xScale = 200/myObject.width
myObject.yScale = 300/myObject.height [import]uid: 108660 topic_id: 21341 reply_id: 84499[/import]

Thanks! :smiley:

Should have thought of that :confused: [import]uid: 24111 topic_id: 21341 reply_id: 84500[/import]