[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.Frame 2 (271 B)
myLoaded = Math.round(getBytesLoaded());
myTotal = Math.round(getBytesTotal());
myPercent = myLoaded / myTotal;
myBar._width = myPercent * 150;
myText = Math.round(myPercent * 100) + "%";
if (myLoaded == myTotal) {
gotoAndStop (3);
} else {
gotoAndPlay (1);
}
Frame 4 (8 B)
stop();
Symbol 10 Button (62 B)
on (release) {
getURL ("http://www.walfas.org/", "_blank");
}
Symbol 36 Button (25 B)
on (release) {
play();
}
Symbol 39 MovieClip Frame 1 (126 B)
myColor = Math.round(Math.random() * 16777215);
myColoredObject = new Color(_root.square);
myColoredObject.setRGB(myColor);