cancelIdleLoad()

Usage

-- Lingo syntax
_movie.cancelIdleLoad(intLoadTag)

// JavaScript syntax
_movie.cancelIdleLoad(intLoadTag);

Description

Movie method; cancels the loading of all cast members that have the specified load tag.

Parameters

intLoadTag Required. An integer that specifies a group of cast members that have been queued for loading when the computer is idle.

Example

This statement cancels the loading of cast members that have an idle load tag of 20:

-- Lingo syntax
_movie.cancelIdleLoad(20)

// JavaScript syntax
_movie.cancelIdleLoad(20);

See also

idleLoadTag, Movie