Mega Code Archive

 
Categories / Flash ActionScript / String
 

The fromCharCode() method is a static method of the String class returns a new string primitive value with the character that corre

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));         }     }   } }