Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Can i make a Solid preset?

  • Can i make a Solid preset?

    Posted by Pedro Geada on March 25, 2009 at 10:34 am

    Hello guys, im making a TV show and I have some standarts that i have to use, for example, I have TV thingy that is made of 4 solids, 3 circles and one rectangle that starts off has an circle also but then turns into a TV over the time, and they also have some effects one them , so it took me kinda some time to do it and i would like to have it ready for use wherever i needed, so i wanted to know if it was possible to do kinda of a “solid presets”

    Look forward to hearing your ansers and sorry for the bad writing xD 😛 , Take care!

    Peter O’connell replied 17 years, 1 month ago 3 Members · 2 Replies
  • 2 Replies
  • Kevin Camp

    March 25, 2009 at 2:46 pm

    presets can’t create layers, they can just apply effects, settings, keyframes and even masks to selected layers.

    you could create a preset for each layer, then apply the preset as needed to each layer, but it couldn’t be a single preset for all the layers…

    you could do this with a script, but unless you’re reasonably familiar with java (i’m not) it will probably take longer to create and debug the script than it would to build the animation over and over again… if you are interested in scripting post over in the ae expressions forum to get pointed in the right direction…

    you may be able to just save the project file with just that animation in it, then import the project when ever you need it… it just comes down to how you are using it.

    Kevin Camp
    Senior Designer
    KCPQ, KMYQ & KRCW

  • Peter O’connell

    March 26, 2009 at 12:21 pm

    Hi, you can but you need 2 files to make it work without writing a complicated script.
    1. you need an ffx file saved somewhere to reference in a jsx file
    2. you need a jsx file (like the one below) that makes a solid and references your ffx file.

    This particular script only works if you have an ffx file on your desktop called myEffectsPreset.ffx (mac os, in my case)
    Save this code somewhere as a jsx file.
    ///////////////////////////////////////////////////////////

    // This first bit Makes a black solid within the selected Comp
    myComp = app.project.activeItem;
    mySolid = myComp.layers.addSolid([0,0,0], "Black", myComp.width, myComp.height,myComp.pixelAspect);
    mySolid.startTime = 0

    //This part assigns an ffx file that you have stored somewhere to the solid
    var myEffectsPreset = File ("~/Desktop/myEffectsPreset.ffx");
    mySolid.applyPreset(myEffectsPreset);

    //roguekeyframe.com

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