I'm attempting to position an object in illustrator to the bottom, left of the art board via javascript. I can access the object with javascript and perform function to it like "rotate"
if ( app.documents.length > 0) {
doc = app.activeDocument;
}
function traceImage(doc) {
doc.pageItems[0].rotate (30);
}
traceImage(doc);
But I'm having trouble finding a simple way to position/align the "pageItems[0]" in the bottom/left of the art board. Is there a simpler approach to this other than calculating it's current distance and then moving it? Thanks.
There probably an easier way than this, but this works.
Essentially, we have to set the top left corner of our pageItem to the bottom left of the artboard. Unfortunately, that would put our pageItem below the Artboard, so we adjust the offset by the height of our pageItem: