May 2001
Intermediate to advanced
720 pages
23h 24m
English
String.fromCharCode( ) Class Method — generate a string from one or more code points
Flash 5
String.fromCharCode(code_ point1, code_ point2,...code_ pointn)
n
A series of one or more decimal integers corresponding to Latin 1 or Shift-JIS character code points, as shown in Appendix B.
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.
// Makes a copyright symbol, followed by the year (2001) copyNotice = String.fromCharCode(169) + " 2001";
String.charCodeAt( ); Appendix B, Section 4.6.9.1 in
Chapter 4
Read now
Unlock full access