User Guide
castLib() 255
Example
This statement shows that sprite 5 contains three cameras.
-- Lingo syntax
put sprite(5).cameraCount()
-- 3
// JavaScript syntax
put(sprite(5).cameraCount());
// 3
See also
addCamera, deleteCamera
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
castLib()
Usage
-- Lingo syntax
castLib(castNameOrNum)
// JavaScript syntax
castLib(castNameOrNum);
Description
Top level function; returns a reference to a specified cast library.