top of page
function Msg(param)
reaper.ShowConsoleMsg(tostring((param)).."\n")
end
count = reaper.AZ_GetTrackCountSelect(0,0)
Msg(count)
count = reaper.AZ_GetTrackCountSelect(0,1)
Msg(count)
- SCRIPT -
allCount = reaper.AZ_GetTrackCountSelect(projID,trackType)
- API -
ID
TRACK
reaper.AZ_GetTrackCountSelect
対応バージョン:
1.0.0
以降
Get the number of tracks for a given track type
LUA
- API Detail-
▼Input value
projID (ReaProject): Project ID
trackType(integer): 0/Normal track 1/Selected track
▼Output value
retval(boolean): Success or failure of API execution
allCount(integer) : number of tracks
bottom of page