Marko Suto
Forum Replies Created
-
Dan the Daysaver, thanks a lot, again!!! 🙂
-
I’m no expert, but “valueAtTime” sounds like what you’re looking for?
thisComp.layer(1).position.valueAtTime(1/x) /// x being your comp frame rate
-
Marko Suto
December 13, 2018 at 5:14 pm in reply to: Increasing the value every frame by a specific ammountIdea is to have it rotating in the same direction.
Soundkeys give me a positive or 0 output for each frame, so I wanted to add the value of each frame to the sum of previous rotations.Example:
1. frame soundkeys output = 10
1. frame rotation = 102. frame soundkeys output = 30
2. frame rotation = (10+30) = 403. frame soundkeys output = 0
3. frame rotation = (40+0) = 40 -
Marko Suto
December 13, 2018 at 3:57 pm in reply to: Is it possible to subtract a shape from a repeated shape using merge pathsHave you tried precomposing the repeated shapes and then applying the mask on the precomp?
-
-
Works like a charm, many thanks for all the effort!!!
-
Thanks for clarifying!
I have downloaded your downsaved files, will go through them now. -
-
Cheers Walter!
Will give it a try as soon as I can (hopefully later today) and let you know how it worked!
-
Thanks for the reply and link Walter!
I’m afraid I can’t open the project, it is done in a newer version of AE.
I have tried similar thing to your suggestion, used the iExpressions script for bottom align which does the job well – adds lines breaks on empty lines.
BUT it works only on point text, not box text. I need text box to limit the width of text.I tried to break the lines using VBA code in Excel (that’s where my source text is from – using CompsFromSpreadsheets script) with point text in AE, but my VBA script had problems with the width of the text (when I limit the max number of characters for one line, there’s a big difference in line full of “m” and “i” as far as width is concerned).
This “sourceText.value.baselineLocs”
https://helpx.adobe.com/uk/after-effects/using/creating-editing-text-layers.html
under “Scripts and expressions for working with text” section,
gave me hope I could use this array to get the Y position of the last line and use it as anchor point. But I don’t know how to define array and how to read the “N-1” value from the array.
