Forum Replies Created

  • Benjamin Leng

    February 18, 2020 at 5:41 pm in reply to: Trace to Path 3D scale problem

    Great that I could help and thanks for your comment – knowing that my solution helped somebody makes me happy!

  • Benjamin Leng

    November 1, 2019 at 4:20 pm in reply to: Trace to Path 3D scale problem

    Thank you. I’m glad I could help.

  • Benjamin Leng

    April 9, 2018 at 3:02 pm in reply to: Trace to Path 3D scale problem

    When you create a Null with the Trace Path script the Null has an Expression on its postion property. In this expression you should change “pathLayer.toComp” into “pathLayer.toWorld”. This should do the trick.

  • Mr. Ebbert, Thank you so very much, this script is veeeery helpful. The Property I was looking for apparently was “ADBE Vector Star Type”. I got it working now 🙂

    I just realized that basically EVERY useful info about AE-Scripting Google can find comes from Dan Ebberts personally. So, thank you for your incredible help all around – it seems YOU are the personified AE-Script-Reference!

    Benjamin Leng

    app.beginUndoGroup("Add new shape layer");

    var curComp = app.project.activeItem;

    if(curComp){ var shapeLayer = curComp.layers.addShape();
    var shapeGroup = shapeLayer.property("Contents").addProperty("ADBE Vector Group");
    var myStar = shapeGroup.property("Contents").addProperty("ADBE Vector Shape - Star");
    myStar.property("ADBE Vector Star Type").setValue(2);
    myStar.property("ADBE Vector Star Points").setValue(6);
    shapeGroup.property("Contents").addProperty("ADBE Vector Graphic - Stroke");
    shapeGroup.property("Contents").addProperty("ADBE Vector Graphic - Fill");
    }

    app.endUndoGroup();

    //app.project.item(index).layers.addShape

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