fabianmoronzirfas
9/15/2012 - 11:02 AM

AE TextLayers from words

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]);
    }