Frame 1
if (Sounds != 1) {
Sounds = 1;
var Orion = new Sound(this);
Orion.attachSound("ORiON");
Orion.start(0, 0);
}
Orion.onSoundComplete = function () {
Orion.start();
};
if (Actions != 1) {
Actions = 1;
var Depth = 0;
var Star;
var DefaultStar = new Object();
}
DefaultStar._x = 320;
DefaultStar._y = 240;
if (Depth >= 128) {
Depth = 0;
}
attachMovie("Star", "", Depth, DefaultStar);
Depth++;
Symbol 3 MovieClip [Star] Frame 1
if (this.run != 1) {
this.run = 1;
this.rot = random(360);
this._vx = (0.95 * Math.random()) * ((Math.cos(this.rot) / Math.PI) * 180);
this._vy = (0.95 * Math.random()) * ((Math.sin(this.rot) / Math.PI) * 180);
}
trace(String(this._width / this._height));
this._vx = this._vx + ((0.006 * (this._width * 1.2)) * ((Math.cos(this.rot) / Math.PI) * 180));
this._vy = this._vy + ((0.006 * (this._width * 1.2)) * ((Math.sin(this.rot) / Math.PI) * 180));
this._width = this._width + 0.8;
this._height = this._height + 0.8;
this._x = this._x + this._vx;
this._y = this._y + this._vy;
if ((this.w_idth > 64) || (this._height > 64)) {
this.removeMovieClip();
}