Reply To: Split Outlined Text Words in to Individual Letters

Home Page / Forums / General InDesign Topics (CLOSED) / Split Outlined Text Words in to Individual Letters / Reply To: Split Outlined Text Words in to Individual Letters

#14413624

Select the Text in a text frame and play this Script:

/*
_FRIdNGE-0811_SelectionToBeVectorized.jsx
Script written by Michel Allio [07/04/25]
See: https://creativepro.com/topic/split-outlined-text-words-in-to-individual-letters/ [07/04/25]
*/

app.doScript(“main()”, ScriptLanguage.javascript, undefined, UndoModes.ENTIRE_SCRIPT, “Selection To Be Vectorized!…”);

function main() {
var mySel = app.selection[0];
var myChars = mySel.characters;
C = myChars.length;
for ( c = C-1; c >= 0; c– ) myChars[c].createOutlines(false);
mySel.parentTextFrames[0].remove();
}

Done!

(^/) The Jedi

This article was last modified on April 7, 2025

Comments (0)

Loading comments...