CreateStringFromCode
From Spheriki
This function returns a string corresponding to the ASCII code number inputted.
[edit]
Usage
string CreateStringFromCode(number);
- number The ASCII index number of the character to be returned. Eg: 65 is 'A'
[edit]
Examples
var string = CreateStringFromCode(65); font.drawText(0, 0, "The first letter of the alphabet is " + string); FlipScreen(); GetKey();
[edit]
Notes
The CreateStringFromCode function is not a commonly used function, but in special cases, it may be useful. Note that the JavaScript specification includes a similar function, String.fromCharCode[1] which acts the same way but supports multiple arguments.

