top of page
- API -
trackList,trackCount = reaper.AZ_GetTrackItemChildList(track)
- API Detail-
▼Input value
▼Output value
- SCRIPT -
os = reaper.GetOS()
if "Win" == string.match(os,"(Win)") then
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"
else
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dylib"
end
require("reaper_AZSTOKE_SILVER")
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
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.3
onwards
Outputs an array of child track items for the specified track item
bottom of page