Component textFields: antiAliasType="advanced"?

I’m using a handful of components that have text; TextInput, Label, TextArea, etc…What I want to be able to do is make all of them use “advanced” antialiasing. I can do it if I write a line for every instance that looks basically like this (at least for buttons and textInputs):

myComponent.textField.antiAliasType=“advanced”;

but I’d like to avoid having to write that out for every instance if possible.

I’ve been mucking around with setComponentStyle and setStyle but to no apparent avail. Does anyone have any advice on how to accomplish this? Or example? Thanks in advance!