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

how to break symbol link by script?

New Here ,
Sep 12, 2013 Sep 12, 2013

hi guys, does anyone konw how to do it ?

TOPICS
Scripting
1.3K
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
Adobe
Community Expert ,
Sep 12, 2013 Sep 12, 2013

no direct way, a workaround is to delete the symbol, but then all instances get "link broken"

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
New Here ,
Sep 12, 2013 Sep 12, 2013

thank you very much, it's so helpful!

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
Guru ,
Sep 14, 2013 Sep 14, 2013

The work around is to make a dupe of the art in the symbols collection then break that… This works for me…?

#target illustrator

var doc = app.activeDocument;

var sym = doc.symbolItems[0]; // Break just the first instance

var dup = doc.symbols.add( sym, SymbolRegistrationPoint.SYMBOLCENTERPOINT );

sym.symbol = dup; // Assign the copied art

dup.remove(); // Remove the copied art

Just my top item in now a group…

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
Community Expert ,
Sep 15, 2013 Sep 15, 2013
LATEST

did not work for me Mark, the dup symbol still has a copy of the first symbol in it, on breaking the link, the original symbol remains.

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