On Thu, 17 Mar 2005 09:52:27 -0500, Matt Horn <[EMAIL PROTECTED]> wrote:
> I believe the reason is performance.
I agree. It's actually code size, to be specific. If color were a
property, it would be implement like this:
function set color(value:Object):Void
{
setStyle("color", value);
}
You can still do this if you extend a class from the framework. The
problem with this is, all the styles would become properties of the
objects and that would increase the size of the code.
Manish

