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,projID,trackID = AZ_GetSelectedTrackFirstInfo(0,0)
Msg(track)
Msg(projID)
Msg(trackID)
- SCRIPT -
track,projID,trackID = AZ_GetSelectedTrackFirstInfo(projID,trackIDOut)
- API -
ID
TRACK
AZ_GetSelectedTrackFirstInfo
対応バージョン:
1.0.0
以降
Get the first track and ID of the selected track
LUA
- API Detail-
▼Input value
projID(integer) : Project ID
trackIDOut(integer): output track ID
▼Output value
track(MediaTrack) – the first selected track item
projID(integer) : The output is the same as the input
trackID(integer) : The regular track ID of the first selected track
bottom of page