I am trying to get Max/MSP to remember vst presets for my patch. Every time I close the patch and re-open, the vst goes to default. The vst I am trying to use is called alchemy (free version). Does anyone know how to get max/msp to remember vst presets, does it vary for different vst's and audio unit plugins? Here is the link to download alchemy player. http://www.camelaudio.com/AlchemyPlayer.php
Remembering VST presets in Max/Msp
1.1k views Asked by Marsden Giolas At
2
There are 2 answers
0
On
The read & write messages to vst~ open dialog boxes you can save your effects files in.
In Max 5, Windows 7 64-bit, I had to write the following message to read a file directly:
(read C:/myvsts/presets/quiet.fxp)
Likewise there's the following vst~ messages to interact with saving:
- read
- write
- writepgm
- writebank
These are shown in the vst~ helpfile and further in the reference.
The only way I know is to
like so:
When loading the patch, you read the text file and send the parameter values to the vst~ object.
Hth