Draw shapes on a layer in InDesign using CEP/JavaScript/ExtendScript

Viewed 164

I would like to be able to add shapes (for example a circle) on a new layer that I create beforehand.

My request is similar to this question:

Draw circle on a new layer in Photoshop using cep/Javascript but for InDesign.

I tried the code but it doesn't work, I think PathPointInfo (and probably some other stuff) is not in the API of InDesign.

I did a lot of research but couldn't find what I needed

Thank you in advance for your help !

2 Answers

I found a solution using the polygons :

  var doc = app.activeDocument;      
  var page = doc.pages.item(0);    
  var pl = page.polygons.add();

  var myArr = [
    [258,583],
    [255,583],
    [255,582],
    [254,582],
    [253,580],
    [250,579],
    [249,578],
    [248,576],
    [248,575],
    [248,574],
    [246,573],
    [246,571],
    [246,570],
    [246,566],
    [246,565],
    [246,564],
    [249,562],
    [250,561],
    [252,561],
    [253,561],
    [255,561],
    [257,561],
    [258,561],
    [262,561],
    [263,561],
    [264,560],
    [264,561],
    [264,562],
    [264,564],
    [264,565],
    [264,566],
    [264,567],
    [264,570],
    [264,571],
    [264,573],
    [264,574],
    [264,575],
    [264,576],
    [263,576],
    [262,578],
    [262,579],
    [261,579],
    [259,579]  
  ];

  pl.paths.item(0).entirePath = myArr;
Related