Video.Seek

Video.Seek ( 

string ObjectName,

number SeekType,

number SeekTime = 0 )

Description

Seeks to a position in a video that is loaded in a video object.

Parameters

ObjectName

(string) The name of the video object.

SeekType

(number) The seek type to use:

CONSTANT

VALUE

DESCRIPTION

SEEK_BEGINNING

0

Beginning.

SEEK_END

1

End.

SEEK_FORWARD

2

Forward.

SEEK_BACKWARD

3

Backward.

SEEK_SPECIFIC

4

Specific time.

SeekTime

(number) The time to seek to (or seek by). Defaults to 0.

Note: Only used if SeekType is 2, 3, or 4.

Returns

Nothing. You can use Application.GetLastError to determine whether this action failed, and why.

See also:  Related Actions