Thanks!
Search found 34 matches
- 26 Jun 2019 10:28
- Forum: General Discussion
- Topic: Is there a keyboard shortcut to toggle the metronome on/off?
- Replies: 7
- Views: 11849
- 21 Jun 2019 13:02
- Forum: General Discussion
- Topic: Is there a keyboard shortcut to toggle the metronome on/off?
- Replies: 7
- Views: 11849
Re: Is there a keyboard shortcut to toggle the metronome on/off?
Thanks for the syntax heads-up; now working as expected.
Maybe you'll consider adding this shortcut as part of the default keybindings in a future release; I bet it would be useful to other users as well.
Maybe you'll consider adding this shortcut as part of the default keybindings in a future release; I bet it would be useful to other users as well.
- 21 Jun 2019 11:23
- Forum: General Discussion
- Topic: Is there a keyboard shortcut to toggle the metronome on/off?
- Replies: 7
- Views: 11849
Re: Is there a keyboard shortcut to toggle the metronome on/off?
I've added the following line to my 'keybindings.conf' file...I am running v5.9.67
but I get the following error:
Can you please explain what I'm doing wrong?
Thanks.
Code: Select all
CTRL_L SHIFT_L M: ra.evalScheme "(ra.enable-metronome (not (ra.metronome-enabled)))"
Can you please explain what I'm doing wrong?
Thanks.
- 13 Jun 2019 13:26
- Forum: General Discussion
- Topic: Is there any way to distinguish between VST and VSTi plugins?
- Replies: 8
- Views: 13691
Re: Is there any way to distinguish between VST and VSTi plugins?
Thanks for weighing in- an 'InstrumentIsPlayingNotes' API addition sounds like the right approach...
- 13 Jun 2019 12:01
- Forum: General Discussion
- Topic: Is there any way to distinguish between VST and VSTi plugins?
- Replies: 8
- Views: 13691
Re: Is there any way to distinguish between VST and VSTi plugins?
Thanks for the detailed responses. As a followup to getSoundPluginRegistry, you can find category of an instrument by iterating the hash tables returned by getSoundPluginRegistry and use getInstrumentTypeName and getInstrumentPluginName to find correct entry. I am successfully parsing the getSoundPl...
- 12 Jun 2019 17:13
- Forum: General Discussion
- Topic: Is there any way to distinguish between VST and VSTi plugins?
- Replies: 8
- Views: 13691
Is there any way to distinguish between VST and VSTi plugins?
The 'getInstrumentTypeName' API function returns "VST" for both my effect (reverb) plugin ("Oril River 1") and my instrument plugin ("DPiano-E 1"): 2plugins.png I am ultimately trying to get a list of midi-playable plugins open in the program: 1. Use getNumAudioInstrume...
- 12 Jun 2019 13:21
- Forum: General Discussion
- Topic: Any way to assign an instrument to a track via the API?
- Replies: 5
- Views: 9343
- 12 Jun 2019 13:10
- Forum: General Discussion
- Topic: Any way to assign an instrument to a track via the API?
- Replies: 5
- Views: 9343
Re: Any way to assign an instrument to a track via the API?
Thanks for the useful info; I have a follow-up question: Is there currently a way to get a LIST of all available instrument IDs and their corresponding names, i.e. id=27, DPiano-A 1 id=28, EPiano-A 1 etc. Trying to familiarize myself with the API functions list in https://github.com/kmatheussen/radi...
- 12 Jun 2019 10:30
- Forum: General Discussion
- Topic: Any way to assign an instrument to a track via the API?
- Replies: 5
- Views: 9343
Any way to assign an instrument to a track via the API?
Via its Mixer object name?
i.e.
ra:select-track 0
then
ra:set-block-track-instrument 'DPiano-E 1'
i.e.
ra:select-track 0
then
ra:set-block-track-instrument 'DPiano-E 1'
- 07 Jun 2019 16:53
- Forum: General Discussion
- Topic: Where can I find a scripting example?
- Replies: 6
- Views: 10173
Re: Where can I find a scripting example?
WOW. Very cool powerful remote functionality baked-in! FYI, sInce I am on Windows: 1. I needed CURL- Windows binaries can be downloaded from: https://curl.haxx.se/windows/ 2. The command-line example supplied needed a syntax modification to work from the Windows cmd prompt- the radium function call ...