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,1)

trackId = AZ_GetTrackItemIndex(track)

Msg(track)

Msg(trackId)

- SCRIPT -

trackId = AZ_GetTrackItemIndex(track)

- API -

対応バージョン:

1.0.0

以降

TRACK

AZ_GetTrackItemIndex

Get the track ID of the specified track item

- API Detail-

▼入力値

  • track(MediaTrack):トラック

▼出力値

  • trackId(Int):トラックID

bottom of page