top of page

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)

- SCRIPT -

trackName = reaper.AZ_GetTrackIdName(projID,trackID)

- API -

ID

TRACK

reaper.AZ_GetTrackIdName

対応バージョン:

1.0.0

以降

Get the track name for the given track ID

- 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

bottom of page