QuickTime.Seek

boolean QuickTime.Seek ( 

string ObjectName,

number SeekType = 0,

number SeekTime = 0 )

Description

Seeks to a position in a media file that is loaded in a QuickTime object.

Parameters

ObjectName

(string) The name of the QuickTime 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

(boolean) True if the media seek was successful, false if it wasn't. You can use Application.GetLastError to determine whether this action failed, and why.

ResultVariable

When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.

See also:  Related Actions