top of page
import sys
sys.path.append(RPR_GetResourcePath() + r"/UserPlugins")
from AZSTOKE_SILVER_python import *
def Msg(parm):
RPR_ShowConsoleMsg(str(parm) + "\n")
track = AZ_GetTrackItemSelect(0,0,0)
Msg(track)
track = AZ_GetTrackItemSelect(0,0,1)
Msg(track)
- SCRIPT -
track = AZ_GetTrackItemSelect(projID,trackID,trackType)
- API -
対応バージョン:
1.0.0
以降
TRACK
AZ_GetTrackItemSelect
Get the track item for the specified track ID.
LUA
- API Detail-
▼Input value
projID(integer) : Project ID
trackID(integer): Track ID
trackType(integer): 0/Normal track 1/Selected track
▼Output value
track(MediaTrack): track item
bottom of page