Normally a function of this type requires the use of Midi Machine Control protocol or Midi Transport Control protocol.
Of course I first tried to look in the plugin parameters, but in no plugin of the Drum Machine type is the Start or Play parameter exposed.
I could wrong, but at this time the topic doesn’t reflect it yet. (And it will probably not stop someone to make a post to this topic, if deemed useful).
Add a scriptlet (available under MIDI Processing and Monitoring) to the wiring view
Past this in it (it’s a very rudimentary script, but it should get you going):
var
start_stop : Discrete Parameter "stop", "start" = "stop" // Discrete named parameters
// Called when a parameter value has changed
On ParameterValueChanged matching start_stop
var m : MidiMessage
if start_stop == "start"
then
m = MakeMidiMessage1(0xfa)
SendNow(m)
else
m = MakeMidiMessage1(0xfc)
SendNow(m)
end
End
Click the compile button!
Go to the edit view
Add a widget
Assign the start_stop parameter from the ‘Scriptlet’ plugin to it. You can rename the scriptlet plugin in the wiring view