Learning Flash Lite 1.x ActionScript |
|
|
|
| Flash 4 ActionScript Primer > Working with text and strings > 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"
|
|
|
|