View Single Post
Old 11-20-2020, 03:40 PM   #11620
Funkybot
Human being with feelings
 
Funkybot's Avatar
 
Join Date: Jul 2007
Location: New Joisey
Posts: 5,973
Default

It occurred to me just now that if you don't want Hold+SomeButton to duplicate the same action assigned to SomeButton, in the case of toggles you can just add it again.

So in theory, this...

Code:
Click 		Reaper	40364   //toggle metronome
Hold+Click	Reaper 	40363	//Show metronome settings - problem here is that if your click was on before you pressed and held you just turned it off
Should be remedied by this, because your essentially toggling it twice...

Code:
Click 		Reaper	40364   //toggle metronome
Hold+Click	Reaper 	40363	//Show metronome settings
Hold+Click     Reaper	40364   //toggle metronome the second time
Funkybot is offline   Reply With Quote