STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228089
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/56694179?noj=FRM56694179-4DC" width="1" height="1"></div>

fMaid.swf

This is the info page for
Flash #218755

(Click the ID number above for more basic data on this flash file.)


Text
<p align="left"></p>

<p align="center"></p>

<p align="center"></p>

Cum

Cum

<p align="center"></p>

f Maid

GAME STORY & PROGRAMMING
Jason M. Borja

v1.0

Music and Arts
Various Websites

THE END

THE END

"Thank you for playing and I hope you enjoy this
simple game."

INSTRUCTION

To start the game click the "New Game" button, it will start from the very beginning
of the story. If you wish to go straight on action click the "Continue" button.

To continue with the dialogue, click the "Texbox Dialogue", some choices will
pop up later so just select the option you want.

THIS IS NOT SUITABLE FOR MINORS.
IF YOU ARE NOT 18 ABOVE DO NOT
PLAY THIS GAME

ActionScript [AS1/AS2]

Frame 1
stop(); onlineSWITCHER = true; percentage = 0; _root.onEnterFrame = function () { if (onlineSWITCHER == true) { percentage = Math.round((this.getBytesLoaded() / this.getBytesTotal()) * 100); _root.perce = percentage + "%"; if (percentage == 100) { delete _root.onEnterFrame; _root.gotoAndStop(3); } } if (onlineSWITCHER == false) { percentage++; _root.perce = percentage + "%"; if (percentage == 100) { delete _root.onEnterFrame; _root.gotoAndStop(3); } } };
Frame 3
function optionMENU() { this.attachMovie("optionOBJ", "option1", 100); _root.option1.choicebox = "NEW GAME"; _root.option1._x = 400; _root.option1._y = 198.05; this.attachMovie("optionOBJ", "option2", 200); _root.option2.choicebox = "CONTINUE"; _root.option2._x = 400; _root.option2._y = 278.65; this.attachMovie("optionOBJ", "option3", 300); _root.option3.choicebox = "INSTRUCTION"; _root.option3._x = 400; _root.option3._y = 359.25; this.attachMovie("optionOBJ", "option4", 400); _root.option4.choicebox = "CREDITS"; _root.option4._x = 400; _root.option4._y = 439.9; _root.option1.onPress = function () { deleteOBJ(); _root.gotoAndStop(7); }; _root.option2.onPress = function () { deleteOBJ(); _root.gotoAndStop(21); }; _root.option3.onPress = function () { deleteOBJ(); _root.gotoAndStop(37); }; _root.option4.onPress = function () { deleteOBJ(); _root.gotoAndStop(5); }; } function deleteOBJ() { removeMovieClip(option1); removeMovieClip(option2); removeMovieClip(option3); removeMovieClip(option4); } if (_global.soundENGINE == undefined) { stop(); var music1 = new Sound(); music1.attachSound("Introduction"); music1.start(5, 999); _global.soundENGINE = true; } optionMENU();
Frame 5
this.attachMovie("button", "backbox", 100); _root.backbox.choicebox = "BACK"; _root.backbox._x = 116.65; _root.backbox._y = 29.8; backbox.choicebox = "BACK"; backbox.onPress = function () { removeMovieClip(backbox); _root.gotoAndStop(3); };
Frame 7
stop(); stopAllSounds(); var music2 = new Sound(); music2.attachSound("Talking"); music2.start(0, 999); _global.soundENGINE = true; fram = 0; sec = 0; onEnterFrame = function () { if (fram < 30) { fram++; } if (fram == 30) { sec++; } if (sec == 35) { _root.gotoAndStop(8); } };
Frame 8
function optionMENU() { this.attachMovie("optionOBJ", "option3", 300); _root.option3.choicebox = "CONTINUE"; _root.option3._x = 408.5; _root.option3._y = 365.05; _root.option1.onPress = function () { _root.gotoAndStop(8); deleteOBJ(); }; _root.option2.onPress = function () { deleteOBJ(); _root.gotoAndStop(3); }; _root.option3.onPress = function () { _root.gotoAndStop(12); deleteOBJ(); }; } function deleteOBJ() { removeMovieClip(option1); removeMovieClip(option2); removeMovieClip(option3); } stop(); this.attachMovie("textbox_object", "textobject", 1); _root.textobject._x = 400; _root.textobject._y = 541.05; var storyPARTS = new Array(); var max = 17; storyPARTS[0] = "Rey: now that the class is finally over, time to have my time again..."; storyPARTS[1] = "Rey: hmmmmmmm...."; storyPARTS[2] = "(I'm pretty bored and I need some fun right now)"; storyPARTS[3] = "Rey: let me think...."; storyPARTS[4] = "(oh, I can have some fun with the maid service)"; storyPARTS[5] = "(all I have to do is to call her and ask her to visit me here)"; storyPARTS[6] = "Rey: hmmm...."; storyPARTS[7] = "Rey: hi"; storyPARTS[8] = "???: hello, maid at your service, how can I help you?"; storyPARTS[9] = "Rey: ummm... can I avail your service right now if you are not occupied..."; storyPARTS[10] = "???: yes sir, I am available at the moment"; storyPARTS[11] = "Rey: thank goodness, my home is kind of messed up, can you clean it up today?"; storyPARTS[12] = "???: yes sir, I'll be there in no time."; storyPARTS[13] = "Rey: okay my address is Emerald Street 231... what's your name by the way?"; storyPARTS[14] = "???: Shane sir.."; storyPARTS[15] = "Rey: alright.. I'll be waiting for you Shane..."; storyPARTS[16] = "(Oh yeah! this will be fun...)"; var myWORD; var myCOUNT; var i = 1; myWORD = storyPARTS[0]; myCOUNT = myWORD.split(""); sec = 0; textobject.textbox = ""; onEnterFrame = function () { if (sec < myCOUNT.length) { textobject.textbox = textobject.textbox + myCOUNT[sec++]; } if (i > max) { removeMovieClip(textobject); optionMENU(); i = 0; } }; _root.textobject.onPress = function () { textobject.textbox = ""; myWORD = storyPARTS[i++]; myCOUNT = myWORD.split(""); sec = 0; if (i == 4) { _root.gotoAndStop(9); } if (i == 6) { _root.gotoAndStop(10); } };
Frame 12
stop(); fram = 0; sec = 0; onEnterFrame = function () { if (fram < 30) { fram++; } if (fram == 30) { sec++; } if (sec == 35) { _root.gotoAndStop(13); } };
Frame 13
function optionMENU() { this.attachMovie("optionOBJ", "option3", 300); _root.option3.choicebox = "Continue"; _root.option3._x = 408.5; _root.option3._y = 365.05; _root.option1.onPress = function () { _root.gotoAndStop(6); deleteOBJ(); }; _root.option2.onPress = function () { deleteOBJ(); _root.gotoAndStop(3); }; _root.option3.onPress = function () { _root.gotoAndStop(16); deleteOBJ(); }; } function deleteOBJ() { removeMovieClip(option1); removeMovieClip(option2); removeMovieClip(option3); } stop(); this.attachMovie("textbox_object", "textobject", 1); _root.textobject._x = 400; _root.textobject._y = 541.05; var storyPARTS = new Array(); var max = 4; storyPARTS[0] = "Shane: Good morning sir, I am here to clean up your house..."; storyPARTS[1] = "Rey: yeah, please come in.."; storyPARTS[2] = "(alright, I need a good timing... this girl is hot)"; storyPARTS[3] = "(I strongly needed to score this one)"; var myWORD; var myCOUNT; var i = 1; myWORD = storyPARTS[0]; myCOUNT = myWORD.split(""); sec = 0; textobject.textbox = ""; onEnterFrame = function () { if (sec < myCOUNT.length) { textobject.textbox = textobject.textbox + myCOUNT[sec++]; } if (i > max) { removeMovieClip(textobject); optionMENU(); i = 0; } }; _root.textobject.onPress = function () { textobject.textbox = ""; myWORD = storyPARTS[i++]; myCOUNT = myWORD.split(""); sec = 0; if (i == 3) { _root.gotoAndStop(14); } };
Frame 16
stop(); fram = 0; sec = 0; onEnterFrame = function () { if (fram < 30) { fram++; } if (fram == 30) { sec++; } if (sec == 35) { _root.gotoAndStop(17); } };
Frame 17
function optionMENU() { this.attachMovie("optionOBJ", "option3", 300); _root.option3.choicebox = "Continue"; _root.option3._x = 408.5; _root.option3._y = 365.05; _root.option1.onPress = function () { _root.gotoAndStop(6); deleteOBJ(); }; _root.option2.onPress = function () { deleteOBJ(); _root.gotoAndStop(3); }; _root.option3.onPress = function () { _root.gotoAndStop(21); deleteOBJ(); }; } function deleteOBJ() { removeMovieClip(option1); removeMovieClip(option2); removeMovieClip(option3); } stop(); this.attachMovie("textbox_object", "textobject", 1); _root.textobject._x = 400; _root.textobject._y = 541.05; var storyPARTS = new Array(); var max = 14; storyPARTS[0] = "Rey: ummmmm Shane?"; storyPARTS[1] = "Shane: yes Sir?"; storyPARTS[2] = "Rey: do you have boyfriend?"; storyPARTS[3] = "Shane: ummm, no Sir..."; storyPARTS[4] = "Rey: are you looking for it?"; storyPARTS[5] = "Shane: not really Sir..."; storyPARTS[6] = "Rey: cause you know I'm kinda want to be that one..."; storyPARTS[7] = "Shane: sorry Sir but I cannot decide for that at the moment."; storyPARTS[8] = "Rey: really?"; storyPARTS[9] = "Shane: yes Sir..."; storyPARTS[10] = "Rey: what will you do if I kiss you right now?"; storyPARTS[11] = "Shane: ...."; storyPARTS[12] = "(too bad.... this girl is hot but she is boring)"; storyPARTS[13] = "Rey: anyway... I am just kidding..."; var myWORD; var myCOUNT; var i = 1; myWORD = storyPARTS[0]; myCOUNT = myWORD.split(""); sec = 0; textobject.textbox = ""; onEnterFrame = function () { if (sec < myCOUNT.length) { textobject.textbox = textobject.textbox + myCOUNT[sec++]; } if (i > max) { removeMovieClip(textobject); optionMENU(); i = 0; } }; _root.textobject.onPress = function () { textobject.textbox = ""; myWORD = storyPARTS[i++]; myCOUNT = myWORD.split(""); sec = 0; if (i == 7) { _root.gotoAndStop(18); } if (i == 13) { _root.gotoAndStop(19); } };
Frame 21
stop(); fram = 0; sec = 0; onEnterFrame = function () { if (fram < 30) { fram++; } if (fram == 30) { sec++; } if (sec == 35) { _root.gotoAndStop(22); } };
Frame 22
function optionMENU() { this.attachMovie("optionOBJ", "option1", 100); _root.option1.choicebox = "Missionary"; _root.option1._x = 408.5; _root.option1._y = 274.15; this.attachMovie("optionOBJ", "option2", 200); _root.option2.choicebox = "Dog Style"; _root.option2._x = 408.5; _root.option2._y = 319.05; this.attachMovie("optionOBJ", "option3", 300); _root.option3.choicebox = "Cow Girl"; _root.option3._x = 408.5; _root.option3._y = 365.05; _root.option1.onPress = function () { _root.gotoAndStop(30); deleteOBJ(); }; _root.option2.onPress = function () { _root.gotoAndStop(28); deleteOBJ(); }; _root.option3.onPress = function () { _root.gotoAndStop(26); deleteOBJ(); }; } function deleteOBJ() { removeMovieClip(option1); removeMovieClip(option2); removeMovieClip(option3); } stop(); stopAllSounds(); var music3 = new Sound(); music3.attachSound("Sex"); music3.start(0, 999); this.attachMovie("textbox_object", "textobject", 1); _root.textobject._x = 400; _root.textobject._y = 541.05; var storyPARTS = new Array(); var max = 8; storyPARTS[0] = "Shane: are you looking for pleasure Sir?"; storyPARTS[1] = "Rey: hmmm... yep why?"; storyPARTS[2] = "Shane: I can offer you that but..."; storyPARTS[3] = "Rey: oh... but what?"; storyPARTS[4] = "Shane: but you have to pay me twice with my maid service and for this.."; storyPARTS[5] = "Rey: anything else?"; storyPARTS[6] = "(I never expect that coming, she is not boring at all...)"; storyPARTS[7] = "- What fun do you want to do with her?"; var myWORD; var myCOUNT; var i = 1; myWORD = storyPARTS[0]; myCOUNT = myWORD.split(""); sec = 0; textobject.textbox = ""; onEnterFrame = function () { if (sec < myCOUNT.length) { textobject.textbox = textobject.textbox + myCOUNT[sec++]; } if (i > max) { removeMovieClip(textobject); optionMENU(); i = 0; } }; _root.textobject.onPress = function () { textobject.textbox = ""; myWORD = storyPARTS[i++]; myCOUNT = myWORD.split(""); sec = 0; if (i == 8) { _root.gotoAndStop(23); } };
Frame 26
this.attachMovie("penis", "penis99", 9900); _root.penis99._x = 724.15; _root.penis99._y = 52.55; function optionMENU() { this.attachMovie("optionOBJ", "option1", 100); _root.option1.choicebox = "Missionary"; _root.option1._x = 408.5; _root.option1._y = 274.15; this.attachMovie("optionOBJ", "option2", 200); _root.option2.choicebox = "Dog Style"; _root.option2._x = 408.5; _root.option2._y = 319.05; this.attachMovie("optionOBJ", "option3", 300); _root.option3.choicebox = "Cow Girl"; _root.option3._x = 408.5; _root.option3._y = 365.05; _root.option1.onPress = function () { _root.gotoAndStop(30); deleteOBJ(); }; _root.option2.onPress = function () { _root.gotoAndStop(28); deleteOBJ(); }; _root.option3.onPress = function () { _root.gotoAndStop(26); deleteOBJ(); }; } function deleteOBJ() { removeMovieClip(option1); removeMovieClip(option2); removeMovieClip(option3); } stop(); this.attachMovie("textbox_object", "textobject", 1); _root.textobject._x = 400; _root.textobject._y = 541.05; var storyPARTS = new Array(); var max = 3; storyPARTS[0] = "Shane: ..ahhhh... fuck me..."; storyPARTS[1] = "Shane: oh yess...."; storyPARTS[2] = "Shane: give it to me...."; var myWORD; var myCOUNT; var i = 1; myWORD = storyPARTS[0]; myCOUNT = myWORD.split(""); sec = 0; textobject.textbox = ""; onEnterFrame = function () { if (sec < myCOUNT.length) { textobject.textbox = textobject.textbox + myCOUNT[sec++]; } if (i > max) { removeMovieClip(textobject); i = 0; } }; _root.textobject.onPress = function () { textobject.textbox = ""; myWORD = storyPARTS[i++]; myCOUNT = myWORD.split(""); sec = 0; };
Instance of Symbol 63 MovieClip in Frame 26
on (release) { _root.gotoAndStop(28); }
Frame 28
function optionMENU() { this.attachMovie("optionOBJ", "option1", 100); _root.option1.choicebox = "Missionary"; _root.option1._x = 408.5; _root.option1._y = 274.15; this.attachMovie("optionOBJ", "option2", 200); _root.option2.choicebox = "Dog Style"; _root.option2._x = 408.5; _root.option2._y = 319.05; this.attachMovie("optionOBJ", "option3", 300); _root.option3.choicebox = "Cow Girl"; _root.option3._x = 408.5; _root.option3._y = 365.05; _root.option1.onPress = function () { _root.gotoAndStop(30); deleteOBJ(); }; _root.option2.onPress = function () { _root.gotoAndStop(28); deleteOBJ(); }; _root.option3.onPress = function () { _root.gotoAndStop(26); deleteOBJ(); }; } function deleteOBJ() { removeMovieClip(option1); removeMovieClip(option2); removeMovieClip(option3); } stop(); this.attachMovie("textbox_object", "textobject", 1); _root.textobject._x = 400; _root.textobject._y = 541.05; var storyPARTS = new Array(); var max = 5; storyPARTS[0] = "Shane: ... don't stop.. ah... please don't stop"; storyPARTS[1] = "Shane: ohhh... I't feel so good.."; storyPARTS[2] = "Shane: more... more...."; storyPARTS[3] = "Shane: Sir, your penis is so big.... ummmmm..."; storyPARTS[4] = "Shane: ahhhhh.....ahhhh"; var myWORD; var myCOUNT; var i = 1; myWORD = storyPARTS[0]; myCOUNT = myWORD.split(""); sec = 0; textobject.textbox = ""; onEnterFrame = function () { if (sec < myCOUNT.length) { textobject.textbox = textobject.textbox + myCOUNT[sec++]; } if (i > max) { removeMovieClip(textobject); i = 0; } }; _root.textobject.onPress = function () { textobject.textbox = ""; myWORD = storyPARTS[i++]; myCOUNT = myWORD.split(""); sec = 0; };
Instance of Symbol 72 MovieClip in Frame 28
on (release) { _root.gotoAndStop(30); }
Frame 30
function optionMENU() { this.attachMovie("optionOBJ", "option1", 100); _root.option1.choicebox = "Missionary"; _root.option1._x = 408.5; _root.option1._y = 274.15; this.attachMovie("optionOBJ", "option2", 200); _root.option2.choicebox = "Dog Style"; _root.option2._x = 408.5; _root.option2._y = 319.05; this.attachMovie("optionOBJ", "option3", 300); _root.option3.choicebox = "Cow Girl"; _root.option3._x = 408.5; _root.option3._y = 365.05; _root.option1.onPress = function () { _root.gotoAndStop(30); deleteOBJ(); }; _root.option2.onPress = function () { _root.gotoAndStop(28); deleteOBJ(); }; _root.option3.onPress = function () { _root.gotoAndStop(26); deleteOBJ(); }; } function deleteOBJ() { removeMovieClip(option1); removeMovieClip(option2); removeMovieClip(option3); } stop(); this.attachMovie("textbox_object", "textobject", 1); _root.textobject._x = 400; _root.textobject._y = 541.05; var storyPARTS = new Array(); var max = 3; storyPARTS[0] = "Shane: ..ahhhh... fuck me..."; storyPARTS[1] = "Shane: oh yess...."; storyPARTS[2] = "Shane: give it to me...."; var myWORD; var myCOUNT; var i = 1; myWORD = storyPARTS[0]; myCOUNT = myWORD.split(""); sec = 0; textobject.textbox = ""; onEnterFrame = function () { if (sec < myCOUNT.length) { textobject.textbox = textobject.textbox + myCOUNT[sec++]; } if (i > max) { removeMovieClip(textobject); i = 0; } }; _root.textobject.onPress = function () { textobject.textbox = ""; myWORD = storyPARTS[i++]; myCOUNT = myWORD.split(""); sec = 0; };
Instance of Symbol 85 MovieClip in Frame 30
on (release) { _root.gotoAndStop(26); }
Frame 32
stop(); removeMovieClip(textobject); stopAllSounds(); var music1 = new Sound(); music1.attachSound("Introduction"); music1.start(5, 999); _global.soundENGINE = true; fram = 0; sec = 0; onEnterFrame = function () { if (fram < 30) { fram++; } if (fram == 30) { sec++; } if (sec == 35) { _root.gotoAndStop(33); } };
Frame 33
function optionMENU() { this.attachMovie("optionOBJ", "option1", 100); _root.option1.choicebox = "Missionary"; _root.option1._x = 408.5; _root.option1._y = 274.15; this.attachMovie("optionOBJ", "option2", 200); _root.option2.choicebox = "Dog Style"; _root.option2._x = 408.5; _root.option2._y = 319.05; this.attachMovie("optionOBJ", "option3", 300); _root.option3.choicebox = "Cow Girl"; _root.option3._x = 408.5; _root.option3._y = 365.05; _root.option1.onPress = function () { _root.gotoAndStop(30); deleteOBJ(); }; _root.option2.onPress = function () { _root.gotoAndStop(28); deleteOBJ(); }; _root.option3.onPress = function () { _root.gotoAndStop(26); deleteOBJ(); }; } function deleteOBJ() { removeMovieClip(option1); removeMovieClip(option2); removeMovieClip(option3); } stop(); this.attachMovie("textbox_object", "textobject", 1); _root.textobject._x = 400; _root.textobject._y = 541.05; var storyPARTS = new Array(); var max = 8; storyPARTS[0] = "Shane: thank you Sir"; storyPARTS[1] = "Rey: you don't have to.."; storyPARTS[2] = "Shane: I just really need some money this time"; storyPARTS[3] = "Rey: yeah, I could see your desperation.."; storyPARTS[4] = "Shane: .. ..."; storyPARTS[5] = "Shane: my mother got sick and she needs some serious medication.."; storyPARTS[6] = "Rey: I understand, If you need some more, come back here tomorrow..."; storyPARTS[7] = "Shane: alright Sir, I will.."; var myWORD; var myCOUNT; var i = 1; myWORD = storyPARTS[0]; myCOUNT = myWORD.split(""); sec = 0; textobject.textbox = ""; onEnterFrame = function () { if (sec < myCOUNT.length) { textobject.textbox = textobject.textbox + myCOUNT[sec++]; } if (i > max) { removeMovieClip(textobject); _root.gotoAndStop(35); i = 0; } }; _root.textobject.onPress = function () { textobject.textbox = ""; myWORD = storyPARTS[i++]; myCOUNT = myWORD.split(""); sec = 0; };
Frame 37
this.attachMovie("button", "backbox", 100); _root.backbox.choicebox = "BACK"; _root.backbox._x = 116.65; _root.backbox._y = 29.8; backbox.choicebox = "BACK"; backbox.onPress = function () { removeMovieClip(backbox); _root.gotoAndStop(3); };
Symbol 19 MovieClip [penis] Frame 1
onPress = function () { _root.gotoAndStop(32); removeMovieClip(_root.penis99); };

