[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 (572 B)
tframes = _totalframes;
floaded = _framesloaded;
FullWidth = 363;
percent = floaded / tframes;
adjustedPercent = percent / 0.7;
currentWidth = adjustedPercent * FullWidth;
if (FullWidth < currentWidth) {
currentWidth = FullWidth;
}
alphaVal = 150 - counter;
if (dir == 0) {
counter = counter + 2;
}
if (dir == 1) {
counter = counter - 2;
}
if (148 < counter) {
dir = 1;
}
if (counter < 2) {
dir = 0;
}
setProperty("Progress", _width , currentWidth);
setProperty("Loading", _alpha , alphaVal);
setProperty("Progress", _y , "0");
Frame 2 (100 B)
condLoad = 0;
if (percent >= 0.7) {
condLoad = 1;
}
if (!condLoad) {
gotoAndPlay (1);
}
Frame 477 (17 B)
gotoAndPlay (3);
Symbol 7 Button (23 B)
on (press) {
play();
}
Symbol 12 Button (23 B)
on (press) {
stop();
}
Symbol 17 Button (41 B)
on (press) {
stop();
gotoAndStop (3);
}