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

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

The Kiss of Death - animation by illionore.swf

This is the info page for
Flash #160585

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


Text
llionore

Entertainment

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

Start

The Kiss of Death

(animation)

Ahahah... you
stupid stupid
Illionore...!

You put your avatar
into MY world...

It's piss-easy to make a few
'little adjustments' to your
presence in here... teehee...

Here... 'copy Illionore'...

Goggle Search

JenBrowser

Goggle

I'm lucky

v

vo

vor

vore

vore  p

vore  pr

vore  po

vore  pot

vore  pod

JenBrowser

Goggle

cosey vore pod                  girl trapped in vore pod       plant vore pod                    vore pod animation

want to buy vore pod         vore plant pod for sale!       swallowed by vore pod       acid spitting vore pod

JenBrowser - Interactive Mode

Then I go to Goggle...

Hmm... which one would be good
to put Illionore into... Let's see...

Ah! That one!

'Paste Illionore'...
There we go!

Huh!? What...
where...!?

I'm... I am stuck
somewhere...
somehow!

HELP! LET
ME OUT!
SOMEONE!

!?

My shoe!
dissolving!
wha-

Hehehe! Enjoy your
plant belly bath, Illi!

Hey... what...
No fair!

No need to
play pitiful
now, Kelsey,
you brought
this upon
yourself!

What are you
doing down there?

Such nice feet.
What a pity...

What do you mean,
"what a pity"...?

hahahaha

hahaha

hahahaha

hahaha

What I mean by that... Kelsey...
... is that it's game over.

Game over?

Yes. I am going
to give you the
kiss of death.

You're going to KISS me?

haha!

Are you IN LOVE
with me...?

I...

aHA!

I was right!

Kelsey! grr... I said

KISS OF DEATH.

D-death? You...
am I going to die?

...

Help! NO!
I don't want
to die!

I'm sorry, Kelsey,
but you just don't change.

-push-

AAAAAAAHH!

AAAAAAAAAAAAAHHHHH!

Bump

Loop

Block

Stop

EEEEH!

EEEEEEP!

EEEEEE!

Heheh, just kidding.
It wasn't a kiss of death.
Revenge is sweet. ^^

phew...!

