- + P A

- 常用的swf加密解密软件

      AC2.0 2007-4-3 16:3

解密:
Action Script Viewer 5
http://www.buraks.com/

硕思闪客精灵SWF Decompiler MX 3.3 Build 60720
http://www.sothink.com.cn/flashdecompiler/index.htm

Imperator FLA
http://www.genable.com/aso.html

加密
SWF Encrypt 3.0
http://www.amayeta.com/

ASO free
http://www.genable.com/aso.html

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- eval 的注意事项

      AC2.0 2007-1-12 11:59

如果as这样写是错误的:eval("a"+i).eval("b"+j).gotoAndStop(1);

应该这样写:eval("a"+i+"b"+j).gotoAndStop(1).

...
标签集:TAGS:eval,ac,actionScript2.0
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 把数组随机排列的简单实现方法

      AC2.0 2007-1-12 11:59

RandomArray.as

class RandomArray {
 public static function randomSort(arr:Array, returnNum:Number):Array {
  var tempArr:Array = new Array(returnNum);
  var returnArr:Array = new Array(returnNum);
  for (var i = 0; i<returnNum; i++) {
   var tempArrNum:Number = Math.f

...
标签集:TAGS:random,array,randomsort
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()