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")
trackList = AZ_GetTrackIdChildList(0,1)
for i, value in enumerate(trackList, 1):
_,name,_ = AZ_GetTrackItemName(value,"",1024)
Msg(name)
- SCRIPT -
trackList,trackCount = AZ_GetTrackIdChildList(projID,trackID)
- API -
対応バージョン:
1.0.0
以降
TRACK
AZ_GetTrackIdChildList
Output child tracks of the specified track ID as an array
LUA
- API Detail-
▼Input value
projID(integer) : Project ID
trackID(integer) : track ID
▼Output value
retval(bool): Whether the API execution was successful or not
trackList(table)(MediaTrack) : Track array
trackCount(integer) : number of child tracks
*Child tracks are output in an array
bottom of page