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:* = false;
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;
};
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