You can inspect the scale of an object with the scale property, for instance:for o in selection do (<br> print o.scale<br>)<br> will print the scale of the selected objects. You can reset the scale of the selected objects the same way: </code><code>for o in selection do (<br> o.scale = [1, 1, 1]<br>)
@Noors and @Codi Thank you guys! When I tried this command I used [0, 0, 0] or [100, 100, 100] values, and it did all wrong. Now I can do this easily via script! Cheers!