tell application "Adobe Illustrator"
set newWidth to 350
set newWidthPoints to newWidth * 2.834645 -- (1 millimeter = 2.834645 points)
set newHeight to 148.5
set newHeightPoints to newHeight * 2.834645
set artboard rectangle of artboard 1 of current document to {0.0, 0.0, newWidthPoints, -newHeightPoints}
end tell
Thanks, and what about resizing the artboard from the middle. As per current script the artboard shifts downward leaving the objects on the pasteboard (top of the artboard)
I checked the AI Dict and “seems” that there is no way to define the anchor point of the new bound of the page like for example in Photoshop using the command resize canvas (in reply to your post about split image).