top of page
- API -

soloType = reaper.AZ_GetTrackIdSolo(projID,trackID)

- API Detail-

▼Input value

projID(ReaProjct): Project ID

trackID(integer): Track ID


▼Output value

retval(boolean): Success or failure of API execution

soloType(boolean): true/solo false/not solo

- SCRIPT -

package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"

require("reaper_AZSTOKE_SILVER")


function Msg(param)

reaper.ShowConsoleMsg(tostring(param).."\n")

end


soloType = reaper.AZ_GetTrackIdSolo(0,0)

Msg(soloType)


soloType = reaper.AZ_GetTrackIdSolo(0,1)

Msg(soloType)

TRACK

AZ_GetTrackIdSolo

Supported versions:

1.0.3

onwards

Get solo for specified track ID

bottom of page