top of page
- API -

errorMsg = AZ_GetErrorMsg()

- API Detail-


▼Output value

errorCode: 0: Success/Other than 0: Failure

- SCRIPT -

import sys

sys.path.append(RPR_GetResourcePath() + r"\UserPlugins")

from AZSTOKE_BRONZE_python import *

from RIGDOCKS_python import *


def Msg(parm):

RPR_ShowConsoleMsg(str(parm) + "\n")

_,_,allCount,typeCount = AZ_GetMediaTypeCount(0,"WAV",0,0)

Msg(typeCount)


errorMsg = AZ_GetErrorMsg()

Msg(errorMsg)

ERROR

AZ_GetErrorMsg

Supported versions:

1.0.3

onwards

Get the error message of the last API executed

bottom of page