idleLoadPeriod

Usage

-- Lingo syntax
_movie.idleLoadPeriod

// JavaScript syntax
_movie.idleLoadPeriod;

Description

Movie property; determines the number of ticks that Director waits before trying to load cast members waiting to be loaded. Read/write.

The default value for idleLoadPeriod is 0, which instructs Director to service the load queue as frequently as possible.

Example

This statement instructs Director to try loading every 1/2 second (30 ticks) any cast members waiting to be loaded:

-- Lingo syntax
_movie.idleLoadPeriod = 30

// JavaScript syntax
_movie.idleLoadPeriod = 30;

See also

on idle, Movie