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)
_,trackName,_ = AZ_GetTrackItemName(track,"",1024)
Msg(trackName)
- SCRIPT -
track,trackName,size = AZ_GetTrackItemName(track,trackName,size)
- API -
ID
TRACK
AZ_GetTrackItemName
対応バージョン:
1.0.0
以降
Get the track name of the specified track item
LUA
- API Detail-
▼Input value
track(MediaTrack): track item
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
track(MediaTrack): The same as the input is output
Name(string) : Track name
NameSize(integer) : The output is the same as the input
bottom of page