Archive for July, 2010

Some things are null on Win, but not on Mac

Thursday, July 15th, 2010
Actionscript:
  1. var myArray:Array = new Array(new SomeObject(), new SomeObject(), new SomeObject());
  2. // true on Win, false on Mac
  3. trace(myArray[3] == null);

Such fun those little differences in the Flash Player! :)