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

How to achieve Object-> Arrange -> Send Backward

Community Beginner ,
Aug 11, 2020 Aug 11, 2020

Copy link to clipboard

Copied

How to achieve Object -> Arrange -> Send Backward illustrator.

 

Arrange.JPG

 

Please guide me any Api function available for achieve Send Backward option. 

TOPICS
SDK

Views

760

Translate

Translate

Report

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

Community Expert , Aug 11, 2020 Aug 11, 2020

Try the zOrder method. Quoting the api documentation below

PageItem.zOrder()

app.activeDocument.pageItems[index].zOrder(zOrderCmd)

Description

Arranges the art item’s position in the stacking order of the group or layer (parent) of this object.

Parameters

Parameter Type Description
zOrderCmd ZOrderMethod Stacking order arrangement method

Where ZOrderMethod is as follows

ZOrderMethod

The method used to arrange an art item’s position in the stacking order of its parent group or layer, a

...

Votes

Translate

Translate
Adobe
Community Expert ,
Aug 11, 2020 Aug 11, 2020

Copy link to clipboard

Copied

Try the zOrder method. Quoting the api documentation below

PageItem.zOrder()

app.activeDocument.pageItems[index].zOrder(zOrderCmd)

Description

Arranges the art item’s position in the stacking order of the group or layer (parent) of this object.

Parameters

Parameter Type Description
zOrderCmd ZOrderMethod Stacking order arrangement method

Where ZOrderMethod is as follows

ZOrderMethod

The method used to arrange an art item’s position in the stacking order of its parent group or layer, as specified with the zOrder method

Value Description
ZOrderMethod.BRINGFORWARD Bring Forward
ZOrderMethod.SENDBACKWARD Send Backward
ZOrderMethod.BRINGTOFRONT Bring To Front
ZOrderMethod.SENDTOBACK Send To Back

-Manan

Votes

Translate

Translate

Report

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
Community Beginner ,
Aug 11, 2020 Aug 11, 2020

Copy link to clipboard

Copied

LATEST

Thanks for your replay.

We need to know how to use these kAISendSelectionBackwardAction ActionEvent.

 

Votes

Translate

Translate

Report

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