Forum Replies Created

Page 1 of 2
  • Mark Boszko

    July 23, 2015 at 4:09 pm in reply to: Formating a text from a text document

    How are you trying to format it? Something different from what you can do in the text tool?

    —–
    https://opticalpodcast.com

  • Oops — sorry if I steered you wrong!

    —–
    https://opticalpodcast.com

  • I just did a bunch of similar animations, and if you’re doing the movement with the expression, you’ll likely also need to do the tweening in the expression with a linear() or ease() calculation vs. time.

    —–

  • That’s exciting, Todd! Any other enhancements coming to expressions? 😉

    —–

  • So… no one’s touched a C500, eh?

    —–

  • Mark Boszko

    December 11, 2013 at 9:46 pm in reply to: Some clips getting resized on export

    I didn’t think it was the same exact issue, as I don’t have any problem with the clip in the timeline — only in the exported Quicktime. Perhaps they are related, though.

  • Mark Boszko

    December 11, 2013 at 8:18 pm in reply to: Some clips getting resized on export

    What is the original video’s frame size? 1080?

    Well… perhaps. Everything is 720 now, but I think some clips may have originally been 1080, and I drag-n-drop replaced the clips with new versions that are 720. However, it may in fact be these clips that are now flaking out. Trying to determine that.

    Does the issue only occur to clips that are in a secondary storyline with transitions on it?

    Yep. Is this a known issue?

  • Mark Boszko

    December 11, 2013 at 5:04 am in reply to: Some clips getting resized on export

    Not quite. No 4K footage, and the footage appears fine in the timeline. It’s only in the exported movie that this weird resizing occurs.

  • Mark Boszko

    December 10, 2013 at 7:21 pm in reply to: BlendingMode global constant error

    Thanks! The layers aren’t the same size (the “bar” only covers a small portion of the image below), but that’s definitely an interesting idea to think about. Maybe for v.2 of this project.

    Almost makes me wish that After Effects had a way to create an “instance” copy of a layer without the overhead of pre-comping.

  • Mark Boszko

    December 10, 2013 at 6:33 pm in reply to: BlendingMode global constant error

    Ohhh! I thought those were valid for Expressions as well, but I see now. Thanks to both of you, Dan and Jason, for clearing that up!

    I had it as part of a larger expression (listed below), hoping to switch the blending mode when the luminance of a particular sampleImage() dropped below a certain point.

    Is there any way to do that as part of an expression, do you think? It doesn’t seem that I can attach an expression to the Blending Mode directly. Can I maybe use an expression to trigger a script to act on the sending layer? (A quick google search doesn’t reveal much in the way of helpful hints on that idea. Are scripts able to run during a render? Perhaps not. Sorry, I haven’t tried to script AE in ages, so I’m a little rusty.)

    The only other suggestion I found (other than to purchase BCC Composite) is to have duplicate layers with the two blending modes and switch opacity on those via expressions. Which seems do-able, if a little clumsy. Just thought I’d ask if anyone else had a better idea before I implement that.

    Thanks!
    Mark

    targetLayer = thisComp.layer(thisLayer.index+1);
    samplePoint = targetLayer.effect("Point Control")("Point");
    sampleRadius = [5,5];
    barColor = targetLayer.sampleImage(samplePoint, sampleRadius);
    barLuminance = rgbToHsl(barColor)[2] * 255;

    if (barLuminance > 100) {
    // Obviously, this doesn't work:
    thisComp.layer(index).blendingMode = BlendingMode.NORMAL;
    } else {
    // This either:
    thisComp.layer(index).blendingMode = BlendingMode.DARKEN;
    }

    barColor

Page 1 of 2

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