View Single Post
Old 11-24-2020, 01:31 PM   #39
Funkybot
Human being with feelings
 
Funkybot's Avatar
 
Join Date: Jul 2007
Location: New Joisey
Posts: 6,027
Default

Quote:
Originally Posted by WaveTrans View Post
Thanks for making the effort!
Will try out immedately.
I have to admit, this brougth me close to desparation today...

Strange thing is, that my ReaEQ and ReaGate zones also have the quotes in the same places and they do not crash reaper at all.

But we will see in a couple of minutes.
Hold on...was wrong. Found the issue!!!

Code:
     RotaryPushA2        FXParam 2 [ 0.0 0.003 0.006  ]
See that extra space before the bracket? Get rid of it.

This code works without crashes:

Code:
Zone "VST: ReaComp"
     FocusedFXNavigator
/
     DisplayUpperA1      FXParamNameDisplay 0 "Thresh"
     DisplayLowerA1      FXParamNameDisplay 16 "AutoRelease"
     RotaryB1            FXParam 0
     RotaryA1            FXParam 0 [ 0.0>1.0 ]
     RotaryPushA1        FXParam 16 [ 0.0 1.0 ]
/
     DisplayUpperA2      FXParamNameDisplay 2 "Attack"
     RotaryB2            FXParam 2
     RotaryA2            FXParam 2 [ 0.0>1.0 ] 
     RotaryPushA2        FXParam 2 [ 0.0 0.003 0.006 ]

/
     DisplayUpperA3      FXParamNameDisplay  3 "Release"
     RotaryB3            FXParam 3
     RotaryA3            FXParam 3 [ 0.0>1.0 ]
     RotaryPushA3        FXParam 3 [ 0.0 0.01 0.02 ]
/
     DisplayUpperA4      FXParamNameDisplay 1 "Ratio"
     DisplayLowerA4      FXParamValueDisplay 1 "Ratio"
     RotaryB4            FXParam 1 [ 0.0>1.0 ]
     RotaryA4            FXParam 1 [ 0.0>1.0 ]
     RotaryPushA4        FXParam 1 [ 0.0 0.01 0.02 1.0 ]
/
     DisplayUpperA5      FXParamNameDisplay 11 "Wet/Dry"
     DisplayLowerA5      FXParamNameDisplay 19 "Bypass"
     RotaryB5            FXParam 11 [ 0.0>1.5 ]
     RotaryA5            FXParam 10 [ 0.0>1.0 ]
     RotaryPushA5        FXParam 19 [ 0.0 1.0 ]
/
     DisplayLowerA6      FXParamNameDisplay 4 "PreComp"
     DisplayLowerA6      FXParamNameDisplay 15 "AutoMkUp"
     RotaryB6            FXParam 14 [ 0.0>1.0 ]
     RotaryA6            NoAction
     RotaryPushA6        FXParam 15 [ 0.0 1.0 ]
/    
     DisplayUpperA7      FXParamNameDisplay 13 "RMS"
     DisplayLowerA7      FXParamNameDisplay 6 "LoP"
     RotaryB7            FXParam 13
     RotaryA7            FXParam 6 [ 0.0>1.0 ]
     RotaryPushA7        FXParam 6 [ 0.3 0.4 0.5 0.7 0.8 1.0 ]
/
     DisplayUpperA8      FXParamNameDisplay 14 "Knee"
     DisplayLowerA8      FXParamNameDisplay 7 "HiP"
     RotaryB8            FxParam 14
     RotaryA8            FXParam 7 [ 0.0>1.0 ]
     RotaryPushA8        FXParam 7 [ 0.0 0.00175 0.002 0.005 0.0075 ]
/    
     RotaryPushA1        NoAction
     RotaryPushA5        NoAction
     RotaryPushA6        NoAction
ZoneEnd
Summary of changes:

1. Changed the Plugin Name in the Zone header to match how I renamed it in Reaper (not relavant)
2. Removed the plugin alias (probably not relevant)
3. Changed the widget names to match my surface (not relevant)
4. Removed the "Alias" next to anything that wasn't a display (no change)
5. Removed the quotes around the Parameter Numbers (got us closer)
6. Removed the extra space before the brackets (bingo!)
Funkybot is offline   Reply With Quote