Textfield Initialization

Is it possible to create an initialization object for a text field like this, so that I can apply it to multiple fields? or is there a really easy way to do this that I’ve totally over looked :slight_smile:

Thx’s in advance

var txtObj:Object ={
            autoSize:"right",
            selectable:true,
            html:true,
            multiline : false,
            antiAliasType:"advanced",
            styleSheet:txtCSS
            }

this.createTextField("txt", 1, 100,100,100,100, {initObj});