Skip to main content
Known Participant
May 2, 2023
Question

How to hide PF_ADD_FLOAT_SLIDERX in after effect sdk in c++

  • May 2, 2023
  • 1 reply
  • 732 views

I had build plugin for After effect. How to hide parameters of  PF_ADD_FLOAT_SLIDERX in after effect sdk in c++

 

This topic has been closed for replies.

1 reply

Community Expert
May 2, 2023

Set PF_PUI_INVISIBLE in the param's ui flags.

Known Participant
May 2, 2023

I had already implemented PF_PUI_INVISIBLE in the param's ui flags but nothing happenes.

Community Expert
May 2, 2023

A few things may go wrong.

1. Are you sure you applied the flag to the ui parameter?

2. Could the flag be overridden by some later assignment? Flags should be ORed together.

3. One of the param creation macros is broken and ignores some of the flags. I don't remember off the top of my head which one. Go into the macro definition and see. In such a case you can copy the macro content for that param and fix it specifically.

 

In any case, you can also apply this flag during update_patams_ui.