Hi,

Is it possible to have every TextField instance run some custom code when they're created?

I tried this but it didn't output anything...

Code:
		TextField.prototype.TextField = function ()
		{
			trace("construct");
		};
Any ideas?

Cheers, CN