//Hello! This script takes all selected objects, and removes any transformations from them. //Useful for: Uhh, removing transformations from objects. var selection = app.selection; for (i = 0; i < selection.length; i++){ var selectedObject = selection[i]; selectedObject.clearTransformations(); }