Case sensitivity ActionScript 3.0 is a case-sensitive language. Identifiers that differ only in case are considered different identifiers. For example, the following code creates two different variables:
var num1:int;
var Num1:int;
var num1:int;
var Num1:int;