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")
projID,selectTrackID,Name,Size = AZ_GetSelectedTrackIdName(0,0,"",1024)
Msg(Name)
- SCRIPT -
projID,selectTrackID,nameOut,nameOut_sz = AZ_GetSelectedTrackIdName(projID,selectTrackID,nameOut,nameOut_sz)
- API -
対応バージョン:
1.0.0
以降
TRACK
AZ_GetSelectedTrackIdName
Get the name of the track with the selected ID
LUA
- API Detail-
▼Input value
projID(integer) : Project ID
selectTrackID(integer) : Select track ID
Name(string): Enter "" in this box.
NameSize(integer) : Frame of output characters (e.g. 1024)
▼Output value
retval(bool): Whether the API execution was successful or not
projID(integer) : The output is the same as the input
selectTrackID(integer) : The same as the input is output
Name(string) : Track name
NameSize(integer) : The output is the same as the input
bottom of page