软件大小: | 1809 K | ||
上传用户: | thor | ||
关键词: | Macromedia animations rendering decoding | ||
下载地址: | 免注册下载 普通下载 |
相关代码 |
|
// makeswf -v 7 -s 200x150 -r 1 -o delete-object.swf delete-object.as trace ("Check that deleting from an object does not delete from the prototype"); o = { x: 1 }; o.__proto__ = { x: 2 }; trace (o.x); delete o.x; trace (o.x); delete o.x; trace (o.x); loadMovie ("FSCommand:quit", "");