AS3.0 第四行出现 1021 不兼容的覆盖 1023 函数定义重复 错误
this.stop();hello_txt.text="PressStart";start_btn.addEventListener(MouseEvent.CLICK,x...
this.stop();
hello_txt.text="Press Start";
start_btn.addEventListener(MouseEvent.CLICK,xStart);
function xStart(event:Event):void{
this.gotoAndStop(2);
}
正确的该怎么写? 展开
hello_txt.text="Press Start";
start_btn.addEventListener(MouseEvent.CLICK,xStart);
function xStart(event:Event):void{
this.gotoAndStop(2);
}
正确的该怎么写? 展开
展开全部
function xStart 已经定义过了 给他改名
function xStart(event:Event)改成function xStart2(event:MouseEvent)
this.stop();
hello_txt.text="Press Start";
start_btn.addEventListener(MouseEvent.CLICK,xStart2);
function xStart2(event:MouseEvent):void{
this.gotoAndStop(2);
}
function xStart(event:Event)改成function xStart2(event:MouseEvent)
this.stop();
hello_txt.text="Press Start";
start_btn.addEventListener(MouseEvent.CLICK,xStart2);
function xStart2(event:MouseEvent):void{
this.gotoAndStop(2);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
赞成下面的回答。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function xStart(event:Event):void{
改成
function xStart(event:MouseEvent):void{
改成
function xStart(event:MouseEvent):void{
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是as3.0么?应该是mouseEvent
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询