VIDEO.ToolName

Previous  Next

 

toolname = VIDEO.ToolName( nControl     AS INTEGER,

                           nTool        AS INTEGER, 

                           lpszNewValue AS STRING ) AS STRING

 

 

 

 

Sets or gets the name of the specified tool

 

Example:

 

FOR i = 1 TO VIDEO.GetNoOfTools( nControl )

  strOut = FORMAT( "Tool %03d: %s, %s\n", i, VIDEO.ToolName( nControl, i ),_

                                             VIDEO.ToolText( nControl, i ) )

  PRINT strOut

 

  FOR frame = 1 TO 10

     strOut = FORMAT( "Frame %03d: %6.2f\n", frame, VIDEO.GetToolValue( nControl, frame, i ) )

     PRINT strOut

  ENDFOR

ENDFOR