ボタンを押した/離した時に処理を実行するには

//ムービークリップ内のフレームアクション
this._btn.onPress = function(){
this._parent.startDrag();
};
this._btn.onRelease = this._btn.onReleaseOutside = function(){
this._parent.stopDrag();
};

//ボタンアクション
on (press){
this.startDrag();
}
on (release,releaseOutside){
this.stopDrag();
}

・サンプルを実行
・サンプルをダウンロード
Action Script逆引きクイックリファレンス 説明などは本書を参考にしてください。