VIEWED

  1. 你没有浏览过任何文章或者你没有开启cookies。

Posts Tagged ‘actionscript’

自编as3影片剪辑倒放类

先看效果:

实现原理:

1.编写mc加强类

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 package Functions{ import flash.display.MovieClip; import flash.events.MouseEvent; import flash.events.Event; public class MovieClip_adv extends MovieClip{ // 定义倒放最终帧 var endFrame:Number=1; public function MovieClip_adv(){ } //任意位置到最后 public function toEnd():void{ this.upend(totalFrames); } //任意位置到开始 public function toStart():void{ this.upend(1); } //对单一过程由当前位置倒放或者顺放到任意目标位置 public function upend(endFrame:Number):void{ this.endFrame=endFrame; this.addEventListener(Event.ENTER_FRAME,back); } function back(event:Event)...
......[ More Detail ]

各类电脑文档手册

HTML手册: 文档下载:http://www.pconline.com.cn/pcedu/sj/famous/fif/0611/acc/fifdoc_html_flash.zip 在线文档:http://www.phpx.com/man/dhtmlcn/ JAVASCRIPT中文手册: 文档下载:http://www.94share.com/upload/javascript.chm 在线文档:http://www.itlearner.com/code/js_ref/contents.htm CSS2.0中文手册: 文档下载:http://www.w3cn.org/resource/down/2004/css20.chm 在线文档:http://www.chinaue.com/tool/css/ XML中文手册 文档下载:http://www.bookdown.com.cn/Download.asp?ID=1103 (迅雷下载) 在线文档:暂无 HTML DOM中文手册 文档下载:http://www.cainiao8.com/web/html_dom/htmldom.rar 在线文档:暂无 PHP 中文手册 文档下载:http://www.ugia.cn/manuals/other/php_manual_zh_20061105_.rar 在线文档:http://phpeye.com/phpmanual/index.html ACTIONSCRIPT 中文手册 文档下载:http://livedocs.adobe.com/flash/9.0_tw/ma...

......[ More Detail ]