Great Game...
I discovered some series I've never heard of in this...
and the info was good, too. But The angry faic has no frame for it.
So... I don't know what's going on there...
as for people trying to figure out the script, I looked at the dimensions of the movie clip that makes the whole poster, and deceiphered the (exact) script for the movie clip, which is, of course, AS2, so there's alot of math. the script:
onClipEvent (enterFrame) {
if (_root._ymouse > 250) {
speed = -(_root._ymouse - 250) / 22;
if (_y + _height / 2 + speed < 500) {
speed = 500 - (_y + _height / 2);
}
}
else {
speed = (250 - _root._ymouse) / 22;
if (_y - _height / 2 + speed > 0) {
speed = -(_y - _height / 2);
}
}
setProperty("", _y, _y + speed);
}
Damn I'm good! So there you go...(this is directed mainly to "ugolegend94"s question "how the poster was scripted")