The End

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
//Regular (fl.transitions.easing.Regular) package fl.transitions.easing { public class Regular { public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((_arg3 * _arg1) * _arg1) + _arg2)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ return (((((_arg3 / 2) * _arg1) * _arg1) + _arg2)); }; --_arg1; return ((((-(_arg3) / 2) * ((_arg1 * (_arg1 - 2)) - 1)) + _arg2)); } } }//package fl.transitions.easing
Section 3
//Strong (fl.transitions.easing.Strong) package fl.transitions.easing { public class Strong { public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return (((((((_arg3 * _arg1) * _arg1) * _arg1) * _arg1) * _arg1) + _arg2)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = ((_arg1 / _arg4) - 1); return (((_arg3 * (((((_arg1 * _arg1) * _arg1) * _arg1) * _arg1) + 1)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ return ((((((((_arg3 / 2) * _arg1) * _arg1) * _arg1) * _arg1) * _arg1) + _arg2)); }; _arg1 = (_arg1 - 2); return ((((_arg3 / 2) * (((((_arg1 * _arg1) * _arg1) * _arg1) * _arg1) + 2)) + _arg2)); } } }//package fl.transitions.easing
Section 4
//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 5
//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 6
//browserText3_7 (kod_fla.browserText3_7) package kod_fla { import flash.display.*; public dynamic class browserText3_7 extends MovieClip { public function browserText3_7(){ addFrameScript(0, frame1, 46, frame47); } function frame1(){ stop(); } function frame47(){ stop(); } } }//package kod_fla
Section 7
//hand5_17 (kod_fla.hand5_17) package kod_fla { import flash.display.*; public dynamic class hand5_17 extends MovieClip { public function hand5_17(){ addFrameScript(48, frame49); } function frame49(){ stop(); } } }//package kod_fla
Section 8
//illi10_39 (kod_fla.illi10_39) package kod_fla { import flash.display.*; public dynamic class illi10_39 extends MovieClip { public function illi10_39(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 9
//kelsey10_38 (kod_fla.kelsey10_38) package kod_fla { import flash.display.*; public dynamic class kelsey10_38 extends MovieClip { public function kelsey10_38(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 10
//leg9_34 (kod_fla.leg9_34) package kod_fla { import flash.display.*; public dynamic class leg9_34 extends MovieClip { public function leg9_34(){ addFrameScript(0, frame1, 10, frame11); } function frame1(){ stop(); } function frame11(){ stop(); } } }//package kod_fla
Section 11
//MainTimeline (kod_fla.MainTimeline) package kod_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 bumper:MovieClip; public var chair16:MovieClip; public var illi11:MovieClip; public var hand6b:MovieClip; public var chair17:MovieClip; public var txt6:MovieClip; public var rotor:MovieClip; public var txt7:MovieClip; public var block:MovieClip; public var txt10:MovieClip; public var txt8:MovieClip; public var txt11:MovieClip; public var kelseyChair11:MovieClip; public var txt9:MovieClip; public var leg9:MovieClip; public var hand2:MovieClip; public var btnIntroStart:introStartButton; public var txt12:MovieClip; public var string1:MovieClip; public var screen3:MovieClip; public var cursor3:MovieClip; public var hand5:MovieClip; public var foot4:MovieClip; public var loader_mc:movie_mc; public var loaded_txt:TextField; public var txt15:MovieClip; public var txt16:MovieClip; public var kelseyMouth7:MovieClip; public var hand7:MovieClip; public var head4:MovieClip; public var lines4:MovieClip; public var txt17:MovieClip; public var kelsey8:MovieClip; public var hand8:MovieClip; public var expression:MovieClip; public var foot8:MovieClip; public var btnBump:MovieClip; public var lines4b:MovieClip; public var chair21:MovieClip; public var txt15b:MovieClip; public var chair12:MovieClip; public var windows:MovieClip; public var kelsey10:MovieClip; public var chair9:MovieClip; public var illiMouth7:MovieClip; public var laugh8:MovieClip; public var txt2:MovieClip; public var leg2:MovieClip; public var txt17b:MovieClip; public var btnStop:MovieClip; public var btnBlock:MovieClip; public var btnLoop:MovieClip; public var txt3:MovieClip; public var txt16b:MovieClip; public var chair15:MovieClip; public var illi10:MovieClip; public var hand6a:MovieClip; public var txt4:MovieClip; public var tween1:Tween; public var tween2:Tween; public var myInterval:uint; public var counter; public var tar; public var tweenBlock:Tween; public var tweenRotor:Tween; public var tweenBumper:Tween; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 3, frame4, 6, frame7, 7, frame8, 10, frame11, 11, frame12, 14, frame15, 15, frame16, 16, frame17, 19, frame20, 20, frame21); } 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{ gotoAndStop(2); } public function leg2Finish(_arg1:TweenEvent):void{ _arg1.target.yoyo(); } public function hand2Finish(_arg1:TweenEvent):void{ _arg1.target.yoyo(); } public function myTimer():void{ counter++; if (counter == 2){ txt2.gotoAndStop(2); } else { if (counter == 6){ txt2.gotoAndStop(1); } else { if (counter == 7){ txt2.gotoAndStop(3); } else { if (counter == 11){ txt2.gotoAndStop(1); } else { if (counter == 12){ txt2.gotoAndStop(4); } else { if (counter == 17){ txt2.gotoAndStop(1); } else { if (counter == 18){ txt2.gotoAndStop(5); } else { if (counter == 21){ tween1.stop(); tween2.stop(); gotoAndStop(3); } else { if (counter == 28){ txt3.gotoAndStop(2); } else { if (counter == 29){ screen3.browserText3.gotoAndPlay(1); } else { if (counter == 31){ tween1 = new Tween(cursor3, "x", Regular.easeIn, cursor3.x, 240, 1, true); tween1.FPS = 40; tween2 = new Tween(cursor3, "y", Regular.easeOut, cursor3.y, 380, 1, true); tween2.FPS = 40; } else { if (counter == 33){ screen3.gotoAndStop(2); } else { if (counter == 36){ txt3.gotoAndStop(3); } else { if (counter == 42){ txt3.gotoAndStop(4); tween1 = new Tween(cursor3, "x", Regular.easeIn, cursor3.x, 350, 2, true); tween1.FPS = 40; tween2 = new Tween(cursor3, "y", Regular.easeOut, cursor3.y, 303, 2, true); tween2.FPS = 40; } else { if (counter == 45){ txt3.gotoAndStop(5); screen3.gotoAndStop(3); } else { if (counter == 48){ gotoAndStop(4); } else { if (counter == 50){ txt4.gotoAndStop(3); } else { if (counter == 51){ txt4.gotoAndStop(2); lines4.gotoAndPlay(1); } else { if (counter == 54){ txt4.gotoAndStop(4); } else { if (counter == 58){ txt4.gotoAndStop(5); lines4.gotoAndStop(0); head4.alpha = 1; } else { if (counter == 60){ foot4.alpha = 1; txt4.gotoAndStop(6); tween1 = new Tween(foot4.shoe4, "alpha", None.easeNone, 1, 0.4, 6, true); tween1.FPS = 40; } else { if (counter == 66){ tween1.stop(); lines4b.alpha = 1; lines4.alpha = 0; lines4b.gotoAndPlay(1); txt4.gotoAndStop(4); tween1 = new Tween(head4, "alpha", Regular.easeIn, 1, 0, 1, true); tween1.FPS = 40; tween2 = new Tween(foot4, "alpha", Regular.easeIn, 1, 0, 1, true); tween2.FPS = 40; } else { if (counter == 71){ gotoAndStop(5); } else { if (counter == 74){ gotoAndStop(6); } else { if (counter == 76){ txt6.alpha = 0; tween1 = new Tween(hand6a, "x", Strong.easeIn, hand6a.x, 333, 2, true); tween1.FPS = 40; tween2 = new Tween(hand6b, "x", Regular.easeIn, hand6b.x, 315, 2, true); tween2.FPS = 40; } else { if (counter == 78){ tween1.stop(); tween2.stop(); gotoAndStop(7); } else { if (counter == 81){ txt7.gotoAndStop(2); kelseyMouth7.gotoAndStop(5); illiMouth7.gotoAndPlay(1); } else { if (counter == 86){ tween1.stop(); gotoAndStop(8); } else { if (counter == 90){ txt8.gotoAndStop(2); } else { if (counter == 92){ kelsey8.alpha = 1; } else { if (counter == 94){ txt8.gotoAndStop(3); } else { if (counter == 97){ tween1.stop(); gotoAndStop(9); } else { if (counter == 100){ txt9.gotoAndStop(2); } else { if (counter == 103){ txt9.gotoAndStop(3); } else { if (counter == 106){ txt9.gotoAndStop(4); } else { if (counter == 109){ txt9.gotoAndStop(5); } else { if (counter == 112){ txt9.gotoAndStop(6); } else { if (counter == 115){ txt9.gotoAndStop(7); } else { if (counter == 118){ txt9.gotoAndStop(8); leg9.gotoAndPlay(2); } else { if (counter == 121){ txt9.gotoAndStop(9); } else { if (counter == 125){ txt9.gotoAndStop(10); } else { if (counter == 131){ leg9.gotoAndStop(12); tween1 = new Tween(chair9, "x", Regular.easeOut, chair9.x, 610, 2, true); tween1.FPS = 40; txt9.alpha = 0; } else { if (counter == 133){ tween1.stop(); gotoAndStop(10); } else { if (counter == 136){ txt10.gotoAndStop(2); } else { if (counter == 140){ txt10.alpha = 0; illi10.gotoAndStop(2); tween1 = new Tween(illi10, "x", Regular.easeOut, illi10.x, 121, 2, true); tween1.FPS = 40; } else { if (counter == 141){ kelsey10.gotoAndStop(2); } else { if (counter == 142){ tween1.stop(); gotoAndStop(11); } else { if (counter == 146){ tween1.stop(); tween2.stop(); gotoAndStop(12); } else { if (counter == 150){ counter = 148; } else { if (counter == 166){ counter = 148; gotoAndStop(21); }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; } public function hand7Finish(_arg1:TweenEvent):void{ _arg1.target.yoyo(); } public function hand8Finish1(_arg1:TweenEvent):void{ _arg1.target.yoyo(); } public function hand8Finish2(_arg1:TweenEvent):void{ _arg1.target.yoyo(); } public function pushFinish(_arg1:TweenEvent):void{ kelseyChair11.x = 430; kelseyChair11.y = 142; kelseyChair11.rotation = 18; txt11.gotoAndStop(2); tween1 = new Tween(kelseyChair11, "x", Strong.easeIn, kelseyChair11.x, (kelseyChair11.x + 330), 2, true); tween1.FPS = 40; tween2 = new Tween(kelseyChair11, "y", Strong.easeIn, kelseyChair11.y, (kelseyChair11.y + 110), 2, true); tween2.FPS = 40; } public function rewindDoors(_arg1:TweenEvent):void{ if (tar == 0){ tween1 = new Tween(windows, "x", None.easeNone, 342, -1188, 2, true); tween1.FPS = 40; tween2 = new Tween(windows, "y", None.easeNone, 124, -368, 2, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, rewindDoors); } else { tween1.stop(); tween2.stop(); if (tar == 1){ gotoAndStop(15); }; if (tar == 2){ gotoAndStop(16); }; if (tar == 3){ gotoAndStop(17); }; if (tar == 4){ gotoAndStop(20); }; }; } public function mouseClicked(_arg1:MouseEvent):void{ stage.removeEventListener(MouseEvent.CLICK, mouseClicked); if (_arg1.target.name == "btnBump"){ tar = 1; } else { if (_arg1.target.name == "btnLoop"){ tar = 2; } else { if (_arg1.target.name == "btnBlock"){ tar = 3; } else { if (_arg1.target.name == "btnStop"){ tar = 4; }; }; }; }; btnBump.alpha = 0.2; btnLoop.alpha = 0.2; btnBlock.alpha = 0.2; btnStop.alpha = 0.2; } public function doBump(_arg1:TweenEvent):void{ chair15.rotation = 0; chair15.x = 304; chair15.y = 85; tweenBlock = new Tween(block, "x", None.easeNone, 345, -58, 1, true); tweenBlock.FPS = 40; tween2 = new Tween(block, "y", None.easeNone, 478, 339, 1, true); tween2.FPS = 40; tween1 = new Tween(chair15, "y", Strong.easeOut, 85, 50, 0.5, true); tween1.FPS = 40; tween1.addEventListener(TweenEvent.MOTION_FINISH, midBump); txt15.alpha = 0; txt15b.alpha = 1; } public function midBump(_arg1:TweenEvent):void{ tween1 = new Tween(chair15, "y", Strong.easeIn, 50, 85, 0.5, true); tween1.FPS = 40; tween1.addEventListener(TweenEvent.MOTION_FINISH, endBump); } public function endBump(_arg1:TweenEvent):void{ chair15.rotation = 18; chair15.x = 388; chair15.y = 115; tweenBlock.stop(); tween2.stop(); tween1.stop(); gotoAndStop(12); } public function doRotor(_arg1:TweenEvent):void{ tween1 = new Tween(chair16, "rotation", None.easeNone, 18, -342, 1, true); tween1.FPS = 40; tween1.addEventListener(TweenEvent.MOTION_FINISH, midRotor); txt16.alpha = 0; txt16b.alpha = 1; } public function midRotor(_arg1:TweenEvent):void{ tweenRotor = new Tween(rotor, "x", None.easeNone, 526, -229, 1, true); tweenRotor.FPS = 40; tween2 = new Tween(rotor, "y", None.easeNone, -263, -513, 1, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, endRotor); } public function endRotor(_arg1:TweenEvent):void{ tweenRotor.stop(); tween2.stop(); tween1.stop(); gotoAndStop(12); } public function doBumper(_arg1:TweenEvent):void{ tweenBumper = new Tween(bumper, "x", None.easeNone, 344, -60, 1, true); tweenBumper.FPS = 40; tween2 = new Tween(bumper, "y", None.easeNone, 455, 313, 1, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, endBumper); tween1 = new Tween(chair17, "rotation", None.easeNone, 18, 378, 1, true); tween1.FPS = 40; txt17.alpha = 0; txt17b.alpha = 1; } public function endBumper(_arg1:TweenEvent):void{ tweenBumper.stop(); tween2.stop(); tween1.stop(); gotoAndStop(12); } public function doEndbaan(_arg1:TweenEvent):void{ chair21.rotation = 0; chair21.x = 375; chair21.y = 115; tween2 = new Tween(chair21, "x", None.easeNone, 375, 509, 0.4, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, doEndEnd); } public function doEndEnd(_arg1:TweenEvent):void{ tween2 = new Tween(chair21, "x", Regular.easeOut, 509, 398, 1, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, doComplete); } public function doComplete(_arg1:TweenEvent):void{ tween1.stop(); tween2.stop(); chair21.x = 398; chair21.y = 115; expression.alpha = 1; } function frame1(){ stop(); this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgress); this.loaderInfo.addEventListener(Event.COMPLETE, onComplete); } function frame2(){ stop(); myInterval = setInterval(myTimer, 1000); counter = 0; tween1 = new Tween(leg2, "rotation", Regular.easeInOut, -5, 5, 1, true); tween1.FPS = 40; tween1.addEventListener(TweenEvent.MOTION_FINISH, leg2Finish); tween2 = new Tween(hand2, "rotation", None.easeNone, 5, 0, 0.2, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, hand2Finish); } function frame4(){ lines4.gotoAndStop(0); } function frame7(){ tween1 = new Tween(hand7, "rotation", Regular.easeInOut, -5, 5, 1, true); tween1.FPS = 40; tween1.addEventListener(TweenEvent.MOTION_FINISH, hand7Finish); illiMouth7.gotoAndStop(1); } function frame8(){ tween1 = new Tween(hand8, "x", Regular.easeInOut, 156, 240, 2, true); tween1.FPS = 40; tween1.addEventListener(TweenEvent.MOTION_FINISH, hand8Finish1); tween2 = new Tween(hand8, "y", Regular.easeInOut, 40, 60, 1.3, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, hand8Finish2); } function frame11(){ tween1 = new Tween(kelseyChair11, "x", Strong.easeOut, kelseyChair11.x, 307, 2, true); tween1.FPS = 40; tween1.addEventListener(TweenEvent.MOTION_FINISH, pushFinish); } function frame12(){ tar = 0; tween1 = new Tween(windows, "x", None.easeNone, 342, -1188, 2, true); tween1.FPS = 40; tween2 = new Tween(windows, "y", None.easeNone, 124, -368, 2, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, rewindDoors); stage.addEventListener(MouseEvent.CLICK, mouseClicked); } function frame15(){ tweenBlock = new Tween(block, "x", None.easeNone, 620, 345, 0.6, true); tweenBlock.FPS = 40; tween2 = new Tween(block, "y", None.easeNone, 568, 478, 0.6, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, doBump); } function frame16(){ tweenRotor = new Tween(rotor, "x", None.easeNone, 1131, 526, 0.6, true); tweenRotor.FPS = 40; tween2 = new Tween(rotor, "y", None.easeNone, -63, -263, 0.6, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, doRotor); } function frame17(){ tweenBumper = new Tween(bumper, "x", None.easeNone, 609, 344, 0.6, true); tweenBumper.FPS = 40; tween2 = new Tween(bumper, "y", None.easeNone, 541, 455, 0.6, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, doBumper); } function frame20(){ counter = 160; } function frame21(){ tween1 = new Tween(chair21, "x", None.easeNone, 169, 417, 0.6, true); tween1.FPS = 40; tween2 = new Tween(chair21, "y", None.easeNone, 42, 124, 0.6, true); tween2.FPS = 40; tween2.addEventListener(TweenEvent.MOTION_FINISH, doEndbaan); } } }//package kod_fla
Section 12
//mouth6_21 (kod_fla.mouth6_21) package kod_fla { import flash.display.*; public dynamic class mouth6_21 extends MovieClip { public function mouth6_21(){ addFrameScript(38, frame39); } function frame39(){ stop(); } } }//package kod_fla
Section 13
//screen3_6 (kod_fla.screen3_6) package kod_fla { import flash.display.*; public dynamic class screen3_6 extends MovieClip { public var browserText3:MovieClip; public function screen3_6(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 14
//txt10_37 (kod_fla.txt10_37) package kod_fla { import flash.display.*; public dynamic class txt10_37 extends MovieClip { public function txt10_37(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 15
//txt11_42 (kod_fla.txt11_42) package kod_fla { import flash.display.*; public dynamic class txt11_42 extends MovieClip { public function txt11_42(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 16
//txt2_5 (kod_fla.txt2_5) package kod_fla { import flash.display.*; public dynamic class txt2_5 extends MovieClip { public function txt2_5(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 17
//txt3_8 (kod_fla.txt3_8) package kod_fla { import flash.display.*; public dynamic class txt3_8 extends MovieClip { public function txt3_8(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 18
//txt4_11 (kod_fla.txt4_11) package kod_fla { import flash.display.*; public dynamic class txt4_11 extends MovieClip { public function txt4_11(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 19
//txt7_23 (kod_fla.txt7_23) package kod_fla { import flash.display.*; public dynamic class txt7_23 extends MovieClip { public function txt7_23(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 20
//txt8_30 (kod_fla.txt8_30) package kod_fla { import flash.display.*; public dynamic class txt8_30 extends MovieClip { public function txt8_30(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 21
//txt9_36 (kod_fla.txt9_36) package kod_fla { import flash.display.*; public dynamic class txt9_36 extends MovieClip { public function txt9_36(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package kod_fla
Section 22
//introStartButton (introStartButton) package { import flash.display.*; public dynamic class introStartButton extends MovieClip { } }//package
Section 23
//movie_mc (movie_mc) package { import flash.display.*; public dynamic class movie_mc extends MovieClip { } }//package

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 FontUsed by:3 4 7 11 13 14 32 33 34 35 37 38 39 40 41 42 43 44 45 48 49 50 51 56
Symbol 3 TextUses:2Used by:Timeline
Symbol 4 TextUses:2Used by:Timeline
Symbol 5 BitmapUsed by:6
Symbol 6 GraphicUses:5Used by:Timeline
Symbol 7 EditableTextUses:2Used by:Timeline
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClip {movie_mc}Uses:8Used by:Timeline
Symbol 10 GraphicUsed by:12
Symbol 11 TextUses:2Used by:12
Symbol 12 MovieClip {introStartButton}Uses:10 11Used by:Timeline
Symbol 13 TextUses:2Used by:Timeline
Symbol 14 TextUses:2Used by:Timeline
Symbol 15 GraphicUsed by:Timeline
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:16Used by:Timeline
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClipUses:18Used by:Timeline
Symbol 20 GraphicUsed by:29 127 197
Symbol 21 FontUsed by:22 24 26 28 61 62 63 65 75 76 77 78 79 109 124 126 145 147 148 151 152 153 154 171 173 175 177 178 180 182 184 185 187 188 190 192 194 196 209 210 216 219 221 223 226 230 234 238 242 245 246
Symbol 22 TextUses:21Used by:29
Symbol 23 GraphicUsed by:29
Symbol 24 TextUses:21Used by:29
Symbol 25 GraphicUsed by:29
Symbol 26 TextUses:21Used by:29
Symbol 27 GraphicUsed by:29
Symbol 28 TextUses:21Used by:29
Symbol 29 MovieClip {kod_fla.txt2_5}Uses:20 22 23 24 25 26 27 28Used by:Timeline
Symbol 30 GraphicUsed by:Timeline
Symbol 31 GraphicUsed by:59
Symbol 32 TextUses:2Used by:59
Symbol 33 TextUses:2Used by:59
Symbol 34 TextUses:2Used by:59
Symbol 35 TextUses:2Used by:59
Symbol 36 GraphicUsed by:46
Symbol 37 TextUses:2Used by:46
Symbol 38 TextUses:2Used by:46
Symbol 39 TextUses:2Used by:46
Symbol 40 TextUses:2Used by:46
Symbol 41 TextUses:2Used by:46
Symbol 42 TextUses:2Used by:46
Symbol 43 TextUses:2Used by:46
Symbol 44 TextUses:2Used by:46
Symbol 45 TextUses:2Used by:46
Symbol 46 MovieClip {kod_fla.browserText3_7}Uses:36 37 38 39 40 41 42 43 44 45Used by:59
Symbol 47 GraphicUsed by:59
Symbol 48 TextUses:2Used by:59
Symbol 49 TextUses:2Used by:59
Symbol 50 TextUses:2Used by:59
Symbol 51 TextUses:2Used by:59
Symbol 52 BitmapUsed by:54
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:52 53Used by:59
Symbol 55 GraphicUsed by:59
Symbol 56 TextUses:2Used by:59
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:59
Symbol 59 MovieClip {kod_fla.screen3_6}Uses:31 32 33 34 35 46 47 48 49 50 51 54 55 56 58Used by:Timeline
Symbol 60 GraphicUsed by:66
Symbol 61 TextUses:21Used by:66
Symbol 62 TextUses:21Used by:66
Symbol 63 TextUses:21Used by:66
Symbol 64 GraphicUsed by:66
Symbol 65 TextUses:21Used by:66
Symbol 66 MovieClip {kod_fla.txt3_8}Uses:60 61 62 63 64 65Used by:Timeline
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:Timeline
Symbol 69 GraphicUsed by:Timeline
Symbol 70 GraphicUsed by:73 92
Symbol 71 GraphicUsed by:73 92
Symbol 72 GraphicUsed by:73 92
Symbol 73 MovieClipUses:70 71 72Used by:Timeline
Symbol 74 GraphicUsed by:80
Symbol 75 TextUses:21Used by:80
Symbol 76 TextUses:21Used by:80
Symbol 77 TextUses:21Used by:80
Symbol 78 TextUses:21Used by:80
Symbol 79 TextUses:21Used by:80
Symbol 80 MovieClip {kod_fla.txt4_11}Uses:74 75 76 77 78 79Used by:Timeline
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:81Used by:Timeline
Symbol 83 GraphicUsed by:91
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:91
Symbol 86 GraphicUsed by:90
Symbol 87 GraphicUsed by:90
Symbol 88 GraphicUsed by:90
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:86 87 88 89Used by:91
Symbol 91 MovieClipUses:83 85 90Used by:Timeline
Symbol 92 MovieClipUses:70 71 72Used by:Timeline
Symbol 93 GraphicUsed by:Timeline
Symbol 94 GraphicUsed by:107
Symbol 95 GraphicUsed by:107
Symbol 96 GraphicUsed by:107
Symbol 97 GraphicUsed by:107
Symbol 98 GraphicUsed by:107
Symbol 99 GraphicUsed by:107
Symbol 100 GraphicUsed by:107
Symbol 101 GraphicUsed by:107
Symbol 102 GraphicUsed by:107
Symbol 103 GraphicUsed by:107
Symbol 104 GraphicUsed by:107
Symbol 105 GraphicUsed by:107
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClip {kod_fla.hand5_17}Uses:94 95 96 97 98 99 100 101 102 103 104 105 106Used by:Timeline
Symbol 108 GraphicUsed by:110
Symbol 109 TextUses:21Used by:110
Symbol 110 MovieClipUses:108 109Used by:Timeline
Symbol 111 GraphicUsed by:112
Symbol 112 MovieClipUses:111Used by:Timeline
Symbol 113 GraphicUsed by:120
Symbol 114 GraphicUsed by:119
Symbol 115 GraphicUsed by:119
Symbol 116 GraphicUsed by:119
Symbol 117 GraphicUsed by:119
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClip {kod_fla.mouth6_21}Uses:114 115 116 117 118Used by:120
Symbol 120 MovieClipUses:113 119Used by:Timeline
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121Used by:Timeline
Symbol 123 GraphicUsed by:Timeline
Symbol 124 TextUses:21Used by:127
Symbol 125 GraphicUsed by:127
Symbol 126 TextUses:21Used by:127
Symbol 127 MovieClip {kod_fla.txt7_23}Uses:20 124 125 126Used by:Timeline
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:Timeline
Symbol 130 GraphicUsed by:132
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClipUses:130 131Used by:Timeline
Symbol 133 GraphicUsed by:135
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:133 134Used by:Timeline
Symbol 136 GraphicUsed by:Timeline
Symbol 137 GraphicUsed by:139
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:137 138Used by:Timeline
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:140Used by:Timeline
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:142Used by:Timeline
Symbol 144 GraphicUsed by:149
Symbol 145 TextUses:21Used by:149
Symbol 146 GraphicUsed by:149
Symbol 147 TextUses:21Used by:149
Symbol 148 TextUses:21Used by:149
Symbol 149 MovieClip {kod_fla.txt8_30}Uses:144 145 146 147 148Used by:Timeline
Symbol 150 GraphicUsed by:155
Symbol 151 TextUses:21Used by:155
Symbol 152 TextUses:21Used by:155
Symbol 153 TextUses:21Used by:155
Symbol 154 TextUses:21Used by:155
Symbol 155 MovieClipUses:150 151 152 153 154Used by:Timeline
Symbol 156 GraphicUsed by:160
Symbol 157 GraphicUsed by:159
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:157 158Used by:160
Symbol 160 MovieClipUses:156 159Used by:Timeline
Symbol 161 GraphicUsed by:Timeline
Symbol 162 GraphicUsed by:167
Symbol 163 GraphicUsed by:167
Symbol 164 GraphicUsed by:167
Symbol 165 GraphicUsed by:167
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClip {kod_fla.leg9_34}Uses:162 163 164 165 166Used by:Timeline
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:168Used by:Timeline
Symbol 170 GraphicUsed by:193
Symbol 171 TextUses:21Used by:193
Symbol 172 GraphicUsed by:193
Symbol 173 TextUses:21Used by:193
Symbol 174 GraphicUsed by:193
Symbol 175 TextUses:21Used by:193
Symbol 176 GraphicUsed by:193
Symbol 177 TextUses:21Used by:193
Symbol 178 TextUses:21Used by:193
Symbol 179 GraphicUsed by:193
Symbol 180 TextUses:21Used by:193
Symbol 181 GraphicUsed by:193
Symbol 182 TextUses:21Used by:193
Symbol 183 GraphicUsed by:193
Symbol 184 TextUses:21Used by:193
Symbol 185 TextUses:21Used by:193
Symbol 186 GraphicUsed by:193
Symbol 187 TextUses:21Used by:193
Symbol 188 TextUses:21Used by:193
Symbol 189 GraphicUsed by:193
Symbol 190 TextUses:21Used by:193
Symbol 191 GraphicUsed by:193
Symbol 192 TextUses:21Used by:193
Symbol 193 MovieClip {kod_fla.txt9_36}Uses:170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192Used by:Timeline
Symbol 194 TextUses:21Used by:197
Symbol 195 GraphicUsed by:197
Symbol 196 TextUses:21Used by:197
Symbol 197 MovieClip {kod_fla.txt10_37}Uses:20 194 195 196Used by:Timeline
Symbol 198 GraphicUsed by:200
Symbol 199 GraphicUsed by:200
Symbol 200 MovieClip {kod_fla.kelsey10_38}Uses:198 199Used by:Timeline
Symbol 201 GraphicUsed by:203
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClip {kod_fla.illi10_39}Uses:201 202Used by:Timeline
Symbol 204 GraphicUsed by:Timeline
Symbol 205 GraphicUsed by:206
Symbol 206 MovieClipUses:205Used by:240  Timeline
Symbol 207 GraphicUsed by:208
Symbol 208 MovieClipUses:207Used by:Timeline
Symbol 209 TextUses:21Used by:211
Symbol 210 TextUses:21Used by:211
Symbol 211 MovieClip {kod_fla.txt11_42}Uses:209 210Used by:Timeline
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClipUses:212Used by:Timeline
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClipUses:214Used by:Timeline
Symbol 216 TextUses:21Used by:217
Symbol 217 MovieClipUses:216Used by:Timeline
Symbol 218 GraphicUsed by:220 222 224
Symbol 219 TextUses:21Used by:220
Symbol 220 MovieClipUses:218 219Used by:Timeline
Symbol 221 TextUses:21Used by:222
Symbol 222 MovieClipUses:218 221Used by:Timeline
Symbol 223 TextUses:21Used by:224
Symbol 224 MovieClipUses:218 223Used by:Timeline
Symbol 225 GraphicUsed by:227
Symbol 226 TextUses:21Used by:227
Symbol 227 MovieClipUses:225 226Used by:Timeline
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:228Used by:Timeline
Symbol 230 TextUses:21Used by:231
Symbol 231 MovieClipUses:230Used by:Timeline
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClipUses:232Used by:Timeline
Symbol 234 TextUses:21Used by:235
Symbol 235 MovieClipUses:234Used by:Timeline
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:236Used by:Timeline
Symbol 238 TextUses:21Used by:239
Symbol 239 MovieClipUses:238Used by:Timeline
Symbol 240 MovieClipUses:206Used by:Timeline
Symbol 241 GraphicUsed by:Timeline
Symbol 242 TextUses:21Used by:Timeline
Symbol 243 GraphicUsed by:Timeline
Symbol 244 GraphicUsed by:247
Symbol 245 TextUses:21Used by:247
Symbol 246 TextUses:21Used by:247
Symbol 247 MovieClipUses:244 245 246Used by:Timeline

