Flash Lite 1.x ActionScript Language Reference |
|
|
|
| Flash Lite Operators > add (string concatenation) | |||
Flash Lite 1.0.
string1addstring2
string1, string2 Strings.
Operator; concatenates (combines) two or more strings.
The following example combines two string values to produce the string catalog.
conStr = "cat" add "alog"; trace (conStr); // output: catalog
|
|
|
|