Сам скрипт:
Код
------------------------------------------------------------
mc1.onRollOver = function() {
this.onEnterFrame = function() {
this.nextFrame();
if (this._currentframe >= this._totalframes) {
delete this.onEnterFrame;
}
}
}
mc1.onRollOut = function() {
this.onEnterFrame = function() {
this.prevFrame();
if (this._currentframe == 1) {
delete this.onEnterFrame;
}
}
}
mc1.gotoAndStop(1);
mc1.onPress = function() {
getURL("http://ucfp.org","_blank");
}
------------------------------------------------------------
mc1.onRollOver = function() {
this.onEnterFrame = function() {
this.nextFrame();
if (this._currentframe >= this._totalframes) {
delete this.onEnterFrame;
}
}
}
mc1.onRollOut = function() {
this.onEnterFrame = function() {
this.prevFrame();
if (this._currentframe == 1) {
delete this.onEnterFrame;
}
}
}
mc1.gotoAndStop(1);
mc1.onPress = function() {
getURL("http://ucfp.org","_blank");
}
------------------------------------------------------------