Код: Выделить всё
var sel = app.activeDocument.selection;
for (i = 0; i < sel.length; i++) {
sel[i].textRange.characterAttributes.textFont = textFonts.getByName("ArialMT");
}
Код: Выделить всё
Error 21: undefined not is Object.
Line 10
-> sel[i].textRange.characterAttributes.textFont = textFonts.getByName("ArialMT");
Код: Выделить всё
var sel = app.activeDocument.selection;
for (i = 0; i < sel.length; i++) {
if (sel[i] === undefined) {
alert("undefined");
}
}
Код: Выделить всё
undefined
Спасибо!
Подробнее здесь: https://stackoverflow.com/questions/797 ... tendscript