|
setFrameNumber
|
|
|
|
| Sequence
|
|
|
| An integer between 1 and 116 specifying the number of the sequence. Values in the range of 100-116 correspond to hidden sequences.
|
|
|
|
|
| Frame
|
|
|
| A positive integer specifying the number of the frame to be set as the current frame.
|
|
|
| ERR_OK
|
|
|
| The flag set if successful.
|
|
|
| ERR_FAILED
|
|
|
| The flag set if failed.
|
|
|
| This set of statements grabs a sequence from the video device and plays it backwards at a slower rate:
|
|
|
| grabSeq(1, 20, 0)
|
| seqPlay(1,SQ_STOP)
|
| for i=getFrameCount(1) to 1
|
| setFrameNumber(1,i)
|
| wait(500)
|
| next
|
|
|