Library Items

Symbol 1 Sound [Talking]
Symbol 2 Sound [Sex]
Symbol 3 Sound [Introduction]
Symbol 4 GraphicUsed by:7 9 11
Symbol 5 FontUsed by:6 8 10 21 24 25 26 95
Symbol 6 EditableTextUses:5Used by:7
Symbol 7 MovieClip [textbox_object]Uses:4 6
Symbol 8 EditableTextUses:5Used by:9
Symbol 9 MovieClip [button]Uses:4 8
Symbol 10 EditableTextUses:5Used by:11
Symbol 11 MovieClip [optionOBJ]Uses:4 10
Symbol 12 BitmapUsed by:13 17 18
Symbol 13 GraphicUses:12Used by:19
Symbol 14 FontUsed by:15 16 22 91 92 96 97
Symbol 15 TextUses:14Used by:19
Symbol 16 TextUses:14Used by:19
Symbol 17 GraphicUses:12Used by:19
Symbol 18 GraphicUses:12Used by:19
Symbol 19 MovieClip [penis]Uses:13 15 16 17 18
Symbol 20 GraphicUsed by:Timeline
Symbol 21 EditableTextUses:5Used by:Timeline
Symbol 22 TextUses:14Used by:Timeline
Symbol 23 FontUsed by:24 26 98
Symbol 24 TextUses:5 23Used by:Timeline
Symbol 25 TextUses:5Used by:Timeline
Symbol 26 TextUses:5 23Used by:Timeline
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:Timeline
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:Timeline
Symbol 31 BitmapUsed by:32
Symbol 32 GraphicUses:31Used by:Timeline
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:Timeline
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:Timeline
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:Timeline
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:Timeline
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:Timeline
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:Timeline
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:Timeline
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:63
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:63
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:63
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:63
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:63
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:63
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:63
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:63
Symbol 63 MovieClipUses:48 50 52 54 56 58 60 62Used by:Timeline
Symbol 64 BitmapUsed by:65
Symbol 65 GraphicUses:64Used by:72
Symbol 66 BitmapUsed by:67
Symbol 67 GraphicUses:66Used by:72
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:72
Symbol 70 BitmapUsed by:71
Symbol 71 GraphicUses:70Used by:72
Symbol 72 MovieClipUses:65 67 69 71Used by:Timeline
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:85
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:85
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:85
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:85
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:85
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:85
Symbol 85 MovieClipUses:74 76 78 80 82 84Used by:Timeline
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:Timeline
Symbol 88 BitmapUsed by:89
Symbol 89 GraphicUses:88Used by:90
Symbol 90 MovieClipUses:89Used by:Timeline
Symbol 91 TextUses:14Used by:Timeline
Symbol 92 TextUses:14Used by:Timeline
Symbol 93 FontUsed by:94
Symbol 94 TextUses:93Used by:Timeline
Symbol 95 TextUses:5Used by:Timeline
Symbol 96 TextUses:14Used by:Timeline
Symbol 97 TextUses:14Used by:Timeline
Symbol 98 TextUses:23Used by:Timeline

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
Protect (24)Timeline Frame 131 bytes "..$1$9V$mApTf4TaLp4X4qTlceTHW/."
ExportAssets (56)Timeline Frame 1Symbol 1 as "Talking"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Sex"
ExportAssets (56)Timeline Frame 1Symbol 3 as "Introduction"
ExportAssets (56)Timeline Frame 1Symbol 7 as "textbox_object"
ExportAssets (56)Timeline Frame 1Symbol 9 as "button"
ExportAssets (56)Timeline Frame 1Symbol 11 as "optionOBJ"
ExportAssets (56)Timeline Frame 1Symbol 19 as "penis"

Dynamic Text Variables

textboxSymbol 6 EditableText"<p align="left"></p>"
choiceboxSymbol 8 EditableText"<p align="center"></p>"
choiceboxSymbol 10 EditableText"<p align="center"></p>"
perceSymbol 21 EditableText"<p align="center"></p>"




http://swfchan.com/44/218755/info.shtml
Created: 30/4 -2019 14:55:26 Last modified: 30/4 -2019 14:55:26 Server time: 04/05 -2024 00:55:47