По ссылке ничего не нашел, так что пишу как понял.
Программно:

Код:
import mx.transitions.*;
import mx.transitions.easing.*;
button_instance.onRollOver = function()
{
var in_x_tween:Tween = new Tween(this, "_width", Bounce.easeIn, this._width, 120, 0.01*(120-this._width), true);
var in_y_tween:Tween = new Tween(this, "_height", Bounce.easeIn, this._height, 120, 0.01*(120-this._height), true);
};
button_instance.onRollOut = function()
{
var out_x_tween:Tween = new Tween(this, "_width", Bounce.easeOut, this._width, 100, 0.01*(this._width-100), true);
var out_y_tween:Tween = new Tween(this, "_height", Bounce.easeOut, this._height, 100, 0.01*(this._height-100), true);
};
button_instance.onRelease = function ()
{
// Сюда написать действия, которые должны выполниться при нажатии на кнопку
}
button_instance - это instance name (имя экземпляра) мувиклипа, который будет кнопкой. Указывается в окне Properties.