Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects After Effects project data extract

  • After Effects project data extract

    Posted by yaeyoung Shin on August 31, 2022 at 12:54 pm

    Currently, only comp name and duration are included in this text file, but I hope layer.name, shape layer, and production date are included. And I want all the compositions in the project to be searched, and if there are several layers in the composition, I want to print out all the layers.

      loadButton.onClick= function() {
        var loadData;
        for(var i = 1; i <= app.project.numItems; i++) {
        //0 == item
        switch(typeDropDown.selection.index){
           case 0:
             loadData = loadFile("/item.txt");
             var itemData = loadData.split(",");
             var comp = app.project.activeItem;
             // name, duration
             comp.name = itemData[0].toString();
             comp.duration = parseInt(itemData[4]);
           break;
           }
       }
        $.writeIn(loadData);

     

    yaeyoung Shin replied 4 years ago 1 Member · 0 Replies
  • 0 Replies

Sorry, there were no replies found.

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy