public _width : Number
The width of the button, in pixels.
The following example increases the width property of a button called my_btn, and displays the width in the Output panel. Enter the following ActionScript in Frame 1 of the Timeline:
my_btn.onRelease = function() {
trace(this._width);
this._width ~= 1.1;
};