User Guide

finishIdleLoad() 315
The findPosNear command is similar to the findPos command, except that when the specified
property is not in the list, the
findPosNear command identifies the position of the value with the
most similar alphanumeric name. This command is useful in finding the name that is the closest
match in a sorted directory of names.
Parameters
valueOrProperty
Required. The value or property whose position is identified.
Example
This statement identifies the position of a property in the sorted list Answers, which consists of
[#Nile:2, #Pharaoh:4, #Raja:0]:
Answers.findPosNear(#Ni)
The result is 1, because Ni most closely matches Nile, the first property in the list.
See also
findPos
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