Combined Code
frame 1 {
randomize();
var xp = random(10) + 10;
_root.pill._y = random(400);
}
movieClip 13 {
}
movieClip 15 {
}
instance pill of movieClip 15 {
onClipEvent (enterFrame) {
if (this._x < 0) {
_root.xp = random(10) + 10;
this._x = 408;
this._y = random(400);
}
this._x -= _root.xp;
this._rotation -= _root.xp;
}
}
// unknown tag 88 length 138
movieClip 20 {
}
movieClip 21 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
instance of movieClip 21 {
onClipEvent (rollOver) {
this.gotoAndStop('2');
}
onClipEvent (rollOut) {
this.gotoAndStop('1');
}
}