摘要:
cs里面默认的用数字代表帧名,既第1帧,第2帧,但代码中有种更实用的是在帧属性面板中为关键帧取意义描述名字,如normal;cs中的层,值得注意的有两种情况,一会新建一层给关键帧取名字,如有在帧上写代码的需求,也会新建一层 阅读全文
摘要:
当一个容器内有多个显示对象,要获取这些子显示对象用: var len:int = waterLayer.numChildren; for(var i:int=0; i <len;i++) { var crtItem:DisplayObject = waterLayer.getChildAt(i); }例二var i:int; for(i = 0; i < this.numChildren; i++) { var child:DisplayObject = this.getChildAt(i); if(child is BigLetter)... 阅读全文