Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to align object vertically on the artboard via script?

Engaged ,
Oct 27, 2022 Oct 27, 2022

How to align object vertically on the artboard via script?

For example, there is a group

 

 

var smallCircleGroup = doc.groupItems.add();
// adding some objects to the group

 

 

Now I woud like to align the group vertically on the artboard as it would be done by `Vertical Align Center` Illustrator's command. Is there a script ecvivalent for the command to do that?

TOPICS
Scripting
269
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Guide , Oct 27, 2022 Oct 27, 2022
var ABR = app.activeDocument.artboards[0].artboardRect;
var ABVerticalCentre = (ABR[3] - ABR[1]) / 2;
var bounds = smallCircleGroup.controlBounds;
smallCircleGroup.top = ABVerticalCentre - ((bounds[3] - bounds[1]) / 2);
Translate
Adobe
Guide ,
Oct 27, 2022 Oct 27, 2022
LATEST
var ABR = app.activeDocument.artboards[0].artboardRect;
var ABVerticalCentre = (ABR[3] - ABR[1]) / 2;
var bounds = smallCircleGroup.controlBounds;
smallCircleGroup.top = ABVerticalCentre - ((bounds[3] - bounds[1]) / 2);
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines