Skip to main content
Participant
March 1, 2023
Question

How to create popup alert in After effects sdk

  • March 1, 2023
  • 1 reply
  • 424 views

How to create popup alert message on button click in our After effects sdk plugin 

This topic has been closed for replies.

1 reply

Community Expert
March 1, 2023

first, make your button supervised, so your effect gets a call to handle a click. lookup PF_ParamFlag_SUPERVISE on how to do that.

then, while handling USER_CHANGED_PARAM, you can fill out_data->return_msg with up to 254 chars + a terminating null. the message will pup up when your effect returns from the call.