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

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

Saliva Clock - featuring Illionore and Kelsey.swf

This is the info page for
Flash #217571

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


Text
Start

llionore

Entertainment

<p align="left"><font face="Arial" size="14" color="#ffffff" letterSpacing="0.000000" kerning="1">Loading... please wait.</font></p>

code (optional):

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

Saliva-Clock

9

8

7

6

5

4

3

2

1

0

Seconds

Minutes

50

40

30

20

10

0

Hours

22

21

19

18

17

16

15

14

13

12

11

9

8

7

6

5

4

3

2

1

23

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

ActionScript [AS3]

Section 1
//None (fl.transitions.easing.None) package fl.transitions.easing { public class None { public static function easeNone(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } } }//package fl.transitions.easing
Section 2
//Tween (fl.transitions.Tween) package fl.transitions { import flash.events.*; import flash.utils.*; import flash.display.*; public class Tween extends EventDispatcher { public var isPlaying:Boolean;// = false public var obj:Object;// = null public var prop:String;// = "" public var func:Function; public var begin:Number;// = NAN public var change:Number;// = NAN public var useSeconds:Boolean;// = false public var prevTime:Number;// = NAN public var prevPos:Number;// = NAN public var looping:Boolean;// = false private var _duration:Number;// = NAN private var _time:Number;// = NAN private var _fps:Number;// = NAN private var _position:Number;// = NAN private var _startTime:Number;// = NAN private var _intervalID:uint;// = 0 private var _finish:Number;// = NAN private var _timer:Timer;// = null protected static var _mc:MovieClip = new MovieClip(); public function Tween(_arg1:Object, _arg2:String, _arg3:Function, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Boolean=false){ this.func = function (_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); }; super(); if (!arguments.length){ return; }; this.obj = _arg1; this.prop = _arg2; this.begin = _arg4; this.position = _arg4; this.duration = _arg6; this.useSeconds = _arg7; if ((_arg3 is Function)){ this.func = _arg3; }; this.finish = _arg5; this._timer = new Timer(100); this.start(); } public function get time():Number{ return (this._time); } public function set time(_arg1:Number):void{ this.prevTime = this._time; if (_arg1 > this.duration){ if (this.looping){ this.rewind((_arg1 - this._duration)); this.update(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_LOOP, this._time, this._position)); } else { if (this.useSeconds){ this._time = this._duration; this.update(); }; this.stop(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_FINISH, this._time, this._position)); }; } else { if (_arg1 < 0){ this.rewind(); this.update(); } else { this._time = _arg1; this.update(); }; }; } public function get duration():Number{ return (this._duration); } public function set duration(_arg1:Number):void{ this._duration = ((_arg1)<=0) ? Infinity : _arg1; } public function get FPS():Number{ return (this._fps); } public function set FPS(_arg1:Number):void{ var _local2:Boolean = this.isPlaying; this.stopEnterFrame(); this._fps = _arg1; if (_local2){ this.startEnterFrame(); }; } public function get position():Number{ return (this.getPosition(this._time)); } public function set position(_arg1:Number):void{ this.setPosition(_arg1); } public function getPosition(_arg1:Number=NaN):Number{ if (isNaN(_arg1)){ _arg1 = this._time; }; return (this.func(_arg1, this.begin, this.change, this._duration)); } public function setPosition(_arg1:Number):void{ this.prevPos = this._position; if (this.prop.length){ this.obj[this.prop] = (this._position = _arg1); }; this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_CHANGE, this._time, this._position)); } public function get finish():Number{ return ((this.begin + this.change)); } public function set finish(_arg1:Number):void{ this.change = (_arg1 - this.begin); } public function continueTo(_arg1:Number, _arg2:Number):void{ this.begin = this.position; this.finish = _arg1; if (!isNaN(_arg2)){ this.duration = _arg2; }; this.start(); } public function yoyo():void{ this.continueTo(this.begin, this.time); } protected function startEnterFrame():void{ var _local1:Number; if (isNaN(this._fps)){ _mc.addEventListener(Event.ENTER_FRAME, this.onEnterFrame, false, 0, true); } else { _local1 = (1000 / this._fps); this._timer.delay = _local1; this._timer.addEventListener(TimerEvent.TIMER, this.timerHandler, false, 0, true); this._timer.start(); }; this.isPlaying = true; } protected function stopEnterFrame():void{ if (isNaN(this._fps)){ _mc.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame); } else { this._timer.stop(); }; this.isPlaying = false; } public function start():void{ this.rewind(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_START, this._time, this._position)); } public function stop():void{ this.stopEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_STOP, this._time, this._position)); } public function resume():void{ this.fixTime(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_RESUME, this._time, this._position)); } public function rewind(_arg1:Number=0):void{ this._time = _arg1; this.fixTime(); this.update(); } public function fforward():void{ this.time = this._duration; this.fixTime(); } public function nextFrame():void{ if (this.useSeconds){ this.time = ((getTimer() - this._startTime) / 1000); } else { this.time = (this._time + 1); }; } protected function onEnterFrame(_arg1:Event):void{ this.nextFrame(); } protected function timerHandler(_arg1:TimerEvent):void{ this.nextFrame(); _arg1.updateAfterEvent(); } public function prevFrame():void{ if (!this.useSeconds){ this.time = (this._time - 1); }; } private function fixTime():void{ if (this.useSeconds){ this._startTime = (getTimer() - (this._time * 1000)); }; } private function update():void{ this.setPosition(this.getPosition(this._time)); } } }//package fl.transitions
Section 3
//TweenEvent (fl.transitions.TweenEvent) package fl.transitions { import flash.events.*; public class TweenEvent extends Event { public var time:Number;// = NAN public var position:Number;// = NAN public static const MOTION_START:String = "motionStart"; public static const MOTION_STOP:String = "motionStop"; public static const MOTION_FINISH:String = "motionFinish"; public static const MOTION_CHANGE:String = "motionChange"; public static const MOTION_RESUME:String = "motionResume"; public static const MOTION_LOOP:String = "motionLoop"; public function TweenEvent(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false, _arg5:Boolean=false){ super(_arg1, _arg4, _arg5); this.time = _arg2; this.position = _arg3; } override public function clone():Event{ return (new TweenEvent(this.type, this.time, this.position, this.bubbles, this.cancelable)); } } }//package fl.transitions
Section 4
//hourPipe_4 (waterclock_fla.hourPipe_4) package waterclock_fla { import flash.display.*; public dynamic class hourPipe_4 extends MovieClip { public function hourPipe_4(){ addFrameScript(0, frame1, 19, frame20); } function frame1(){ stop(); } function frame20(){ stop(); } } }//package waterclock_fla
Section 5
//MainTimeline (waterclock_fla.MainTimeline) package waterclock_fla { import flash.events.*; import fl.transitions.*; import fl.transitions.easing.*; import flash.utils.*; import flash.display.*; import flash.text.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.geom.*; import flash.media.*; import flash.net.*; import flash.printing.*; import flash.profiler.*; import flash.sampler.*; import flash.system.*; import flash.ui.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var kelseyTop:MovieClip; public var btnKelseySkirt:MovieClip; public var btnKelseyBra:MovieClip; public var kelseySkirt:MovieClip; public var kelseyPantyhoses:MovieClip; public var illiFront:MovieClip; public var txt:TextField; public var btnKelseyTop:MovieClip; public var kelseyBra:MovieClip; public var socks:MovieClip; public var bak2:MovieClip; public var btnUnderwear:MovieClip; public var kelsey2:MovieClip; public var hourPipe:MovieClip; public var btnIntroStart:introStartButton; public var drool:MovieClip; public var drijver3:MovieClip; public var saliva3:MovieClip; public var illiDoll:MovieClip; public var salivastream2:MovieClip; public var codeText:TextField; public var webs:MovieClip; public var loader_mc:movie_mc; public var loaded_txt:TextField; public var btnPantyHosesKelsey:MovieClip; public var btnWeb:MovieClip; public var afvoer:MovieClip; public var tube1:MovieClip; public var btnKelseyPanties:MovieClip; public var bigTank:MovieClip; public var tube2:MovieClip; public var kelseyBottom:MovieClip; public var tube3:MovieClip; public var tube4:MovieClip; public var tube5:MovieClip; public var btnIlliBra:MovieClip; public var btnSocks:MovieClip; public var kelsey:MovieClip; public var tube6:MovieClip; public var waterlevel2:MovieClip; public var illiBra:MovieClip; public var underwear:MovieClip; public var bCode; public var hour:uint; public var min:uint; public var sec:uint; public var tweenSec:Tween; public var tweenDrijver3:Tween; public var tweenDrijver6:Tween; public var oldHour; public var totPics; public var myInterval:uint; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2); } public function onProgress(_arg1:ProgressEvent):void{ var _local2:Number = _arg1.target.bytesLoaded; var _local3:Number = _arg1.target.bytesTotal; var _local4:Number = (_local2 / _local3); loader_mc.scaleX = _local4; loaded_txt.text = (("Loading... " + Math.round((_local4 * 100))) + "%"); } public function onComplete(_arg1:Event):void{ loaded_txt.text = "Finished loading."; var _local2:* = this.loaderInfo.url; var _local3:* = true; if (_local2.search("file:") != -1){ _local3 = true; }; if (_local2.search("deviantart.net") != -1){ _local3 = true; }; if (_local3 == true){ btnIntroStart.alpha = 1; btnIntroStart.addEventListener(MouseEvent.CLICK, startGame); }; } public function startGame(_arg1:MouseEvent):void{ var _local2:*; _local2 = codeText.text; _local2 = _local2.toLowerCase(); if (_local2 == "drool on your breasts, illionore"){ bCode = true; }; bCode = true; gotoAndStop(2); } public function checkTime():void{ var _local1:Date = new Date(); hour = _local1.hours; min = _local1.minutes; sec = _local1.seconds; if (sec == 0){ sec = 60; }; if (sec == 1){ sec = 61; }; } public function updateTubes():void{ if (sec == 2){ salivastream2.alpha = 0; kelsey2.alpha = 0; kelsey.picture.gotoAndStop(Math.ceil((Math.random() * totPics))); kelsey.alpha = 1; }; if ((((sec == 3)) && (!((oldHour == hour))))){ hourChange(); }; if (sec == 4){ forceCleanup(); }; if (sec == 61){ tweenSec.stop(); emptyAllTubes(); } else { if (sec <= 10){ fillSeconds(tube1.waterlevel, (sec / 10)); tube2.waterlevel.scaleY = 0; tube3.waterlevel.scaleY = 0; tube4.waterlevel.scaleY = 0; tube5.waterlevel.scaleY = 0; tube6.waterlevel.scaleY = 0; tube6.drijver.y = 118; } else { if (sec <= 20){ tube1.waterlevel.scaleY = 1; fillSeconds(tube2.waterlevel, ((sec - 10) / 10)); tube3.waterlevel.scaleY = 0; tube4.waterlevel.scaleY = 0; tube5.waterlevel.scaleY = 0; tube6.waterlevel.scaleY = 0; tube6.drijver.y = 118; tube2.salivastream.alpha = 1; } else { if (sec <= 30){ tube1.waterlevel.scaleY = 1; tube2.waterlevel.scaleY = 1; fillSeconds(tube3.waterlevel, ((sec - 20) / 10)); tube4.waterlevel.scaleY = 0; tube5.waterlevel.scaleY = 0; tube6.waterlevel.scaleY = 0; tube6.drijver.y = 118; tube3.salivastream.alpha = 1; } else { if (sec <= 40){ tube1.waterlevel.scaleY = 1; tube2.waterlevel.scaleY = 1; tube3.waterlevel.scaleY = 1; fillSeconds(tube4.waterlevel, ((sec - 30) / 10)); tube5.waterlevel.scaleY = 0; tube6.waterlevel.scaleY = 0; tube6.drijver.y = 118; tube4.salivastream.alpha = 1; } else { if (sec <= 50){ tube1.waterlevel.scaleY = 1; tube2.waterlevel.scaleY = 1; tube3.waterlevel.scaleY = 1; tube4.waterlevel.scaleY = 1; fillSeconds(tube5.waterlevel, ((sec - 40) / 10)); tube6.waterlevel.scaleY = 0; tube6.drijver.y = 118; tube5.salivastream.alpha = 1; } else { tube1.waterlevel.scaleY = 1; tube2.waterlevel.scaleY = 1; tube3.waterlevel.scaleY = 1; tube4.waterlevel.scaleY = 1; tube5.waterlevel.scaleY = 1; fillSeconds(tube6.waterlevel, ((sec - 50) / 10)); liftDrijver6(); tube6.salivastream.alpha = 1; }; }; }; }; }; }; if (sec == 61){ tube2.salivastream.alpha = 0; tube3.salivastream.alpha = 0; tube4.salivastream.alpha = 0; tube5.salivastream.alpha = 0; tube6.salivastream.alpha = 0; kelsey.alpha = 0; kelsey2.alpha = 1; }; if (min != 0){ waterlevel2.scaleY = (min / 60); saliva3.scaleY = (hour / 23); }; } public function myTimer():void{ checkTime(); updateTubes(); } public function fillSeconds(_arg1, _arg2):void{ tweenSec.stop(); tweenSec = new Tween(_arg1, "scaleY", None.easeNone, _arg1.scaleY, _arg2, 1, true); tweenSec.FPS = 40; } public function emptyAllTubes():void{ var _local1:Tween; var _local2:Tween; var _local3:Tween; var _local4:Tween; var _local5:Tween; var _local6:Tween; salivastream2.gotoAndPlay(1); salivastream2.alpha = 1; _local1 = new Tween(tube1.waterlevel, "scaleY", None.easeNone, 1, 0, 1, true); _local1.FPS = 40; _local2 = new Tween(tube2.waterlevel, "scaleY", None.easeNone, 1, 0, 1, true); _local2.FPS = 40; _local3 = new Tween(tube3.waterlevel, "scaleY", None.easeNone, 1, 0, 1, true); _local3.FPS = 40; _local4 = new Tween(tube4.waterlevel, "scaleY", None.easeNone, 1, 0, 1, true); _local4.FPS = 40; _local5 = new Tween(tube5.waterlevel, "scaleY", None.easeNone, 1, 0, 1, true); _local5.FPS = 40; _local6 = new Tween(tube6.waterlevel, "scaleY", None.easeNone, 1, 0, 1, true); _local6.FPS = 40; tweenDrijver6.stop(); tweenDrijver6 = new Tween(tube6.drijver, "y", None.easeNone, 0, 118, 1, true); tweenDrijver6.FPS = 40; var _local7:* = 458; _local7 = (min / 60); if (_local7 > 0){ _local7 = (460 - (_local7 * 120)); }; drijver3.y = _local7; } public function firstUpdateDrijver3():void{ var _local1:* = 458; _local1 = (min / 60); if (_local1 > 0){ _local1 = (460 - (_local1 * 120)); } else { _local1 = 458; }; drijver3.y = _local1; } public function liftDrijver6():void{ var _local1:* = 118; _local1 = ((sec - 50) / 10); if (_local1 > 0){ _local1 = (120 - (_local1 * 120)); } else { _local1 = 118; }; if (sec != 61){ tweenDrijver6.stop(); tweenDrijver6 = new Tween(tube6.drijver, "y", None.easeNone, tube6.drijver.y, _local1, 1, true); tweenDrijver6.FPS = 40; }; } public function hourChange():void{ var _local1:Tween; var _local2:Tween; oldHour = hour; hourPipe.gotoAndPlay(2); _local1 = new Tween(waterlevel2, "scaleY", None.easeNone, 1, 0, 20, true); _local1.FPS = 40; _local2 = new Tween(saliva3, "scaleY", None.easeNone, saliva3.scaleY, (hour / 23), 20, true); _local2.FPS = 40; _local2.addEventListener(TweenEvent.MOTION_FINISH, stopShower); tweenDrijver3.stop(); tweenDrijver3 = new Tween(drijver3, "y", None.easeNone, 340, 458, 20, true); tweenDrijver3.FPS = 40; fillText(); } public function stopShower(_arg1:TweenEvent):void{ hourPipe.gotoAndStop(1); } public function mouseClicked(_arg1:MouseEvent):void{ if (bCode == true){ if (_arg1.target.name == "btnKelseyBra"){ if (btnKelseyBra.alpha == 1){ btnKelseyBra.alpha = 0.5; kelseyBra.alpha = 0; } else { btnKelseyBra.alpha = 1; kelseyBra.alpha = 1; }; } else { if (_arg1.target.name == "btnKelseyPanties"){ if (btnKelseyPanties.alpha == 1){ btnKelseyPanties.alpha = 0.5; kelseyBottom.alpha = 0; } else { btnKelseyPanties.alpha = 1; kelseyBottom.alpha = 1; }; } else { if (_arg1.target.name == "btnWeb"){ if (webs.alpha == 1){ btnWeb.alpha = 0.5; webs.alpha = 0; } else { btnWeb.alpha = 1; webs.alpha = 1; }; } else { if (_arg1.target.name == "btnPantyHosesKelsey"){ if (kelseyPantyhoses.alpha == 0.5){ btnPantyHosesKelsey.alpha = 0.5; kelseyPantyhoses.alpha = 0; } else { btnPantyHosesKelsey.alpha = 1; kelseyPantyhoses.alpha = 0.5; }; } else { if (_arg1.target.name == "btnKelseySkirt"){ if (kelseySkirt.alpha == 1){ btnKelseySkirt.alpha = 0.5; kelseySkirt.alpha = 0; } else { btnKelseySkirt.alpha = 1; kelseySkirt.alpha = 1; }; } else { if (_arg1.target.name == "btnKelseyTop"){ if (kelseyTop.alpha == 1){ btnKelseyTop.alpha = 0.5; kelseyTop.alpha = 0; } else { btnKelseyTop.alpha = 1; kelseyTop.alpha = 1; }; } else { if (_arg1.target.name == "btnSocks"){ if (socks.alpha == 1){ btnSocks.alpha = 0.5; socks.alpha = 0; } else { btnSocks.alpha = 1; socks.alpha = 1; }; } else { if (_arg1.target.name == "btnIlliBra"){ if (illiBra.alpha == 1){ btnIlliBra.alpha = 0.5; illiBra.alpha = 0; } else { btnIlliBra.alpha = 1; illiBra.alpha = 1; }; } else { if (_arg1.target.name == "btnUnderwear"){ if (underwear.alpha == 1){ btnUnderwear.alpha = 0.5; underwear.alpha = 0; } else { btnUnderwear.alpha = 1; underwear.alpha = 1; }; }; }; }; }; }; }; }; }; }; }; } public function fillText():void{ if (hour == 0){ txt.text = "Well, Illionore, before the hour is up your foot is getting wet!"; } else { if (hour < 3){ txt.text = "Heehee... your left foot is all sticky and wet now, eh?"; } else { if (hour < 6){ txt.text = "The saliva is climbing and climbing, all the way up! hee!"; } else { if (hour < 9){ txt.text = "Up and up it goes, until you are completely covered in it!"; } else { if (hour == 9){ txt.text = "Your sticky saliva is climbing to your crotch, heehee!"; } else { if (hour == 10){ txt.text = "Ooh, your panties are almost soaked in saliva now! heehee!"; } else { if (hour == 11){ txt.text = "How does it feel to have the saliva creep into your panties?"; } else { if (hour < 15){ txt.text = "How do you like soaking in your own saliva, Illionore...?"; } else { if (hour < 17){ txt.text = "How does it feel to have your boobs floating in saliva...hm?"; } else { if (hour < 19){ txt.text = "Having a lovely, sticky saliva bath, Illionore? Heeheehee!"; } else { if (hour < 21){ txt.text = "If your head wasn't sticking out, you'd be drowning in it!"; } else { txt.text = "I LOVE to see you all covered in your own saliva, Illionore!"; }; }; }; }; }; }; }; }; }; }; }; } public function forceCleanup():void{ tube2.salivastream.alpha = 0; tube3.salivastream.alpha = 0; tube4.salivastream.alpha = 0; tube5.salivastream.alpha = 0; tube6.salivastream.alpha = 0; salivastream2.alpha = 0; if (kelsey2.alpha == 1){ kelsey.picture.gotoAndStop(Math.ceil((Math.random() * totPics))); kelsey.alpha = 1; kelsey2.alpha = 0; }; } function frame1(){ stop(); bCode = false; this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress); this.loaderInfo.addEventListener(Event.COMPLETE, onComplete); } function frame2(){ stop(); oldHour = 0; totPics = 21; tweenSec = new Tween(tube1.waterlevel, "scaleY", None.easeNone, 0, 0, 0.5, true); tweenSec.FPS = 40; tweenDrijver3 = new Tween(drijver3, "y", None.easeNone, 458, 458, 0.5, true); tweenDrijver3.FPS = 40; tweenDrijver6 = new Tween(tube6.drijver, "y", None.easeNone, 118, 118, 0.5, true); tweenDrijver6.FPS = 40; kelsey.picture.gotoAndStop(Math.ceil((Math.random() * totPics))); kelsey2.alpha = 0; myInterval = setInterval(myTimer, 1000); stage.addEventListener(MouseEvent.CLICK, mouseClicked); saliva3.scaleY = 0; salivastream2.alpha = 0; tube1.drijver.alpha = 0; tube2.drijver.alpha = 0; tube3.drijver.alpha = 0; tube4.drijver.alpha = 0; tube5.drijver.alpha = 0; tube2.waterlevel.scaleY = 0; tube3.waterlevel.scaleY = 0; tube4.waterlevel.scaleY = 0; tube5.waterlevel.scaleY = 0; tube6.waterlevel.scaleY = 0; waterlevel2.scaleY = 0; tube2.salivastream.alpha = 0; tube3.salivastream.alpha = 0; tube4.salivastream.alpha = 0; tube5.salivastream.alpha = 0; tube6.salivastream.alpha = 0; checkTime(); updateTubes(); oldHour = hour; if (sec > 10){ tube2.salivastream.alpha = 1; }; if (sec > 20){ tube3.salivastream.alpha = 1; }; if (sec > 30){ tube4.salivastream.alpha = 1; }; if (sec > 40){ tube5.salivastream.alpha = 1; }; if (sec > 50){ tube6.salivastream.alpha = 1; }; firstUpdateDrijver3(); fillText(); } } }//package waterclock_fla
Section 6
//picture_24 (waterclock_fla.picture_24) package waterclock_fla { import flash.display.*; public dynamic class picture_24 extends MovieClip { public function picture_24(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package waterclock_fla
Section 7
//salivastream2_9 (waterclock_fla.salivastream2_9) package waterclock_fla { import flash.display.*; public dynamic class salivastream2_9 extends MovieClip { public function salivastream2_9(){ addFrameScript(18, frame19); } function frame19(){ stop(); } } }//package waterclock_fla
Section 8
//introStartButton (introStartButton) package { import flash.display.*; public dynamic class introStartButton extends MovieClip { } }//package
Section 9
//movie_mc (movie_mc) package { import flash.display.*; public dynamic class movie_mc extends MovieClip { } }//package

