top of page
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
mute = reaper.AZ_GetSelectedMediaMute(0,0)
Msg(mute)
mute = reaper.AZ_GetSelectedMediaMute(0,1)
Msg(mute)
- SCRIPT -
mute = reaper.AZ_GetSelectedMediaMute(projID,selectItemID)
- API -
ID
MEDIA
reaper.AZ_GetSelectedMediaMute
対応バージョン:
以降
Gets the mute status of the specified selected media ID.
LUA
- API Detail-
▼Input value
proj (integer): Project ID
selectItemID(integer): Selected item ID
▼Output value
retval(bool): Whether the API execution was successful or not
mute(bool): Muted: True Not muted: False
bottom of page