CS4 instance of a string and concatenate two strings with action script
This code show how to create instance of a string.
And this code shows how to concatenate two strings.
var a:String = "vineela"; var b:String = a; a = "Druva"; trace(a.concat(b));