• 0 Votes
    2 Posts
    567 Views
    @Amanda-A Yes this is possible. You have to use expressions though when it comes to altering the color values in a shape layer. Take a read through this article to learn more about using data in expressions with Templater, and then also take a look at this pre-rigged template on our GitHub repository demonstrating the use of data in expression — also in the context of color manipulation. Hope this helps! —Arie
  • Change shape size

    Templates shape scale stroke percentage graphic
    2
    0 Votes
    2 Posts
    557 Views
    @rivalpro Yes, you can pull in the value as a text layer, then use an expression to tie your shape size / percent completion to the SourceText property of the text layer by wrapping it in a parseInt(). If your text layer is “text-1”, and your text layer is in the same comp as whatever numerical value you are using to control your bar, the expression would be: parseInt(thisComp.layer("text-1").text.sourceText) That would convert your text value from being just a text string into a number.