The fromCharCode() method is a static method of the String class. returns a new string primitive value with the character that corresponds to the character code. : char code « String « Flash / Flex / ActionScript
The fromCharCode() method is a static method of the String class. returns a new string primitive value with the character that corresponds to the character code.
package{ import flash.display.Sprite;
public class Main extends Sprite{ public function Main(){ for(var i:Number = 0; i < 150; i++){
trace(i + ": " + String.fromCharCode(i));
}
}
}
}