Answered
Capture Tallest Shape
I am able to get the height of the full selection, but I am trying to get the height of the tallest shape in the selection.
Where does my code snippet need to change?
var maxHeight = 0;
// Capture Letter Height
for (var i = 0; i < doc.selection[i].height; i++) {
if (doc.selection[i].height > maxHeight) { var maxHeight = doc.selection[i].height; };
}
var ltrHeight = maxHeight / 72;
Thank you!

