top of page
import sys
sys.path.append(RPR_GetResourcePath() + r"/UserPlugins")
from AZSTOKE_BRONZE_python import *
def Msg(parm):
RPR_ShowConsoleMsg(str(parm) + "\n")
chMode = AZ_GetSelectedTrackMediaChannelMode(0, 1, 0)
Msg(chMode)
- SCRIPT -
projID, selectTrackID, selectItemID, ,chMode = AZ_GetSelectedTrackMediaChannelMode(projID, selectTrackID, selectItemI)
- API -
ID
MEDIA
AZ_GetSelectedTrackMediaChannelMode
対応バージョン:
1.0.1
以降
Gets the channel mode of the specified media in the specified selected track.
LUA
- API Detail-
▼Input value
proj ID(ReaProjrct): Project ID
selectTrackID(Int) : Selected track ID
trackItemID (Int): Track media ID
chModeOut(Int): Any number (0 is OK)
▼Output value
retval(Boolean): Whether the API execution was successful or not
proj ID(ReaProjrct): The same as the input is output
selectTrackID(Int) : The same as the input is output
trackItemID(Int): The same as the input
chModeOut(Int): Channel mode
bottom of page