top of page

function Msg(param)

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

end


retval = reaper.AZ_SetSelectedMediaMute(0,0,true)

Msg(retval)


retval = reaper.AZ_SetSelectedMediaMute(0,1,false)

Msg(retval)

- SCRIPT -

retval = reaper.AZ_SetMediaMute(projID,selectItemID,muteType)

- API -

ID

MEDIA

reaper.AZ_SetSelectedMediaMute

対応バージョン:

以降

Sets the mute state of the specified selected media

- API Detail-

▼Input value

  • proj (integer): Project ID

  • selectItemID(integer): Item ID

  • muteType(bool) : true = muted, false = not muted

▼Output value

  • retval(bool): Whether the API execution was successful or not

bottom of page