Skip to content

Step Actions

Step actions allow you to manipulate individual steps in a MIDI pattern. These actions include setting velocity, length, and other properties for selected steps.

Step Actions List

ActionDescriptionExample
Step Selected VelocitySets the velocity for selected stepsStep Selected Velocity(100)
Step Selected LengthSets the length for selected stepsStep Selected Length(0.5)
Step Selected ChanceSets the chance value for selected stepsStep Selected Chance(0.75)
Step Selected TransposeTransposes the selected stepsStep Selected Transpose(12)
Step Selected GainSets the gain for selected stepsStep Selected Gain(0.8)
Step Selected PressureSets the pressure (aftertouch) for selected stepsStep Selected Pressure(0.6)
Step Selected TimbreSets the timbre for selected stepsStep Selected Timbre(0.7)
Step Selected PanSets the pan value for selected stepsStep Selected Pan(0.5)
Step Selected Velocity SpreadSets the velocity spread for selected stepsStep Selected Velocity Spread(0.2)
Step Selected Release VelocitySets the release velocity for selected stepsStep Selected Release Velocity(0.5)
Step Selected Is Chance EnabledEnables/disables chance for selected stepsStep Selected Is Chance Enabled(true)
Step Selected Is MutedMutes/unmutes selected stepsStep Selected Is Muted(true)
Step Selected Is Occurrence EnabledEnables/disables occurrence for selected stepsStep Selected Is Occurrence Enabled(true)
Step Selected Is Recurrence EnabledEnables/disables recurrence for selected stepsStep Selected Is Recurrence Enabled(true)
Step Selected Is Repeat EnabledEnables/disables repeat for selected stepsStep Selected Is Repeat Enabled(true)
Step Selected OccurrenceSets the occurrence condition for selected stepsStep Selected Occurrence(FIRST)
Step Selected RecurrenceSets the recurrence pattern for selected stepsStep Selected Recurrence(4, 15)
Step Selected Repeat CountSets the repeat count for selected stepsStep Selected Repeat Count(4)
Step Selected Repeat CurveSets the repeat timing curve for selected stepsStep Selected Repeat Curve(0.5)
Step Selected Repeat Velocity CurveSets the repeat velocity curve for selected stepsStep Selected Repeat Velocity Curve(0.3)
Step Selected Repeat Velocity EndSets the end velocity for note repeatsStep Selected Repeat Velocity End(0.4)
Step SetSets multiple properties for selected stepsStep Set(velocity=100, length=0.5)

Step Actions Example

plaintext
// Set velocity and length for selected steps
Step Selected Velocity(100)
Step Selected Length(0.5)

// Enable chance and set its value
Step Selected Is Chance Enabled(true)
Step Selected Chance(0.75)

// Set recurrence pattern and repeat count
Step Selected Recurrence(4, 15)
Step Selected Repeat Count(4)