Skip to main content
Participant
May 24, 2023
Question

Hide button

  • May 24, 2023
  • 1 reply
  • 296 views

How to hide PF_Param_BUTTON in AfterEffects SDK C++?
I have tried making a param_copy and setting ui_flags to PF_PUI_INVISIBLE and then calling PF_UpdateParamUI of ParamUtilsSuite3.

Also tried uu.change_flags = PF_ChangeFlag_CHANGED_VALUE after setting PF_PUI_INVISIBLE
But nothing works to make the button invisible.
Although if I try doing the above with PF_Param_FIX_SLIDER, it becomes invisible, but nothing works for the button.

Requirement: On tapping the button, I want it to hide

This topic has been closed for replies.

1 reply

Community Expert
May 25, 2023

time to bring out the heavy guns.

use AEGP_SetDynamicStreamFlag with AEGP_DynStreamFlag_HIDDEN.

Participant
May 25, 2023

Ok Thanks a lot