How do I access Plugin parameters via scripting?
I have a script that accesses a plugin I use, and I'm able to change the parameters successfully except for the nested ones. Is there a standard format or character to use to access these, because I can't figure it out?!
Can provide more code if necessary, but essentially, I'm able to access the non-nested (e.g., `Random seed`)by using the correct title case as below, but not sure about the nested ones (e.g., Composite noise: Intensity):
var paramMapping = {
"random_seed": ["Random seed"],
"use_field": ["Use field"],
"filter_type": ["Lowpass filter type"],
"input_luma_filter": ["Input luma filter"],
"chroma_lowpass_in": ["Chroma low-pass in"],
"composite_preemphasis": ["Composite preemphasis"],
"composite_noise": ["Composite noise", "Composite noise"],
"composite_noise_intensity": ["Composite noise", "Intensity"],
"composite_noise_frequency": ["Composite noise", "Frequency"],
Any help or thoughts is appreciated, thanks.
