Flash Lite 1.x ActionScript 语言参考 |
|
|
|
| Flash Lite 全局函数 > chr() | |||
Flash Lite 1.0。
chr(number)
number ASCII 码数字。
字符串函数;将 ASCII 码数字转换为字符。
以下示例将数字 65 转换为字母 A,并将其赋给变量 myVar:
myVar = chr(65);
trace (myVar); // 输出:A
|
|
|
|