按钮关闭动画 代码qu_btn.onPress = function() { 语句必须出现在 on 处理函数中什么意思呢?
1个回答
展开全部
ActionScript 2.0
qu_btn.onPress = function() {this.stop();}
ActionScript 3.0
qu_btn.addEventListener(MouseEvent.CLICK,a_stop);
function a_stop(me:MouseEvent){this.stop();}
qu_btn.onPress = function() {this.stop();}
ActionScript 3.0
qu_btn.addEventListener(MouseEvent.CLICK,a_stop);
function a_stop(me:MouseEvent){this.stop();}
追问
非常感谢你的回答 谢谢 可是我之前
qu_btn.onPress = function() {
removeMovieClip(cd1);
};现在用你说的试了一次
还是会出现qu_btn.onPress = function() { 语句必须出现在 on 处理函数中 这是为什么呢
追答
一、语句不完整,没有封闭,少了小括号或是大括号或是分号
二、语句有误
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询