Concatenating strings

To concatenate strings in Flash Lite, you use the add operator, as the following example shows:

city = "Boston";
team = "Red Sox";
fullName = city add " " add team;
// Result:
// fullName = "Boston Red Sox"