User Guide

416
name (XML property)
Syntax
XMLnode.name
Description
XML property; returns the name of the specified XML node.
Example
Beginning with this XML:
<?xml version="1.0"?>
<e1>
<tagName attr1="val1" attr2="val2"/>
<e2>element 2</e2>
<e3>element 3</e3>
</e1>
This Lingo returns the name of the second tag that is nested within the tag <e1>:
put gParserObject.child[1].child[2].name
-- "e2"
See also
attributeName
NAN
Description
Lingo return value; indicates that a specified Lingo expression is not a number.
This statement attempts to display the square root of -1, which is not a number, in the
Message window:
put (-1).sqrt
-- NAN
See also
INF
near (fog)
Syntax
member(whichCastmember).camera(whichCamera).fog.near
cameraReference.fog.near
member(whichCastmember).camera(whichCamera).fog.far
cameraReference.fog.far
Description
3D properties; this property allows you to get or set the distance from the front of the camera to
the point where the fogging starts if
fog.enabled is TRUE.
The default value for this property is 0.0.