Frame 1
curRotSp = 6;
_root.onEnterFrame = function () {
};
cur1_mc.onEnterFrame = function () {
this._rotation = this._rotation + curRotSp;
this._x = this._x + (((800 - desfaceX) - this._x) / 4);
this._y = this._y + (((400 - desfaceY) - this._y) / 4);
this._x = this._x % 1500;
this._y = this._y % 1500;
};
cur2_mc.onEnterFrame = function () {
this._rotation = this._rotation + curRotSp;
this._x = this._x + (((800 - desfaceX) - this._x) / 8);
this._y = this._y + (((400 - desfaceY) - this._y) / 8);
this._x = this._x % 1500;
this._y = this._y % 1500;
};
cur3_mc.onEnterFrame = function () {
this._rotation = this._rotation + curRotSp;
this._x = this._x + (((800 - desfaceX) - this._x) / 12);
this._y = this._y + (((400 - desfaceY) - this._y) / 12);
this._x = this._x % 1500;
this._y = this._y % 1500;
};
cur4_mc.onEnterFrame = function () {
this._rotation = this._rotation + curRotSp;
this._x = this._x + (((800 - desfaceX) - this._x) / 16);
this._y = this._y + (((400 - desfaceY) - this._y) / 16);
this._x = this._x % 1500;
this._y = this._y % 1500;
};
stars1_mc.onEnterFrame = function () {
this._x = this._x + (((800 - desfaceX) - this._x) / 256);
this._y = this._y + (((400 - desfaceY) - this._y) / 512);
this._x = this._x % 1500;
this._y = this._y % 1500;
};
stars2_mc.onEnterFrame = function () {
this._x = this._x + (((800 - desfaceX) - this._x) / 128);
this._y = this._y + (((400 - desfaceY) - this._y) / 256);
this._x = this._x % 1500;
this._y = this._y % 1500;
};