[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 (152 B)
var fc = 1;
var fp = 1;
_root.ifram1._visible = true;
_root.ifram2._visible = false;
_root.ifram3._visible = false;
_root.ifram4._visible = false;
Frame 2 (131 B)
while (fc == fp) {
fc = random(4) + 1;
}
_root["ifram" + fc]._visible = true;
_root["ifram" + fp]._visible = false;
fp = fc;
Frame 3 (149 B)
while (fc == fp) {
fc = random(4) + 1;
}
_root["ifram" + fc]._visible = true;
_root["ifram" + fp]._visible = false;
fp = fc;
gotoAndPlay (2);