VIDEO.Step

Previous  Next

 

status = VIDEO.Step( nControl  AS INTEGER,

                     direction AS INTEGER  ) AS INTEGER

 

 

 

 

Steps the video forward or backwards.  The number of frames stepped depends on the StepLength setting

 

' Play Directions

CONST MT_Forward           = 1

CONST MT_Reverse           = -1

 

Example:

 

FOR i = 1 TO 5

  VIDEO.Step( nControl, MT_Forward )

  SLEEP 0.1

  VIDEO.Step( nControl, MT_Reverse )

  SLEEP 0.1

ENDFOR