Forum Replies Created

  • i think i have the same or a very similar problem while recording audio and video to the deck.
    the symptoms while recording begins with the flicker of the “VITC” indicator. after that the
    channel indicator changes from green to red and that’s the point where the audio get lost.
    i solved it by by switching the “out ref” from “ref” to “input video”. i really have no idea what
    this switch initially does but after that it worked. i don’t know if you are familiar with dbeta,
    the switch is located in the bottom part of the front panel which must be pulled out to have
    access to this and many other switches.

  • Eric

    August 7, 2005 at 2:38 pm in reply to: Expression problem

    yes that’s smarter. i keep that for my records ; )

  • Eric

    August 7, 2005 at 2:38 pm in reply to: Expression problem

    yes that’s smarter. i keep that for my records ; )

  • Eric

    August 7, 2005 at 12:59 pm in reply to: Expression problem

    hi,

    the problem is that the expression you wrote returns only one value. the position property requires two (x and y).

    may be this is a solution for you:

    add two expression slider controls to the layer which you wish to wiggle.
    name the first one “wiggle” and apply the wiggle expression and adjust the values.
    name the second one “factor”. this slider will control the amount of wiggle added
    to the position property.

    now add this expression to the position property:
    w = effect(“wiggle”)(“Slider”); //retrieves the wiggle
    f = effect(“factor”)(“Slider”); //amount of wiggle

    [position[0] + (w * f), position[1] + (w * f)]

    the last step is classic keyframing. set the factor value to zero where no wiggle should
    be applied and set a keyframe. go to the time where the wiggle should have an effect
    and set the factor value to whatever you want.

    the factor value gives you the full control over how wiggly the layer should behave.

    cheers
    eric

  • Eric

    August 7, 2005 at 12:59 pm in reply to: Expression problem

    hi,

    the problem is that the expression you wrote returns only one value. the position property requires two (x and y).

    may be this is a solution for you:

    add two expression slider controls to the layer which you wish to wiggle.
    name the first one “wiggle” and apply the wiggle expression and adjust the values.
    name the second one “factor”. this slider will control the amount of wiggle added
    to the position property.

    now add this expression to the position property:
    w = effect(“wiggle”)(“Slider”); //retrieves the wiggle
    f = effect(“factor”)(“Slider”); //amount of wiggle

    [position[0] + (w * f), position[1] + (w * f)]

    the last step is classic keyframing. set the factor value to zero where no wiggle should
    be applied and set a keyframe. go to the time where the wiggle should have an effect
    and set the factor value to whatever you want.

    the factor value gives you the full control over how wiggly the layer should behave.

    cheers
    eric

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