top of page
- API -
trackVol = reaper.AZ_GetTrackItemVolume(track)
- API Detail-
▼Input value
track(MediaTrack): track item
▼Output value
retval(boolean): Success or failure of API execution
trackVol(number): Acquired volume
- SCRIPT -
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"
require("reaper_AZSTOKE_SILVER")
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
track = reaper.AZ_GetTrackItemSelect(0,1,0)
trackVol = reaper.AZ_GetTrackItemVolume(track)
Msg(trackVol)
TRACK
AZ_GetTrackItemVolume
Supported versions:
1.0.3
onwards
Gets the volume value of the specified track item.
bottom of page