> class C { > public property x(dynamic,null) : Int; > public function new() { } > } > > var c = new C(); > Reflect.setField(c,"x",function() { return 33; }); > trace(c.x); // 33 Sorry, it was Reflect.setField(c,"get_x",...) Nicolas