Swfdec still is development software, but has also followed a rigid no-crashes-allowed policy. I b

源代码在线查看: function-scope.as

软件大小: 1523 K
上传用户: haowoainime
关键词: no-crashes-allowed development followed software
下载地址: 免注册下载 普通下载 VIP

相关代码

				// makeswf -v 7 -s 200x150 -r 1 -o function-scope.swf function-scope.as								trace ("Check the function scope chain works");				Foo = function () {				  var bla = "inner scope";				  this.bla = "this";				  this.func = function () {				    trace (bla);				    var bla = "innermost scope";				    this.func = function () {				      trace (bla);				    };				  };				};				bla = "outermost scope";				x = new Foo ();				x.func ();				x.func ();							

相关资源