-- Lingo syntax _movie.idleReadChunkSize // JavaScript syntax _movie.idleReadChunkSize;
Movie property; determines the maximum number of bytes that Director can load when it attempts to load cast members from the load queue. Read/write.
The default value of idleReadChunkSize is 32K.
This statement specifies that 500K is the maximum number of bytes that Director can load in one attempt at loading cast members in the load queue:
-- Lingo syntax _movie.idleReadChunkSize = (500 * 1024) // JavaScript syntax _movie.idleReadChunkSize = (500 * 1024);