Frame 1
myLoaded = Math.round(getBytesLoaded());
myTotal = Math.round(getBytesTotal());
if (myLoaded >= myTotal) {
gotoAndPlay (2);
} else {
gotoAndPlay (1);
}
Frame 2
stop();
Symbol 11 Button
on (release) {
_root.bg_mc.gotoAndStop(1);
}
Symbol 15 Button
on (release) {
_root.bg_mc.gotoAndStop(2);
}
Symbol 16 MovieClip Frame 1
stop();
Symbol 18 MovieClip Frame 1
stop();
Symbol 22 MovieClip Frame 2
myPercent = _root.getBytesLoaded() / _root.getBytesTotal();
myBar._width = myPercent * 150;
gotoAndPlay (1);
Symbol 46 MovieClip Frame 1
gotoAndPlay(_root.main_mc.memes[_root.main_mc.choice][1]);
stop();
Symbol 52 Button
on (release) {
gotoAndStop (1);
}
Symbol 53 MovieClip Frame 1
function buttons() {
this.btn0.text_txt.text = memes[0][1];
this.btn1.text_txt.text = memes[1][1];
this.btn2.text_txt.text = memes[2][1];
this.btn3.text_txt.text = memes[3][1];
this.btn4.text_txt.text = memes[4][1];
this.btn5.text_txt.text = memes[5][1];
this.btn6.text_txt.text = memes[6][1];
this.btn7.text_txt.text = memes[7][1];
this.btn8.text_txt.text = memes[8][1];
this.btn9.text_txt.text = memes[9][1];
}
memes = [];
memes.push([]);
memes[0][0] = 1;
memes[0][1] = "Cockmongler";
memes[0][2] = "Human";
memes[0][3] = "I'll mongle your cocks";
memes.push([]);
memes[1][0] = 2;
memes[1][1] = "Happy Negro";
memes[1][2] = "Nigger";
memes[1][3] = "Watermelons???";
memes.push([]);
memes[2][0] = 2;
memes[2][1] = "SHOOP DA WHOOP";
memes[2][2] = "Cell";
memes[2][3] = "IMMA CHARGIN' MAH LAZER";
memes.push([]);
memes[3][0] = 2;
memes[3][1] = "Mordor";
memes[3][2] = "Impossibility";
memes[3][3] = "One does not simply walk/rock/hack/wok into mordor";
memes.push([]);
memes[4][0] = 3;
memes[4][1] = "Longcat";
memes[4][2] = "God";
memes[4][3] = "All hail longcat";
memes.push([]);
memes[5][0] = 2;
memes[5][1] = "O RLY?";
memes[5][2] = "Owl";
memes[5][3] = "O RLY?, Ya RLY, NO WAI";
memes.push([]);
memes[6][0] = 2;
memes[6][1] = "Bitches";
memes[6][2] = "Gangztah";
memes[6][3] = "Bitches don't know 'bout my dick";
memes.push([]);
memes[7][0] = 2;
memes[7][1] = "a man?";
memes[7][2] = "Unknown";
memes[7][3] = "What is a man? A miserable little pile of secrets";
memes.push([]);
memes[8][0] = 2;
memes[8][1] = "OVER 9000";
memes[8][2] = "Sayiyan";
memes[8][3] = "It's OVER NINETOUSAND";
memes.push([]);
memes[9][0] = 2;
memes[9][1] = "DESU";
memes[9][2] = "Godess";
memes[9][3] = "DESUDESUDESUDESUDESU";
buttons();
stop();
Instance of Symbol 5 MovieClip [buttonSymbol] "btn0" in Symbol 53 MovieClip Frame 1
on (release) {
_root.main_mc.choice = 0;
_root.main_mc.gotoAndStop("Meme");
}
Instance of Symbol 5 MovieClip [buttonSymbol] "btn1" in Symbol 53 MovieClip Frame 1
on (release) {
_root.main_mc.choice = 1;
_root.main_mc.gotoAndStop("Meme");
}
Instance of Symbol 5 MovieClip [buttonSymbol] "btn2" in Symbol 53 MovieClip Frame 1
on (release) {
_root.main_mc.choice = 2;
_root.main_mc.gotoAndStop("Meme");
}
Instance of Symbol 5 MovieClip [buttonSymbol] "btn3" in Symbol 53 MovieClip Frame 1
on (release) {
_root.main_mc.choice = 3;
_root.main_mc.gotoAndStop("Meme");
}
Instance of Symbol 5 MovieClip [buttonSymbol] "btn4" in Symbol 53 MovieClip Frame 1
on (release) {
_root.main_mc.choice = 4;
_root.main_mc.gotoAndStop("Meme");
}
Instance of Symbol 5 MovieClip [buttonSymbol] "btn5" in Symbol 53 MovieClip Frame 1
on (release) {
_root.main_mc.choice = 5;
_root.main_mc.gotoAndStop("Meme");
}
Instance of Symbol 5 MovieClip [buttonSymbol] "btn6" in Symbol 53 MovieClip Frame 1
on (release) {
_root.main_mc.choice = 6;
_root.main_mc.gotoAndStop("Meme");
}
Instance of Symbol 5 MovieClip [buttonSymbol] "btn7" in Symbol 53 MovieClip Frame 1
on (release) {
_root.main_mc.choice = 7;
_root.main_mc.gotoAndStop("Meme");
}
Instance of Symbol 5 MovieClip [buttonSymbol] "btn8" in Symbol 53 MovieClip Frame 1
on (release) {
_root.main_mc.choice = 8;
_root.main_mc.gotoAndStop("Meme");
}
Instance of Symbol 5 MovieClip [buttonSymbol] "btn9" in Symbol 53 MovieClip Frame 1
on (release) {
_root.main_mc.choice = 9;
_root.main_mc.gotoAndStop("Meme");
}
Symbol 53 MovieClip Frame 10
function MakeForm(i) {
memeName = "Name: " + memes[i][1];
type = "Type: " + memes[i][2];
catchphrase = "Meme: " + memes[i][3];
}
MakeForm(choice);
stop();