[SOLVED] AAX Linked Parameters crashing PT

Hi guys,
what’s the best way to handle meta parameters for AAX plugins?
Currently I’m returning true on isMetaParameter for the one that are linked together, but as soon as I change one of the two parameters, PT crashes.

EDIT: I found a workaround by deriving my parameter class from Timer and async updating the linked parameters.

Thanks,
Luca

I had a similar problem with AAX. It also happens when you access a parameter value through the value tree in the paramToText function.

You can hold all parameters in your own hashmap and access them through your hashmap instead of the value tree. I didn’t have any crashes anymore with that change.