top of page

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)

retval,trackList,trackCount = AZ_SILVER.AZ_GetTrackItemChildList(track)


for i, value in pairs(trackList) do

   _,name = reaper.AZ_GetTrackItemName(value)

   Msg(name)

end

- SCRIPT -

retval,trackList,trackCount = AZ_SILVER.AZ_GetTrackItemChildList(track)

- API -

ID

TRACK

AZ_SILVER.AZ_GetTrackItemChildList

対応バージョン:

1.0.0

以降

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

- API Detail-

▼Input value


▼Output value


bottom of page