top of page
- API -
trackName = reaper.AZ_GetTrackIdName(projID,trackID)
- API Detail-
▼Input value
projID(ReaProjct): Project ID
trackID(integer): Track ID
▼Output value
retval(boolean): Success or failure of API execution
trackName(string) – The name of the track
- SCRIPT -
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"
require("reaper_AZSTOKE_SILVER")
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
trackName = reaper.AZ_GetTrackIdName(0,0)
Msg(trackName)
TRACK
AZ_GetTrackIdName
Supported versions:
1.0.3
onwards
Get the track name for the given track ID
bottom of page