top of page
- API -
trackName = reaper.AZ_GetTrackItemName(track)
- API Detail-
▼Input value
track(MediaTrack): track item
▼Output value
retval(boolean): Success or failure of API execution
trackName(string) : Track name
- SCRIPT -
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
track = reaper.AZ_GetTrackItemSelect(0,1,0)
name = reaper.AZ_GetTrackItemName(track)
Msg(name)
TRACK
AZ_GetTrackItemName
Supported versions:
1.0.3
onwards
Get the track name of the specified track item
bottom of page