top of page
- API -

trackList,trackCount = reaper.AZ_GetTrackItemChildList(track)

- API Detail -

▼入力値

track (MediaTrack) : トラック


▼出力値

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

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

- SIMPLE 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

対応バージョン:

1.0.3

以降

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

bottom of page