Forum Replies Created

  • Daniel Buckland

    April 28, 2023 at 4:32 am in reply to: Corner pin effect with more points/pins

    AE has an effect called Reshape, which can work in some situations, but I’ve never had it look good. Puppet pin acheives better results, if you subject is organic looking.

    For hard surface reshaping, there’s a third party plugin called Layer Sculptor, It’s does this amzingly well. Set it to reference mask mode if you don’t need the transform animated.

  • Daniel Buckland

    February 6, 2023 at 12:09 am in reply to: Current Date

    If you copy and paste Dan Ebberts text, it throws up a syntax error casue the quatation marks copy wrong.

    Here’s a fixed version

    d = new Date();

    “Date: ” + d.getDate() + “/” + (d.getMonth()+1) + “/” + d.getFullYear();

    Also here’s a version which pads the zeros.

    d = new Date();

    function padZeros(n){

    if(n <= 9){

    return “0” + n;

    }

    return n

    }

    “Date: ” + padZeros(d.getDate()) + “/” + padZeros(d.getMonth()+1) + “/” + d.getFullYear();

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