top of page
- API -

trackList,trackCount = reaper.AZ_GetTrackItemChildList(track)

- API Detail-

▼Input value


▼Output value


- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_SILVER")


track = reaper.AZ_GetTrackItemSelect(0,1,0)

trackList,trackCount = reaper.AZ_GetTrackItemChildList(track)


for i, value in pairs(trackList) do

   name = reaper.AZ_GetTrackItemName(value)

   Msg(name)

end

TRACK

AZ_GetTrackItemChildList

Supported versions:

1.0.0

onwards

Outputs an array of child track items for the specified track item

bottom of page