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")



count = AZ_GetTrackCountSelect(0,0)

Msg(count)


count = AZ_GetTrackCountSelect(0,1)

Msg(count)

- SCRIPT -

count = AZ_GetTrackCountSelect(projID,trackType)

- API -

対応バージョン:

1.0.0

以降

TRACK

AZ_GetTrackCountSelect

Get the number of tracks of a given type

- API Detail-

▼Input value

  • projID(integer) : Project ID

  • trackType(integer) : 0/Normal track 1/Selected track

  • trCountOut(integer): Enter "0" ※Box for out

▼Output value

  • retval(bool): Whether the API execution was successful or not

  • projID(integer) : The output is the same as the input

  • trackType(integer) : The same as the input is output

  • trCountOut(integer) : number of tracks

bottom of page