Forum Replies Created

  • Kevin Burke

    August 6, 2012 at 2:56 am in reply to: Converting float to hexidecimal

    I found a solution – not sure if it’s the best, but it works!

    target = thisComp.layer("Colors Screen");
    colorpicker = thisComp.layer("ColorPicker");
    sampledColor_8bpc = 255* target.sampleImage(target.fromWorld(colorpicker.position), [0.5,0.5], true, time);
    R = Math.round(sampledColor_8bpc[0]);
    G = Math.round(sampledColor_8bpc[1]);
    B = Math.round(sampledColor_8bpc[2]);

    outputString = "#" +R.toString(16) + G.toString(16) + B.toString(16);
    outputString;

  • Kevin Burke

    June 25, 2011 at 6:29 am in reply to: Matching footage to CGI

    Thank you for the response, Ken. Yes, I definitely agree about the wrong workflow. I voiced my opinion but this is the way it has to be done for this project :-/ Your idea about the switcher was good – in my ignorance, I was considering printing the 3D graphics on transparency film and putting it over the monitor 😛 I’m sure that would have been VERY precise 😀 Hahahaha

    Thanks again!

  • Kevin Burke

    July 23, 2009 at 5:11 pm in reply to: Making video sync with a beat?

    Excellent advice. Thank you!

  • Kevin Burke

    July 21, 2009 at 4:20 pm in reply to: Making video sync with a beat?

    Thanks for the response. I’ll give it a try.

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