symbolP()
559
symbol()
Usage
-- Lingo syntax
symbol(
stringValue
)
// JavaScript syntax
symbol(
stringValue
);
Description
Top level function; takes a string and returns a symbol.
Parameters
stringValue
Required. The string to convert to a symbol.
Example
This statement displays the symbol
#hello
:
--Lingo syntax
put(symbol("hello"))
// JavaScript syntax
put(symbol("hello"));
This statement displays the symbol
#goodbye
:
--Lingo syntax
x = "goodbye"
put(symbol(x))
// JavaScript syntax
var x = "goodbye";
put(symbol(x));
See also
value()
,
string()
symbolP()
Usage
Expression.symbolP
symbolP(
expression
)
Description
Function; determines whether a specified expression is a symbol (
TRUE
) or not (
FALSE
).
The
P
in
symbolP
stands for predicate.
Parameters
expression
Required. Specifies the expression to test.
Summary of Contents for DIRECTOR MX 2004-DIRECTOR SCRIPTING
Page 1: ...DIRECTOR MX 2004 Director Scripting Reference...
Page 48: ...48 Chapter 2 Director Scripting Essentials...
Page 100: ...100 Chapter 4 Debugging Scripts in Director...
Page 118: ...118 Chapter 5 Director Core Objects...
Page 594: ...594 Chapter 12 Methods...
Page 684: ...684 Chapter 14 Properties See also DVD...
Page 702: ...702 Chapter 14 Properties See also face vertices vertices flat...
Page 856: ...856 Chapter 14 Properties JavaScript syntax sprite 15 member member 3 4...
Page 1102: ...1102 Chapter 14 Properties...