timeoutList

Usage

-- Lingo syntax
_movie.timeoutList

// JavaScript syntax
_movie.timeoutList;

Description

Movie property; a linear list containing all currently active timeout objects. Read-only.

Use the forget() method to delete a timeout object.

Timeout objects are added to the timeoutList with the new() method.

Example

This statement deletes the third timeout object from the timeout list:

-- Lingo syntax
_movie.timeoutList[3].forget()

// JavaScript syntax
_movie.timeoutList[3].forget();

See also

forget() (Window), Movie, new(), forget() (Timeout), timeout()