AE TextLayers from words
var cc = app.project.activeItem; var str = "This tiny AE script will create a textlayer for each word in this sentence. You get the gist?"; var arr = str.split(" "); for(s in arr){ cc.layers.addText(arr[s]); }