登录 注册
当前位置:主页 > 资源下载 > 在ActionScript3的Flash中,使用clearInterval函数进行事件处理

在ActionScript3的Flash中,使用clearInterval函数进行事件处理

  • 更新:2024-06-24 08:11:44
  • 大小:1.39MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:游戏开发 - 课程资源
  • 格式:PPT

资源介绍

clearInterval函数 clearInterval(间隔标记) 间隔标记=setInerval(函数名,时间间隔) 是以1开始的正整数 function test(aa) { trace(aa); trace(a); } var a:int=setInterval(test,1000,"参数"); stage.addEventListener(MouseEvent.CLICK,stopTest); function stopTest(e:MouseEvent) { clearInterval(a); }