Combined Code
movieClip 3 {
}
// unknown tag 88 length 73
button 10 {
on (release) {
getURL('http://www.funny-games.biz/adult.html', '_blank');
}
}
button 18 {
on (release) {
_root.play();
}
}
movieClip 19 {
frame 1 {
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop('loaded');
}
}
frame 2 {
gotoAndPlay(1);
}
}
frame 2 {
stop();
more_btn.onRelease = function () {
getURL('http://www.funny-games.biz/adult.html', '_blank');
};
start_btn.onRelease = function () {
gotoAndPlay(3);
};
}
frame 3 {
play_btn.onRelease = function () {
play();
};
pause_btn.onRelease = function () {
stop();
};
forward_btn.onPress = function () {
_root.createEmptyMovieClip('controller_mc', 1);
controller_mc.onEnterFrame = function () {
_root.gotoAndStop(_root._currentframe + 7);
if (_root._currentframe + 7 > _root._totalframes) {
_root.gotoAndStop(_root._totalframes);
}
};
};
forward_btn.onRelease = function () {
controller_mc.removeMovieClip();
};
forward_btn.onReleaseOutside = function () {
controller_mc.removeMovieClip();
};
rewind_btn.onPress = function () {
_root.createEmptyMovieClip('controller_mc', 1);
controller_mc.onEnterFrame = function () {
_root.gotoAndStop(_root._currentframe - 10);
if (_root._currentframe - 10 < 1) {
_root.gotoAndStop(3);
}
};
};
rewind_btn.onRelease = function () {
controller_mc.removeMovieClip();
};
rewind_btn.onReleaseOutside = function () {
controller_mc.removeMovieClip();
};
more_btn.onRelease = function () {
getURL('http://www.funny-games.biz/adult.html', '_blank');
};
}
movieClip 52 {
}
movieClip 56 {
}
frame 6217 {
stop();
more_btn.onRelease = function () {
getURL('http://www.funny-games.biz/adult.html', '_blank');
};
again_btn.onRelease = function () {
gotoAndStop(2);
};
}