Flash.Seek

Flash.Seek ( 

string ObjectName,

number SeekType = SEEK_BEGINNING,

number SeekFrame = 0 )

Description

Seeks to a position in a Flash file in a Flash object.

Parameters

ObjectName

(string) The name of the Flash object.

SeekType

(number) The seek type to use:

CONSTANT

VALUE

DESCRIPTION

SEEK_BEGINNING

0

Beginning. (Default)

SEEK_END

1

End.

SEEK_FORWARD

2

Forward.

SEEK_BACKWARD

3

Backward.

SEEK_SPECIFIC

4

Specific time.

SeekFrame

(number) The frame to seek to (or the number of frames to 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