Library Items

Symbol 1 GraphicUsed by:4
Symbol 2 FontUsed by:3 8 9 12 13 14 15 204
Symbol 3 TextUses:2Used by:4
Symbol 4 MovieClip {introStartButton}Uses:1 3Used by:Timeline
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClip {movie_mc}Uses:5Used by:Timeline
Symbol 7 GraphicUsed by:Timeline
Symbol 8 TextUses:2Used by:Timeline
Symbol 9 TextUses:2Used by:Timeline
Symbol 10 BitmapUsed by:11
Symbol 11 GraphicUses:10Used by:Timeline
Symbol 12 EditableTextUses:2Used by:Timeline
Symbol 13 TextUses:2Used by:Timeline
Symbol 14 EditableTextUses:2Used by:Timeline
Symbol 15 TextUses:2Used by:Timeline
Symbol 16 GraphicUsed by:Timeline
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:Timeline
Symbol 19 GraphicUsed by:26
Symbol 20 GraphicUsed by:26
Symbol 21 GraphicUsed by:26
Symbol 22 GraphicUsed by:26
Symbol 23 GraphicUsed by:26
Symbol 24 GraphicUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClip {waterclock_fla.hourPipe_4}Uses:19 20 21 22 23 24 25Used by:Timeline
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:Timeline
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:Timeline
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:31Used by:Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:Timeline
Symbol 35 GraphicUsed by:41
Symbol 36 GraphicUsed by:41
Symbol 37 GraphicUsed by:41
Symbol 38 GraphicUsed by:41
Symbol 39 GraphicUsed by:41
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClip {waterclock_fla.salivastream2_9}Uses:35 36 37 38 39 40Used by:Timeline
Symbol 42 GraphicUsed by:43 48
Symbol 43 MovieClipUses:42Used by:Timeline
Symbol 44 GraphicUsed by:47
Symbol 45 GraphicUsed by:47
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:44 45 46Used by:64
Symbol 48 MovieClipUses:42Used by:64
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:64  Timeline
Symbol 51 GraphicUsed by:63
Symbol 52 FontUsed by:53 54 55 56 57 58 59 60 61 62 71 72 73 74 75 76 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
Symbol 53 TextUses:52Used by:63
Symbol 54 TextUses:52Used by:63
Symbol 55 TextUses:52Used by:63
Symbol 56 TextUses:52Used by:63
Symbol 57 TextUses:52Used by:63
Symbol 58 TextUses:52Used by:63
Symbol 59 TextUses:52Used by:63
Symbol 60 TextUses:52Used by:63
Symbol 61 TextUses:52Used by:63
Symbol 62 TextUses:52Used by:63
Symbol 63 MovieClipUses:51 53 54 55 56 57 58 59 60 61 62Used by:64
Symbol 64 MovieClipUses:47 48 50 63Used by:Timeline
Symbol 65 FontUsed by:66 70 79
Symbol 66 TextUses:65Used by:Timeline
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:Timeline
Symbol 69 GraphicUsed by:77
Symbol 70 TextUses:65Used by:77
Symbol 71 TextUses:52Used by:77
Symbol 72 TextUses:52Used by:77
Symbol 73 TextUses:52Used by:77
Symbol 74 TextUses:52Used by:77 101
Symbol 75 TextUses:52Used by:77 101
Symbol 76 TextUses:52Used by:77 101
Symbol 77 MovieClipUses:69 70 71 72 73 74 75 76Used by:Timeline
Symbol 78 GraphicUsed by:101
Symbol 79 TextUses:65Used by:101
Symbol 80 TextUses:52Used by:101
Symbol 81 TextUses:52Used by:101
Symbol 82 TextUses:52Used by:101
Symbol 83 TextUses:52Used by:101
Symbol 84 TextUses:52Used by:101
Symbol 85 TextUses:52Used by:101
Symbol 86 TextUses:52Used by:101
Symbol 87 TextUses:52Used by:101
Symbol 88 TextUses:52Used by:101
Symbol 89 TextUses:52Used by:101
Symbol 90 TextUses:52Used by:101
Symbol 91 TextUses:52Used by:101
Symbol 92 TextUses:52Used by:101
Symbol 93 TextUses:52Used by:101
Symbol 94 TextUses:52Used by:101
Symbol 95 TextUses:52Used by:101
Symbol 96 TextUses:52Used by:101
Symbol 97 TextUses:52Used by:101
Symbol 98 TextUses:52Used by:101
Symbol 99 TextUses:52Used by:101
Symbol 100 TextUses:52Used by:101
Symbol 101 MovieClipUses:78 79 80 81 74 82 83 84 85 86 87 88 89 90 75 91 92 93 94 95 96 97 98 99 76 100Used by:Timeline
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:Timeline
Symbol 104 GraphicUsed by:119 122
Symbol 105 GraphicUsed by:119 122
Symbol 106 GraphicUsed by:119 122
Symbol 107 GraphicUsed by:119 122
Symbol 108 GraphicUsed by:119 122
Symbol 109 GraphicUsed by:119 122
Symbol 110 GraphicUsed by:119 122
Symbol 111 GraphicUsed by:119 122
Symbol 112 GraphicUsed by:119 122
Symbol 113 GraphicUsed by:119 122
Symbol 114 GraphicUsed by:119 122
Symbol 115 GraphicUsed by:119
Symbol 116 GraphicUsed by:119 122
Symbol 117 GraphicUsed by:119 122
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:104 105 106 107 108 109 110 111 112 113 114 115 116 117 118Used by:Timeline
Symbol 120 GraphicUsed by:122
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:104 105 106 107 108 109 110 111 112 113 114 120 116 117 121Used by:Timeline
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:123Used by:Timeline
Symbol 125 GraphicUsed by:171
Symbol 126 BitmapUsed by:127
Symbol 127 GraphicUses:126Used by:168
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:168
Symbol 130 BitmapUsed by:131
Symbol 131 GraphicUses:130Used by:168
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:132Used by:168
Symbol 134 BitmapUsed by:135
Symbol 135 GraphicUses:134Used by:168
Symbol 136 BitmapUsed by:137
Symbol 137 GraphicUses:136Used by:168
Symbol 138 BitmapUsed by:139
Symbol 139 GraphicUses:138Used by:168
Symbol 140 BitmapUsed by:141
Symbol 141 GraphicUses:140Used by:168
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:142Used by:168
Symbol 144 BitmapUsed by:145
Symbol 145 GraphicUses:144Used by:168
Symbol 146 BitmapUsed by:147
Symbol 147 GraphicUses:146Used by:168
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:168
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:168
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:168
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:168
Symbol 156 BitmapUsed by:157
Symbol 157 GraphicUses:156Used by:168
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:168
Symbol 160 BitmapUsed by:161
Symbol 161 GraphicUses:160Used by:168
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:168
Symbol 164 BitmapUsed by:165
Symbol 165 GraphicUses:164Used by:168
Symbol 166 BitmapUsed by:167
Symbol 167 GraphicUses:166Used by:168
Symbol 168 MovieClip {waterclock_fla.picture_24}Uses:127 129 131 133 135 137 139 141 143 145 147 149 151 153 155 157 159 161 163 165 167Used by:171
Symbol 169 GraphicUsed by:170
Symbol 170 MovieClipUses:169Used by:171
Symbol 171 MovieClipUses:125 168 170Used by:Timeline
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:172Used by:Timeline
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:174Used by:Timeline
Symbol 176 GraphicUsed by:177
Symbol 177 MovieClipUses:176Used by:Timeline
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:178Used by:Timeline
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClipUses:180Used by:Timeline
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClipUses:182Used by:Timeline
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:184Used by:Timeline
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:186Used by:Timeline
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClipUses:188Used by:Timeline
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClipUses:190Used by:Timeline
Symbol 192 GraphicUsed by:193
Symbol 193 MovieClipUses:192Used by:Timeline
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:194Used by:Timeline
Symbol 196 GraphicUsed by:197
Symbol 197 MovieClipUses:196Used by:Timeline
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198Used by:Timeline
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:200Used by:Timeline
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:202Used by:Timeline
Symbol 204 EditableTextUses:2Used by:Timeline

