サイズ(幅、高さ)を設定するには

サンプル1
//ボタンアクション
on (release) {
if (this.rect1_mc._xscale > 30){
this.rect1_mc._xscale *= 0.9;
this.rect1_mc._yscale *= 0.9;
}
}
--------
サンプル2
//ボタンアクション
on (release) {
if (this.rect2_mc._width > 30){
this.rect2_mc._width -= 5;
this.rect2_mc._height -= 5;
}
}
・サンプルを実行
・サンプルをダウンロード
Action Script逆引きクイックリファレンス 説明などは本書を参考にしてください。