Flash 8 的柔化函?
类别: Flash教程
新的Flash 8增加了很多不错的功能哦,刚才到Macromedia网站看了一下,从中发现了一个柔化图片的效果函数 smoothImageLoadComplete(),经过多次测试终于知道怎麽使用了 ^_^ 在这里提供给大家
在这里提供一个刚刚测试的结果
在这里提供一个刚刚测试的结果
MovieClip.prototype.smoothImageLoad = function(img) {
var listener = new MovieClipLoader();
listener.onLoadComplete = function(mc:MovieClip) {
mc.onEnterFrame = function() {
bitmap = new flash.display.BitmapData(this._width, this._height);
bitmap.draw(this);
this.attachBitmap(bitmap, 1, "auto", true);
this.smoothImageLoadComplete();
}
};
listener.loadClip(img, this);
};
this.createEmptyMovieClip("mc", 0);
mc.smoothImageLoad("doggy.jpg");
mc._xscale = mc._yscale=400; //把?D片放大4倍
var listener = new MovieClipLoader();
listener.onLoadComplete = function(mc:MovieClip) {
mc.onEnterFrame = function() {
bitmap = new flash.display.BitmapData(this._width, this._height);
bitmap.draw(this);
this.attachBitmap(bitmap, 1, "auto", true);
this.smoothImageLoadComplete();
}
};
listener.loadClip(img, this);
};
this.createEmptyMovieClip("mc", 0);
mc.smoothImageLoad("doggy.jpg");
mc._xscale = mc._yscale=400; //把?D片放大4倍
- 上一篇: 一个简单易用的进度条
- 下一篇: Flash动画在网页中播放控制器制作祥解
-= 资 源 教 程 =-
文 章 搜 索