Yeah that's what maths says, but Flash thinks differently. 6^2 = 36 right?
Code:
trace (6^2);
not so according to Flash... I think it's actually an Xor gate. this gives what we wnat:
Code:
trace (Math.pow ( 6, 2 ));