Combined Code
frame 1 {
stop();
var empty = new ContextMenu();
empty.hideBuiltInItems();
_root.menu = empty;
onEnterFrame = function () {
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded / bytes_total;
textBox.text = Math.round(getPercent * 100) + '%';
this.loadBar._width = getPercent * 100 * 3;
if (_root.getBytesLoaded() == _root.getBytesTotal()) {
delete onEnterFrame;
play();
}
};
}
movieClip 3 {
}
movieClip 5 {
}
// unknown tag 88 length 122
frame 2 {
function emptyFunction() {}
function openVisualLink() {
getURL('https://store.steampowered.com/app/2504480/Indigo_Park_Chapter_1/', '_blank');
}
function openMusicLink() {
getURL('https://www.youtube.com/watch?v=rR375BlXe3I', '_blank');
}
stop();
var credits = new ContextMenu();
credits.hideBuiltInItems();
var link1 = new ContextMenuItem('Music: Rambley Express (Rambleys Version)', openMusicLink);
var link2 = new ContextMenuItem('Visuals: Indigo Park', openVisualLink);
var menu1 = new ContextMenuItem('Rambley Express.swf', emptyFunction);
var menu2 = new ContextMenuItem('29.05.2024 | MrFreeware', emptyFunction);
var menu3 = new ContextMenuItem('Ew Lloyd...', emptyFunction);
menu1.separatorBefore = true;
credits.customItems.push(link1);
credits.customItems.push(link2);
credits.customItems.push(menu1);
credits.customItems.push(menu2);
credits.customItems.push(menu3);
_root.menu = credits;
}
movieClip 42 {
}