|
SAA_actionMarkerGetNameLengths()
Gets the lengths of the names of a set of action markers in an .ani
element.
set scene [SAA_AllocScene]
set action [SAA_AllocElem]
.
.
set markers [ SAA_AllocSubElem $nbMarkers ]
set nameLengths [ SAA_AllocInt $nbMarkers ]
.
.
SAA_actionMarkerGetNameLengths $scene $action $nbMarkers $markers $nameLengths
Parameters
- action
- An .ani element. To get an .ani element, use SAA_elementGetAction().
- nbMarkers
- The number of action markers in markers. To get the total number of action
markers of an element, use SAA_actionGetNbActionMarkers().
- markers
- An array of action markers. To get the action markers of an element, use SAA_actionGetActionMarkers().
- nameLengths
- Returns an array containing the lengths of the names of the action markers.
|