2004/09/03 | 我的组件
类别(Flash) | 评论(0) | 阅读(194) | 发表于 12:56
#initclip
function starclass() {
}
starclass.prototype = new MovieClip();
starclass.prototype.onEnterFrame = function() {
    cscale = this.scale;
    for (i=0; i<mytit; i++) {
        this["my"+i].onRollOver = function() {
            myscale = cscale;
            //trace(myscale)
            num = this._name.substr(2, 1);
        };
        this["my"+i].onRollOut = function() {
            myscale = 100;
            num = this._name.substr(2, 1);
        };
        this["my"+num]._xscale += (myscale-this["my"+num]._xscale)/speed;
        this["my"+num]._yscale += (myscale-this["my"+num]._yscale)/speed;
    }
};
starclass.prototype.onLoad = function() {
    mytit = this.tit;
    myscale = this.scale;
    speed = this.speed;
    for (i=0; i<mytit; i++) {
        this.createEmptyMovieClip("my"+i, i);
        with (this["my"+i]) {
            beginFill(0x0000FF, 50);
            lineStyle(1, 0xff0000, 100);
            moveTo(20, 20);
            lineTo(-20, 20);
            lineTo(-20, -20);
            lineTo(20, -20);
            lineTo(20, 20);
            endFill();
        }
        this["my"+i]._x = i*80;
    }
};
Object.registerClass("star", starclass);
#endinitclip


Flash 动画


Flash 动画
0

评论Comments

日志分类
首页[185]
Flash[123]
ColdFusion[2]
Flex[2]
FlashMedia[3]
RIA[4]
Other[43]
Python[0]
Design[8]