[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 1 (183 B)
var bytes = _root.getBytesTotal();
var bytes_loaded = _root.getBytesLoaded();
percent = int((bytes_loaded / bytes) * 100) + "%";
if (bytes_loaded == bytes) {
gotoAndPlay (3);
}
Frame 2 (17 B)
gotoAndPlay (1);
Instance of Symbol 13 MovieClip in Frame 3 (220 B)
onClipEvent (enterFrame) {
_root.grass._x = _root.grass._x - 1;
_root.city._x = _root.city._x - 0.4;
if (_root.grass._x <= -650) {
_root.grass._x = 0;
}
if (_root.city._x <= -650) {
_root.city._x = 0;
}
}