Combined Code
movieClip 5 loadingBar {
}
movieClip 54 {
}
instance loadingBar of movieClip 5 loadingBar {
onClipEvent (load) {
_root.loadingBar._xscale = 100;
percent = 0;
}
onClipEvent (enterFrame) {
percent = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
_root.loadingBar._xscale = 100 - percent;
if (percent >= 100) {
_root.play();
} else {
_root.stop();
}
}
}
// unknown tag 88 length 106
frame 2 {
stop();
var Howdy = new Sound();
Howdy.attachSound('howdy');
howdybutton.onRelease = function () {
Howdy.start();
};
}
movieClip 61 {
}