top of page
- API -

solo= reaper.AZ_GetTrackItemSolo(track)

- API Detail-

▼Input value

  • track (MediaTrack): track item

▼Output value

  • retval(boolean): Success or failure of API execution

  • solo(boolean) : false/solo off true/solo on

- SCRIPT -

function Msg(param)

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

end


track = reaper.AZ_GetTrackItemSelect(0,0,0)

solo = reaper.AZ_GetTrackItemSolo(track)

Msg(solo)


track = reaper.AZ_GetTrackItemSelect(0,1,0)

solo = reaper.AZ_GetTrackItemSolo(track)

Msg(solo)

TRACK

AZ_GetTrackItemSolo

Supported versions:

1.0.3

onwards

Get solo for a specific track item

bottom of page