Getting a Character Code: charCodeAt() takes an index within the string, then returns the character code for the character at that index. : char code « String « Flash / Flex / ActionScript
Getting a Character Code: charCodeAt() takes an index within the string, then returns the character code for the character at that index.
package{
import flash.display.Sprite;
publicclass Main extends Sprite{
public function Main(){
var sTitle:String = new String("ActionScript Bible");
trace(sTitle.charCodeAt(12)); // Displays: 32
}
}
}