I need to initialize an array using direct initializing (ActionScript 3). Like this:
private var aa: Array;
function init() {
aa = [0x0050, 0x00ff, 0xff22];
}
I guess aa will contain array of numbers of any type that compiler wants. But I need them to be type of "int". How should I tell that for compiler?