onClipEvent(mouseDown){//鼠标点击时
xclick=_root._xmouse;//计算鼠标点击的位置
yclick=_root._ymouse;
if(click){//第一次点击放大
_root.center._visible=1;
_root.ten._visible=0;
this._width=owidth;//将图片放大为原来的尺寸
this._height=oheight;
click=false;
this._x+=(this._x-xclick)*xb;//计算放大后图后的坐标
this._y+=(this._y-yclick)*yb;
//下面判断是否超过可显示范围
if(this._x>t+owidth/2){this._x=t+owidth/2;}
if(this._x<t+444-owidth/2){this._x=t+444-owidth/2;}
if(this._y>t+oheight/2){this._y=t+oheight/2;}
if(this._y<t+355-oheight/2){this._y=t+355-oheight/2;}
}else{//第二次点击则还原大小
_root.center._visible=0;
_root.ten._visible=1;//显示十字光标
this._width=444;//还原尺寸
this._height=355;
this._x=ox;//居中
this._y=oy;
click=true;
}
}