Skip to main content
Inspiring
August 10, 2010
Answered

How to use PF_AppGetColor() in custom effect?

  • August 10, 2010
  • 1 reply
  • 645 views

Hi,

     I'm able to use PF_AppGetColor(PF_App_ColorType, PF_App_Color) and get the required AE colour for using in AEGP. But I'm not able to find a way to use PF_AppGetColor() in my custom effect. For now I'm communicating to AEGP and getting the required color. Please tell me how to use PF_AppGetColor() in custom effect.

Thanks,

Dheeraj.

This topic has been closed for replies.
Correct answer shachar carmi

i use it in an effect.

this is taken directly from my code.

suites.AppSuite3()->PF_AppGetColor(PF_App_Color_HOT_TEXT, &appColor1);

what happens when you try to use it?

1 reply

shachar carmiCommunity ExpertCorrect answer
Community Expert
August 10, 2010

i use it in an effect.

this is taken directly from my code.

suites.AppSuite3()->PF_AppGetColor(PF_App_Color_HOT_TEXT, &appColor1);

what happens when you try to use it?

dheeraj_cAuthor
Inspiring
August 10, 2010

Thanks a lot Shachar. I was not doing it the right way, so i was not

getting the colors. Many thanks.