Skip to main content
New Participant
February 26, 2020
Question

Adding attributes to Path items/ items in Adobe Illustrator using Script

  • February 26, 2020
  • 2 replies
  • 422 views

I have a path item say line, and another line duplicate copy of the same line is added as dashed line in new layer. So that the line appears to be striked.

 

Is there a way to establish a relation to both the lines as am planning to write a script such that the lines marked as striked needs to be removed from the file.

This topic has been closed for replies.

2 replies

CarlosCanto
Braniac
February 26, 2020

select one of your lines manually, then run this script

 

selection[0].name = 'delete me later';

CarlosCanto
Braniac
February 26, 2020

yes you can, the easiest is to give them names, but you can also add Tags to them (same as Notes in the UI)

New Participant
February 26, 2020

Can you give me some examples  or sample links ?