Re: fxPlug Custom Parameter
Re: fxPlug Custom Parameter
- Subject: Re: fxPlug Custom Parameter
- From: Dave Howell <email@hidden>
- Date: Mon, 20 Mar 2006 12:36:20 -0800
I have been trying to implement a custom parameter within an fxPlug filter. After reviewing the samples it seems like it requires registration through the property list resource. Am I missing some docs that specifically relate to what is required in the plist to register custom parameters?
The documentation is on the disk image from which you installed the FxPlug SDK.
The info.pList file needs to specify each host-API protocol that your plug-in wants to use. One of these is the CustomParameterAPI. Here's an example, with FxCustomParameterActionAPI:
<key>ProPlugProtocolList</key> <array> <dict> <key>protocolName</key> <string>FxParameterCreationAPI</string> <key>versions</key> <array> <integer>1</integer> </array> </dict> <dict> <key>protocolName</key> <string>FxParameterRetrievalAPI</string> <key>versions</key> <array> <integer>1</integer> </array> </dict> <dict> <key>protocolName</key> <string>FxParameterSettingAPI</string> <key>versions</key> <array> <integer>1</integer> </array> </dict> <dict> <key>protocolName</key> <string>FxCustomParameterActionAPI</string> <key>versions</key> <array> <integer>1</integer> </array> </dict> </array>
Hope this helps. If not, let me know!
Dave |
Attachment:
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Pro-apps-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden