解決済み
Removing underline not working in Illustrator using Extendscript
Hi Folks
The below example not woking in illustror. Initially I applied underline = true for the textrange working fine but while removing its not working. Please help on this.
var doc = app.activeDocument;
for (var i = 0; i < doc.textFrames.length; i++) {
var txtFrame = doc.textFrames[i];
var textRange = txtFrame.story.textRange;
textRange.start = 0;
textRange.length = 5;
textRange.characterAttributes.underline = false;
}
Thanks in advance
Thanks in advance
