Flash Lite 1.x ActionScript Language Reference |
|
|
|
| Flash Lite Global Functions > chr() | |||
Flash Lite 1.0.
chr(number)
number An ASCII code number.
String function; converts ASCII code numbers to characters.
The following example converts the number 65 to the letter A and assigns it to the variable myVar:
myVar = chr(65);
trace (myVar); // Output: A
|
|
|
|