Instance Names

"loaded_txt"Frame 1Symbol 7 EditableText
"loader_mc"Frame 1Symbol 9 MovieClip {movie_mc}
"btnIntroStart"Frame 1Symbol 12 MovieClip {introStartButton}
"leg2"Frame 2Symbol 17 MovieClip
"hand2"Frame 2Symbol 19 MovieClip
"txt2"Frame 2Symbol 29 MovieClip {kod_fla.txt2_5}
"screen3"Frame 3Symbol 59 MovieClip {kod_fla.screen3_6}
"txt3"Frame 3Symbol 66 MovieClip {kod_fla.txt3_8}
"cursor3"Frame 3Symbol 68 MovieClip
"lines4"Frame 4Symbol 73 MovieClip
"txt4"Frame 4Symbol 80 MovieClip {kod_fla.txt4_11}
"head4"Frame 4Symbol 82 MovieClip
"foot4"Frame 4Symbol 91 MovieClip
"lines4b"Frame 4Symbol 92 MovieClip
"hand5"Frame 5Symbol 107 MovieClip {kod_fla.hand5_17}
"txt6"Frame 6Symbol 110 MovieClip
"hand6a"Frame 6Symbol 112 MovieClip
"hand6b"Frame 6Symbol 122 MovieClip
"txt7"Frame 7Symbol 127 MovieClip {kod_fla.txt7_23}
"hand7"Frame 7Symbol 129 MovieClip
"kelseyMouth7"Frame 7Symbol 132 MovieClip
"illiMouth7"Frame 7Symbol 135 MovieClip
"foot8"Frame 8Symbol 139 MovieClip
"string1"Frame 8Symbol 141 MovieClip
"hand8"Frame 8Symbol 143 MovieClip
"txt8"Frame 8Symbol 149 MovieClip {kod_fla.txt8_30}
"laugh8"Frame 8Symbol 155 MovieClip
"kelsey8"Frame 8Symbol 160 MovieClip
"leg9"Frame 9Symbol 167 MovieClip {kod_fla.leg9_34}
"chair9"Frame 9Symbol 169 MovieClip
"txt9"Frame 9Symbol 193 MovieClip {kod_fla.txt9_36}
"txt10"Frame 10Symbol 197 MovieClip {kod_fla.txt10_37}
"kelsey10"Frame 10Symbol 200 MovieClip {kod_fla.kelsey10_38}
"illi10"Frame 10Symbol 203 MovieClip {kod_fla.illi10_39}
"kelseyChair11"Frame 11Symbol 206 MovieClip
"illi11"Frame 11Symbol 208 MovieClip
"txt11"Frame 11Symbol 211 MovieClip {kod_fla.txt11_42}
"windows"Frame 12Symbol 213 MovieClip
"chair12"Frame 12Symbol 206 MovieClip
"txt12"Frame 12Symbol 217 MovieClip
"btnBump"Frame 12Symbol 220 MovieClip
"btnLoop"Frame 12Symbol 222 MovieClip
"btnBlock"Frame 12Symbol 224 MovieClip
"btnStop"Frame 12Symbol 227 MovieClip
"block"Frame 15Symbol 229 MovieClip
"chair15"Frame 15Symbol 206 MovieClip
"txt15"Frame 15Symbol 217 MovieClip
"txt15b"Frame 15Symbol 231 MovieClip
"rotor"Frame 16Symbol 233 MovieClip
"chair16"Frame 16Symbol 206 MovieClip
"txt16"Frame 16Symbol 217 MovieClip
"txt16b"Frame 16Symbol 235 MovieClip
"bumper"Frame 17Symbol 237 MovieClip
"txt17"Frame 17Symbol 217 MovieClip
"txt17b"Frame 17Symbol 239 MovieClip
"chair17"Frame 17Symbol 240 MovieClip
"chair21"Frame 21Symbol 206 MovieClip
"expression"Frame 21Symbol 247 MovieClip
"browserText3"Symbol 59 MovieClip {kod_fla.screen3_6} Frame 1Symbol 46 MovieClip {kod_fla.browserText3_7}
"shoe4"Symbol 91 MovieClip Frame 1Symbol 85 MovieClip
"acid4"Symbol 91 MovieClip Frame 1Symbol 90 MovieClip
"mouth6"Symbol 120 MovieClip Frame 1Symbol 119 MovieClip {kod_fla.mouth6_21}
"expression8"Symbol 160 MovieClip Frame 1Symbol 159 MovieClip
"chair17b"Symbol 240 MovieClip Frame 1Symbol 206 MovieClip

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/33/160585/info.shtml
Created: 21/10 -2018 17:55:33 Last modified: 21/10 -2018 17:55:33 Server time: 02/05 -2024 23:08:49