[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 (250 B)
var fractionComplete;
var targetLoad = 0.4;
fractionComplete = this._framesloaded / this._totalframes;
if (fractionComplete >= targetLoad) {
this.gotoAndStop(3);
} else {
progBarInstance._xscale = (fractionComplete / targetLoad) * 100;
}
Frame 2 (21 B)
this.gotoAndPlay(1);
Instance of Symbol 40 MovieClip in Frame 3 (67 B)
//component parameters
onClipEvent (initialize) {
width = 116.2;
}
Symbol 40 MovieClip Frame 1 (1.98 KiB) ●
_parent.stop();
faderbackground._width = width;
looping = false;
playing = false;
top = knob._y;
bottom = knob._y;
left = knob._x;
faderWidth = faderbackground._width - knob._width;
segmentWidth = faderWidth / _parent._totalframes;
right = ((knob._x + faderWidth) - segmentWidth) + 1;
faderbackground._width = faderbackground._width - (segmentWidth - 1);
with (backing) {
_width = (Math.abs(_x) + faderbackground._width) + ((_height - faderbackground._height) / 2);
shadow._width = _width;
}
playing = true;
_parent.play();
_parent.onEnterFrame = function () {
if ((_parent._currentframe == _parent._totalframes) && (!looping)) {
playing = false;
_parent.stop();
}
if (dragging) {
playing = false;
_parent.gotoAndStop(Math.ceil(knob._x / segmentWidth));
} else {
knob._x = (_parent._currentframe * segmentWidth) - segmentWidth;
}
playhilite._visible = playing;
loophilite._visible = looping;
};
loop.onRelease = function () {
loophilite._alpha = 100;
};
loop.onPress = function () {
looping = !looping;
loophilite._alpha = 0;
};
playButton.onPress = function () {
playhilite._alpha = 0;
};
playButton.onRelease = function () {
playhilite._alpha = 100;
playing = true;
_parent.play();
};
playButton.onDragOut = function () {
playhilite._alpha = 100;
};
playButton.onDragOver = function () {
playhilite._alpha = 0;
};
stopButton.onRelease = function () {
playing = false;
_parent.stop();
};
rewind.onRelease = function () {
playing = false;
_parent.gotoAndStop(3);
};
stepBack.onRelease = function () {
playing = false;
_parent.prevFrame();
};
stepForward.onRelease = function () {
playing = false;
_parent.nextFrame();
};
goToEnd.onRelease = function () {
playing = false;
_parent.gotoAndStop(_parent._totalframes);
};
knob.onPress = function () {
_parent.stop();
startDrag (knob, false, left, top, right, bottom);
dragging = true;
};
knob.onRelease = function () {
stopDrag();
dragging = false;
};