top of page
- API -
reaper.AZ_SetTrackIdInputChannel(projID, trackID, firstChInx, numChs, inputChType)
- API Detail-
▼Input values
projID(ReaProject): target project (0 for the current project)
trackID(integer): track ID (0-based)
firstChInx(integer): index of the first channel (0-based)
numChs(integer): number of input channels
inputChType(integer): input channel type (0 = Audio, 1 = Midi)
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_SILVER")
projID = 0
trackID = 0
firstChInx = 0
numChs = 1
inputChType = 0
reaper.AZ_SetTrackIdInputChannel(projID, trackID, firstChInx, numChs, inputChType)
TRACK
AZ_SetTrackIdInputChannel
Supported versions:
2.0.0
onwards
Set input channel (by track ID)

bottom of page
