Flash Player 4。不鼓励在 Flash 5 中使用该函数,而推荐使用 String.fromCharCode()。
String.fromCharCode()
chr(number)
number
number ASCII 码数字。
无。
字符串函数;将 ASCII 码数字转换为字符。
下面的示例将数字 65 转换为字母 A,并将其分配给变量 myVar。
myVar
myVar = chr(65);