Director Help

finishIdleLoad()

Usage

-- Lingo syntax
_movie.finishIdleLoad(intLoadTag)

// JavaScript syntax
_movie.finishIdleLoad(intLoadTag);

Description

Movie method; forces completion of loading for all the cast members that have the specified load tag.

Parameters

intLoadTag Required. An integer that specifies the load tag of the cast members to be loaded.

Example

This statement completes the loading of all cast members that have the load tag 20:

-- Lingo syntax
_movie.finishIdleLoad(20)

// JavaScript syntax
_movie.finishIdleLoad(20);

See also

idleHandlerPeriod, idleLoadDone(), idleLoadMode, idleLoadPeriod, idleLoadTag, idleReadChunkSize, Movie