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

- SIMPLE SCRIPT -

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

- API -

対応バージョン:

1.0.0

以降

TRACK

AZ_SILVER.AZ_GetTrackItemChildList

指定トラックアイテムの子トラックアイテム配列出力

- API Detail -

▼入力値

track (MediaTrack) : トラック


▼出力値

retval(boolean):API実行の成否

trackList(table)(MediaTrack) : 子トラック配列

trackCount(integer) : 子トラックの数

bottom of page