ciao a tutti,
per aggiungere alcune funzioni personalizzate ai miei movieclip uso
MovieClip.prototype.RollLink = function() {
this.stop();
this.onRollOver = function() {
if (!this.premuto) {
this.onEnterFrame = function() {
this._currentframe<10 ? this.nextFrame() : delete this.onEnterFrame;
};
}
};
....
txt.rollLink();
ma se all'interno di txt ho altri mc ai quali voglio far eseguire altre funzioni, come posso fare?
grazie

Rispondi quotando