chr()

Availability

Flash Lite 1.0.

Usage

chr(number)

Operands

number An ASCII code number.

Description

String function; converts ASCII code numbers to characters.

Example

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