Combined Code
// unknown tag 88 length 117
movieClip 3 cargador {
}
frame 1 {
stop();
total = _root.getBytesTotal();
_root.onEnterFrame = function () {
charge = _root.getBytesLoaded();
part = Math.ceil((charge / total) * 100);
affichage = part + ' %';
barre._xscale = part;
if (part == 100) {
delete _root.onEnterFrame;
gotoAndStop(2);
}
};
}
movieClip 5 {
}
// unknown tag 88 length 67
frame 2 {
stop();
stage.displayState = StageDisplayState.FULL_SCREEN;
stage.scaleMode = StageScaleMode.NO_SCALE;
}
button 14 {
on (release, keyPress '<Left>') {
_parent.updateFrame(-1);
}
on (keyPress '<Up>') {
_root.gotoAndStop(1);
_parent.updateFrame();
}
}
movieClip 16 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
button 18 {
on (release, keyPress '<Right>') {
_parent.updateFrame(1);
}
on (keyPress '<Down>') {
_root.gotoAndStop(_root._totalFrames);
_parent.updateFrame();
}
}
movieClip 20 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 21 {
frame 1 {
function updateFrame(inc) {
newFrame = _root._currentFrame + inc;
_root.gotoAndStop(newFrame);
updateStatus();
if (_root._currentFrame == 1) {
prevBtn.gotoAndStop(2);
} else {
prevBtn.gotoAndStop(1);
}
if (_root._currentFrame == _root._totalFrames) {
nextBtn.gotoAndStop(2);
} else {
nextBtn.gotoAndStop(1);
}
}
function updateStatus() {
_root.statusField = _root._currentFrame + ' of ' + _root._totalFrames;
}
function autoplayInit() {
startTime = getTimer();
hideControls();
updateStatus();
}
function autoplay() {
if (autoplayStatus != 0) {
curTime = getTimer();
elapsedTime = curTime - startTime;
indicatorFrame = int(4 / (delay / (elapsedTime / 1000)));
indicator.gotoAndStop(indicatorFrame + 1);
if (elapsedTime >= delay * 1000) {
if (_root._currentframe == _root._totalframes) {
_root.gotoAndStop(1);
} else {
_root.nextFrame();
}
autoplayInit();
}
}
}
function hideControls() {
nextBtn.gotoAndStop(2);
prevBtn.gotoAndStop(2);
}
updateFrame();
autoplayStatus = 0;
}
}
instance of movieClip 21 {
onClipEvent (construct) {
delay = 4;
}
}
// unknown tag 88 length 62