Instance Names

"loaded_txt"Frame 1Symbol 12 EditableText
"loader_mc"Frame 1Symbol 6 MovieClip {movie_mc}
"btnIntroStart"Frame 1Symbol 4 MovieClip {introStartButton}
"codeText"Frame 1Symbol 14 EditableText
"illiDoll"Frame 2Symbol 18 MovieClip
"hourPipe"Frame 2Symbol 26 MovieClip {waterclock_fla.hourPipe_4}
"socks"Frame 2Symbol 28 MovieClip
"illiBra"Frame 2Symbol 30 MovieClip
"underwear"Frame 2Symbol 32 MovieClip
"saliva3"Frame 2Symbol 34 MovieClip
"salivastream2"Frame 2Symbol 41 MovieClip {waterclock_fla.salivastream2_9}
"waterlevel2"Frame 2Symbol 43 MovieClip
"tube1"Frame 2Symbol 64 MovieClip
"tube2"Frame 2Symbol 64 MovieClip
"tube3"Frame 2Symbol 64 MovieClip
"tube4"Frame 2Symbol 64 MovieClip
"tube5"Frame 2Symbol 64 MovieClip
"tube6"Frame 2Symbol 64 MovieClip
"afvoer"Frame 2Symbol 68 MovieClip
"drijver3"Frame 2Symbol 50 MovieClip
"bak2"Frame 2Symbol 77 MovieClip
"bigTank"Frame 2Symbol 101 MovieClip
"illiFront"Frame 2Symbol 103 MovieClip
"drool"Frame 2Symbol 119 MovieClip
"kelsey"Frame 2Symbol 171 MovieClip
"kelsey2"Frame 2Symbol 173 MovieClip
"webs"Frame 2Symbol 175 MovieClip
"btnWeb"Frame 2Symbol 177 MovieClip
"kelseyBra"Frame 2Symbol 179 MovieClip
"kelseyBottom"Frame 2Symbol 181 MovieClip
"btnKelseyBra"Frame 2Symbol 183 MovieClip
"btnKelseyPanties"Frame 2Symbol 185 MovieClip
"kelseyPantyhoses"Frame 2Symbol 187 MovieClip
"btnPantyHosesKelsey"Frame 2Symbol 189 MovieClip
"kelseySkirt"Frame 2Symbol 191 MovieClip
"btnKelseySkirt"Frame 2Symbol 193 MovieClip
"kelseyTop"Frame 2Symbol 195 MovieClip
"btnKelseyTop"Frame 2Symbol 197 MovieClip
"btnSocks"Frame 2Symbol 199 MovieClip
"btnIlliBra"Frame 2Symbol 201 MovieClip
"btnUnderwear"Frame 2Symbol 203 MovieClip
"txt"Frame 2Symbol 204 EditableText
"salivastream"Symbol 64 MovieClip Frame 1Symbol 47 MovieClip
"waterlevel"Symbol 64 MovieClip Frame 1Symbol 48 MovieClip
"drijver"Symbol 64 MovieClip Frame 1Symbol 50 MovieClip
"tubelines"Symbol 64 MovieClip Frame 1Symbol 63 MovieClip
"picture"Symbol 171 MovieClip Frame 1Symbol 168 MovieClip {waterclock_fla.picture_24}

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 11298 bytes "<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmln ..."




http://swfchan.com/44/217571/info.shtml
Created: 19/7 -2019 09:17:32 Last modified: 19/7 -2019 09:17:32 Server time: 28/04 -2024 07:28:49