Combined Code
frame 1 {
function doSomething() {}
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem('Right-Click Menu Disabled', doSomething);
MENU.customItems.push(Functioned);
_root.menu = MENU;
}
frame 1 {
loadedbytes = getBytesLoaded();
totalbytes = getBytesTotal();
percentbytes = int(loadedbytes / (totalbytes / 100));
loader.gotoAndStop(percentbytes);
}
movieClip 7 {
frame 1 {
stop();
}
}
frame 2 {
if (loadedbytes == totalbytes) {
3;
} else {
gotoAndPlay(1);
}
}
frame 3 {
stop();
}
button 12 {
on (press) {
gotoAndPlay(4);
}
}
button 14 {
on (press) {
gotoAndPlay(254);
}
}
movieClip 19 {
}
movieClip 21 {
}
frame 78 {
stop();
}
movieClip 25 {
}
movieClip 26 {
}
movieClip 27 {
frame 60 {
stop();
}
}
button 29 {
on (press) {
nextFrame();
}
}
frame 253 {
stop();
}
button 383 {
on (press) {
gotoAndPlay(254);
}
}
button 386 {
on (press) {
gotoAndPlay(4);
}
}
frame 254 {
stop();
}
button 393 {
on (press) {
nextFrame();
}
}
movieClip 396 {
frame 1 {
stop();
}
}
instance of movieClip 396 {
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
nextFrame();
}
if (Key.isDown(37)) {
prevFrame();
}
if (Key.isDown(38)) {
_xscale = _xscale + 5;
_yscale = _yscale + 5;
}
if (Key.isDown(40)) {
_xscale = _xscale - 5;
_yscale = _yscale - 5;
}
}
onClipEvent (press) {
startDrag('', false);
}
onClipEvent (release) {
stopDrag();
}
}