top of page
- API -

trackList,trackCount = reaper.AZ_GetSelectedTrackIdChildList(projID,selectTrackID)

- API Detail-

▼Input value

  • projID (ReaProject): Project ID

  • selectTrackID(integer): Select track ID

▼Output value

  • retval(boolean): Success or failure of API execution

  • trackList(table)(MediaTrack) : Track array

*The child's truck will be returned. The child's truck will not be included.


- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_SILVER")


trackList = AZ_SILVER.AZ_GetSelectedTrackIdChildList(0,0)


for i, value in pairs(trackList) do

   name = reaper.AZ_GetTrackItemName(trackList[i])

   Msg(name)

end

TRACK

AZ_GetSelectedTrackIdChildList

Supported versions:

1.0.0

onwards

Output the child tracks of the specified track as an array

bottom of page