Anybody have any suggestions on working with LOTS of Illustrator items at once? It seems like even the simplest scripts take many minutes to execute when working with hundreds of objects. Take the following, for instance:
if(document.selectedItems.length > 1) {
var rotationAmount = (90).toRadians();
for (var i = 0; i 0.5)
{
guy.rotate(rotationAmount);
}
}
} else {
Dialog.alert('Please select more than one item');
}
Anything I could be doing more efficiently here? Thanks!