Skip to main content
Vouk
Known Participant
October 25, 2018
Question

Pair of params next to eachother?

  • October 25, 2018
  • 2 replies
  • 1155 views

Hello,

I am using the C SDK to create a native CS6 compatible plugin.

I am wondering how I can display two parameters next to eachother?

For instance a dropdown and a button or checkbox next to it:

It should be possible to do this somehow, right?

prSuiteError (*AddParamGroup)(

csSDK_uint32 exporterPluginID,

csSDK_int32 inMultiGroupIndex,

const exParamIdentifier inParentGroupIdentifier, // parent group.

// use NULL to put the group into the multigroup

const exParamIdentifier inParamGroupIdentifier,

const prUTF16Char *inGroupName,

csSDK_int32 inHidden,

csSDK_int32 inDisabled,

csSDK_int32 inIsParamPairGroup); // inIsParamPairGroup = true means this is a group that

// displays 2 params side by side. Group box is not shown.

Thanks,

Daniel

This topic has been closed for replies.

2 replies

Bruce Bullis
Legend
October 30, 2018

Ok, I've been testing, and I can't get SDK_Exporter to produce different results, regardless of the 'inIsParamPairGroup' param passed. I presume pilot error on my part, and I've written it up as a PPro bug: DVAPR-4212171. I'll keep this thread updated on our progress.

Vouk
VoukAuthor
Known Participant
October 25, 2018

An even better example:

Bruce Bullis
Legend
October 26, 2018

I don't think there's any setting that'll let you put parameters side by side; do any of PPro's effects do that?

Vouk
VoukAuthor
Known Participant
October 26, 2018

I don't know about effects, I am referring to an exporter plugin here. It is visible in the screenshots above.

And it seems to be mentioned in a header file:

csSDK_int32 inIsParamPairGroup); // inIsParamPairGroup = true means this is a group that

// displays 2 params side by side. Group box is not shown.