String.fromCharCode( ) Class Method | Flash 5 |
generate a string from one or more code points |
A series of one or more integers corresponding to Unicode character code points.
A string formed by concatenating the characters represented by the specified code points.
The fromCharCode( ) class method produces a character or series of characters from character code points, as described in Chapter 4. For code points below 128, it effectively builds a string from a series of ASCII codes.
// Makes a copyright symbol, followed by the year (2003) copyNotice = String.fromCharCode(169) + " 2003";
String.charCodeAt( ); "The fromCharCode( ) function," in Chapter 4; Appendix B