
BreakTextToLines.jsx 源码
var doc = activeDocument;
var tfs = [];
var a, o, i, j, k, tf, ntf, x, y, words, spaceW, lineH, lines;
for (i = 0; i < doc.selection.length; i++) {
o = doc.selection[i];
if (o.typename = "textFrame")
tfs.push(doc.selection[i]);
}
for (i = 0; i < tfs.length; i++) {
tf = tfs[i];
lines = tf.lines;
x = tf.position[0];
y = tf.position[1];
ntf = tf.duplicate();
ntf.contents = " ";
spaceW = ntf.width;
ntf.remove();
lineH = tf.height / lines.length;
for (k = 0; k < lines.length; k++) {
x = 0;
w = lines[k].contents;
ntf = tf.duplicate();
ntf.contents = w;
ntf.position = [tf.position[0], tf.position[1] - lineH * k];
x += ntf.width + spaceW;
var layer = doc.activeLayer;
ntf.move(layer, ElementPlacement.PLACEATEND);
}
tf.remove();
}