Copy link to clipboard
Copied
hi guys, does anyone konw how to do it ?
Copy link to clipboard
Copied
no direct way, a workaround is to delete the symbol, but then all instances get "link broken"
Copy link to clipboard
Copied
thank you very much, it's so helpful!
Copy link to clipboard
Copied
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…
Copy link to clipboard
Copied
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.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now