[Tools][Expand/Collapse All]Note that automatic extraction of ActionScript 3 is still pretty much unsupported by swfchan. AS1/AS2 works okay most of the time.Instance of Symbol 3 MovieClip in Frame 1 (928 B)
onClipEvent (mouseMove) {
d = "pooo";
x = this._xmouse;
y = this._ymouse * -1;
angle = Math.atan(y / x) / (Math.PI/180);
if (x < 0) {
angle = angle + 180;
}
if ((x >= 0) && (y < 0)) {
angle = angle + 360;
}
_root.angletext = angle;
_root.arrow._rotation = angle * -1;
if ((angle < 270) && (angle > 230)) {
_root.c = "yes";
}
if ((angle < 180) && (angle > 140)) {
_root.b = "yes";
}
if ((angle < 90) && (angle > 50)) {
_root.a = "yes";
}
if (angle > 340) {
_root.d = "yes";
}
if ((_root.a == "yes") && (((_root.b == "yes") & (_root.c == "yes")) & (_root.d == "yes"))) {
_root.wibblewobble = int(_root.wibblewobble) + 1;
_root.a = "no";
_root.b = "no";
_root.c = "no";
_root.d = "no";
kirupaSound = new Sound(this);
kirupaSound.attachSound("clickSound");
kirupaSound.start(0, 1);
}
updateAfterEvent();
}
Symbol 22 Button (88 B)
on (release) {
getURL ("http://mmm.yayforthewebsite.com/yftw/squirrel/", "", "POST");
}