User Guide
615
sourceFileName
Syntax
flashCastMember.sourceFileName
Description
Flash cast member property; specifies the pathname of the FLA source file to be used during
launch-and-edit operations. This property can be tested and set. The default is an empty string.
Example
This Lingo sets the sourceFileName of the Flash cast member “SWF” to C:\FlashFiles\myFile.fla:
member("SWF").sourceFileName = "C:\FlashFiles\myFile.fla"
sourceRect
Syntax
window whichWindow.sourceRect
the sourceRect of window whichWindow
Description
Window property; specifies the original Stage coordinates of the movie playing in the window
specified by
whichWindow.
This property is useful for returning a window to its original size and position after it has been
dragged or its rectangle has been set.
Example
This statement displays the original coordinates of the Stage named Control_panel in the
Message window:
put window("Control_panel").sourceRect
See also
drawRect, rect (camera)
SPACE
Syntax
SPACE
Description
Constant; read-only, value that represents the space character.
Example
This statement displays “Age Of Aquarius” in the Message window:
put "Age"&SPACE&"Of"&SPACE&"Aquarius"