Hi!

Is it possible in Flash 8 to override operators (like in C)?

Take for example the flash.geom.Point class...


var a:Point = new Point(10, 20);
var b:Point = new Point(5, 10);

var c:Point = a + b // instead of a.add(b);

trace (c) // traces (15, 30)


Thanks, bye!