嫡女妖娆重生帝君下载:想请教一个简单的flash语言,帮我改一下错.

来源:百度文库 编辑:高考问答 时间:2024/04/26 13:04:11
box2.on Mouse Down=function(){
if (this.hit Test(_xouse,_youse,true)){
this. startDrag(false);
}
}
box2.on Mouse Up = function(){
this. stopDrag();
}

想做一个flash拼图游戏,这个是加在帧上的语言,可是出错了,提示说有三个错误,如果有朋友会改麻烦您教我一下,谢谢.

//改成下面的就可以运行了如果你其它地方没错的话。
box2.onMouseDown=function(){
if (this.hitTest(_xmouse,_ymouse,true)){
this. startDrag(false);
}
}
box2.onMouseUp = function(){
this. stopDrag();
}

box2.onMouseDown = function() {
if (this.hitTest(_xmouse, _ymouse, true)) {
this.startDrag();
}
};
box2.onMouseUp = function() {
this.stopDrag();
};

这个绝对可以!~!~