frame

Usage

-- Lingo syntax
_movie.frame

// JavaScript syntax
_movie.frame;

Description

Movie property; returns the number of the current frame of the movie. Read-only.

Example

This statement sends the playhead to the frame before the current frame:

-- Lingo syntax
_movie.go(_movie.frame - 1)

// JavaScript syntax
_movie.go(_movie.frame - 1);

See also

go(), Movie