User Guide

traceLoad 1047
topSpacing
Usage
chunkExpression.topSpacing
Description
Text cast member property; allows you to specify additional spacing applied to the top of each
paragraph in the
chunkExpression portion of the text cast member.
The value itself is an integer, with less than 0 indicating less spacing between paragraphs and
greater than 0 indicating more spacing between paragraphs.
The default value is 0, which results in default spacing between paragraphs.
Example
This statement sets the topSpacing of the second paragraph in text cast member "myText"
to 20:
member(1).paragraph[2].topSpacing = 20
See also
bottomSpacing
traceLoad
Usage
-- Lingo syntax
_movie.traceLoad
// JavaScript syntax
_movie.traceLoad;
Description
Movie property; specifies the amount of information that is displayed about cast members as they
load. Read/write.
Valid values for traceLoad are as follows.
0Displays no information (default).
1Displays cast members’ names.
2Displays cast members’ names, the number of the current frame, the movie name, and the
file seek offset (the relative amount the drive had to move to load the media).
Example
This statement causes the movie to display the names of cast members as they are loaded:
-- Lingo syntax
_movie.traceLoad = 1
// JavaScript syntax
_movie.traceLoad = 1;
See also
Movie