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

    

    

retval = AZ_DeleteTrackIdSelect(0,0,0)

Msg(retval)


retval = AZ_DeleteTrackIdSelect(0,0,1)

Msg(retval)

- SCRIPT -

retval = AZ_DeleteTrackIdSelect(projID,trackID,trackType)

- API -

対応バージョン:

1.0.0

以降

TRACK

AZ_DeleteTrackIdSelect

Delete the specified track ID

- API Detail-

▼Input value

  • projID(integer) : Project ID

  • trackID(integer): Track ID

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

▼Output value

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

bottom of page