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

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

Journey of Reemus Chapter 3 - Know the Enemy.swf

This is the info page for
Flash #91710

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


Text
<p align="center"><font face="Blambot FXPro BB" size="24" color="#000000" letterSpacing="0.000000" kerning="1"><b>TEXT</b></font></p>

BACK

BACK

RANKING

n

o

i

s

e

r

g

a

f

h

t

p

c

l

locked

PLAY

continue...

click to

created by
zeebarf

programming by
aaron worrall

music by
mitch bowden

select a scene to replay

restart the game

or

Play more games...

looks like we stepped
right into the middle of
a monster beach party.
i wonder what all the
excitement is about...

a giant mutant gygax and an army of super
death slugs? yes liam, this quest is really
going to put us on the map. we need to get to
the king and secure this thing right now.

on the count of three
we make a run for
that raft, ready?

.

D

E

U

N

I

T

O

C

B

Hmm, that's odd. i just cleared that
ship for a delivery, now it's returning
before even making port?

it looks abandoned?
how is that possible?

Well why don't you drop us off
and then check it out...

sorry, but as a member of the royal
postal service it's my duty to ensure all
shipments arrive on time. so just
sit tight, i'll be right back...

do you think he needs any help?

nah, sometimes
it's best to let the
pros do their job...

um, are you seeing that?
i think he needs our help..

Nah, i'm sure
he's fine...

we better get to the
king before we're
buried in death slugs!

ARE YOU SURE YOU WANT
TO RESET THE LEVEL?

YES

NO

I don't believe it! the prophecy is true! you
have come! the visitor from the sky who will
lead us into battle against the human tyrants!
we put our lives in your mighty hands...

Groopo? Is that you?
I heard a noise...

TINKERTOK

created by zeebarf

programming by aaron worrall

music by mitch bowden

Play more reemus games!

EVERYTHING,
BY EVERYONE.

"KNOW THY ENEMY"

Flash Ad

Place this movieclip wherever you want a
flash ad to load.
Please do not modify the size as you may
see decreases in your ad preformance!
(This clip will be hidden unless an ad loads)

1.4

NEWGROUNDS API CONNECTOR

Place this movieclip on your root timeline.
This clip will automatically hide itself unless neeeded.
(Error messages appear on frames 2 and 3)

NOTICE!

You are not logged in!
As a result, any medals you unlock in this game will NOT
be saved to your profile.

ERROR!

We could not connect to the Newgrounds gateway.
If you are using an ad-blocking application, you may need
to disable it to unlock any medals you earn in this game.

Medal Popup
Place this clip on the root of your movie,
spanning any frames where medals are
called. (this clip is hidden)

Weebl's secret island

MEDAL GET!

100pts

squirrel clip

z

reemus isn't going to like this....

the gygax and death slugs joining forces
to wipe out the human race? that sounds
like the perfect opportunity for us.
if we can find a way to destroy the
death slugs we'll finally be able
to legitimize extermination as a
heroic career choice.

the kingdom of danricus is just across
the river, if we can get there and talk
to the king before anyone else. maybe
we can lay claim to this quest before
any other heroes get involved. but
first things first, let's get out of this
forest...

THIS BUILD IS MEANT FOR BETA TESTING ONLY.
YOU DON'T HAVE TO GO HOME, BUT YOU CAN'T PLAY IT HERE.

ActionScript [AS3]

Section 1
//Character (asfiles.char.Character) package asfiles.char { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.setting.*; import gs.easing.*; public class Character extends MovieClip { private var counter:int;// = 0 public var destination:String; private var queuedSpeech:String;// = "" private var currentPath:Array; public var nope:MovieClip; private var ultimateDest:Point; private var currentDest:Point; public var spriteIn:MovieClip; public var frameLabels:Array; private var frameActions:Array; private var currentStep:Point; private var animationQueue:Array; public var triedRelocate:Boolean;// = false public static const RETURN_IDLE:String = "returnIdle"; public static const REEMUS_HEIGHT:Number = 265; public static const MOVING:String = "moving"; public static const PATH_COMPLETE:String = "pathComplete"; public static const LIAM_HEIGHT:Number = 150; public static var heldItemReemus:int = 0; public static var liam:Liam; public static var liamSettingId:String; public static var reemusSettingId:String; public static var heldItemLiam:int = 0; public static var reemus:Reemus; public function Character(){ var _local1:int; triedRelocate = false; counter = 0; queuedSpeech = ""; super(); gotoAndStop(2); TweenLite.delayedCall(0.05, init, []); frameLabels = new Array(); _local1 = 0; while (_local1 < currentLabels.length) { frameLabels.push(currentLabels[_local1].name); _local1++; }; mouseChildren = false; mouseEnabled = false; } public function say(_arg1:String, _arg2:Object=null):void{ var _local3:SpeechEvent; _local3 = new SpeechEvent(_arg1, _arg2); queuedSpeech = ""; _local3.origin = this; dispatchEvent(_local3); } protected function init():void{ animationQueue = new Array(); frameActions = new Array(); currentPath = new Array(); ultimateDest = new Point(point.x, point.y); goto("waiting"); addEventListener(Event.ENTER_FRAME, update); } public function dislodge():void{ var _local1:int; if (((MovieClip(setting).bounds) && (!(MovieClip(setting).bounds.hitTestPoint(this.x, this.y, true))))){ _local1 = 0; while (_local1 < 150) { if (MovieClip(setting).bounds.hitTestPoint(((this.x + MovieClip(setting).x) - _local1), this.y, true)){ this.x = (this.x - _local1); return; }; if (MovieClip(setting).bounds.hitTestPoint(((this.x + MovieClip(setting).x) + _local1), this.y, true)){ this.x = (this.x + _local1); return; }; if (MovieClip(setting).bounds.hitTestPoint((this.x + MovieClip(setting).x), (this.y - _local1), true)){ this.y = (this.y - _local1); return; }; if (MovieClip(setting).bounds.hitTestPoint((this.x + MovieClip(setting).x), (this.y + _local1), true)){ this.y = (this.y + _local1); return; }; _local1 = (_local1 + 15); }; }; } protected function triggerFrameAction(_arg1:Object):void{ if (_arg1.param == null){ _arg1.func(); } else { _arg1.func(_arg1.param); }; } public function queueSprite(_arg1:Object, _arg2:Boolean=true):void{ if (_arg2){ animationQueue = [_arg1]; } else { animationQueue.push(_arg1); }; } public function halt():void{ TweenLite.killTweensOf(this); if ((((currentPath.length > 0)) || (!(Setting.identicalPoints(point, ultimateDest))))){ currentPath = []; currentDest = point; ultimateDest = point; goto("bounce"); queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); }; } public function get setting():Setting{ return (Setting(parent)); } public function shush():void{ if (((spriteIn) && (spriteIn.mouth))){ spriteIn.mouth.gotoAndStop(1); }; } public function goto(_arg1:String, _arg2:int=1, _arg3:Boolean=true):void{ var _local4:Function; frameActions = []; if ((((heldItem > 0)) && ((frameLabels.indexOf((_arg1 + "_held")) >= 0)))){ gotoAndStop((_arg1 + "_held")); } else { gotoAndStop(_arg1); }; if (spriteIn){ _local4 = (_arg3) ? spriteIn.gotoAndPlay : spriteIn.gotoAndStop; _local4(_arg2); }; if (_arg1 == "waiting"){ TweenLite.delayedCall(0.1, dispatchEvent, [new Event(RETURN_IDLE)]); }; } public function queueSpeech(_arg1:String):void{ queuedSpeech = _arg1; } protected function finalizePath():void{ currentPath = []; currentDest = point; ultimateDest = point; goto("bounce"); queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(PATH_COMPLETE)); } public function get properName():String{ return (((this is Reemus)) ? "Reemus" : "Liam"); } public function get point():Point{ return (new Point(Math.round(x), Math.round(y))); } public function walkPath(_arg1:Array, _arg2:String):void{ animationQueue = []; destination = _arg2; currentPath = _arg1; currentPath.shift(); ultimateDest = currentPath[(currentPath.length - 1)]; currentDest = currentPath.shift(); otherCharacter.triedRelocate = false; this.spriteIn.play(); walkNext(currentDest); } public function addFrameAction(_arg1:int, _arg2:Function, _arg3:Object=null):void{ frameActions.push({frm:_arg1, func:_arg2, param:_arg3}); } protected function walkNext(_arg1:Point):void{ var _local2:Number; var _local3:Number; var _local4:Number; dislodge(); _local2 = Math.abs((x - _arg1.x)); _local3 = Math.abs((y - _arg1.y)); _local4 = Math.sqrt((Math.pow(_local2, 2) + Math.pow(_local3, 2))); if (_local2 > _local3){ this.goto("walkingSide"); } else { this.goto(((_arg1.y > y)) ? "walkingFront" : "walkingBack", 1, false); }; this.scaleX = ((_arg1.x > x)) ? Math.abs(scaleX) : -(Math.abs(scaleX)); currentStep = Setting.getSteps((x - _arg1.x), (y - _arg1.y)); TweenLite.killTweensOf(this); TweenLite.to(this, (_local4 / 170), {x:_arg1.x, y:_arg1.y, ease:Linear.easeNone, onComplete:reachPoint}); } public function get dest():String{ return (destination); } public function getOuttaTheWay(_arg1:Character):void{ var _local2:Number; var _local3:Number; var _local4:Array; var _local5:int; if ((((currentFrame > 20)) || (!(visible)))){ return; }; _local2 = ((point.x - _arg1.point.x) * 1.5); _local3 = ((point.y - _arg1.point.y) * 1.5); _local4 = [new Point((point.x + _local2), (point.y - _local3)), new Point((point.x - _local2), (point.y - _local3)), new Point((point.x - _local2), (point.y + _local3)), new Point((point.x - 100), point.y), new Point((point.x + 100), point.y), new Point((point.x + _local2), (point.y + _local3))]; _local5 = 0; while (_local5 < _local4.length) { if (((Setting.onScreen(_local4[_local5])) && (setting.unobstructed(point, _local4[_local5])))){ triedRelocate = true; this.walkPath([point, _local4[_local5]], ""); return; }; _local5++; }; } protected function update(_arg1:Event):void{ var _local2:Object; var _local3:int; counter = ((counter + 1) % 100); if (spriteIn){ if (spriteIn.currentFrame == spriteIn.totalFrames){ if (animationQueue.length > 0){ _local2 = animationQueue.shift(); goto(_local2.sprite, _local2.frm, _local2.andPlay); if ((((_local2.sprite == "waiting")) && ((setting.activeCharacter == this)))){ dispatchEvent(new Event(Setting.HIDE_CATCHER)); if (queuedSpeech.length > 0){ say(queuedSpeech); }; }; }; } else { _local3 = 0; while (_local3 < frameActions.length) { if (spriteIn.currentFrame == frameActions[_local3].frm){ triggerFrameAction(frameActions[_local3]); }; _local3++; }; }; }; if (((!((currentDest == null))) && (!(Setting.identicalPoints(point, ultimateDest))))){ if ((counter % 3) == 0){ dispatchEvent(new Event(MOVING)); } else { if ((counter % 5) == 0){ if (((((((((((!(otherCharacter.triedRelocate)) && ((otherCharacter.setting == setting)))) && ((setting.activeCharacter == this)))) && (parent))) && ((parent.toString().indexOf("TempleMiddle") < 0)))) && ((Setting.pointDistance(ultimateDest, otherCharacter.point) < 60)))){ otherCharacter.getOuttaTheWay(this); }; }; }; }; } public function set heldItem(_arg1:int):void{ if ((this is Reemus)){ heldItemReemus = _arg1; } else { heldItemLiam = _arg1; }; } protected function reachPoint():void{ if (currentPath.length > 0){ walkNext(currentPath.shift()); } else { finalizePath(); }; } public function get heldItem():int{ return (((this is Reemus)) ? heldItemReemus : heldItemLiam); } public function get otherCharacter():Character{ if ((this is Reemus)){ return (liam); }; return (reemus); } } }//package asfiles.char
Section 2
//HeldItemLiam (asfiles.char.HeldItemLiam) package asfiles.char { import flash.display.*; public class HeldItemLiam extends MovieClip { public function HeldItemLiam(){ gotoAndStop(Character.heldItemLiam); } } }//package asfiles.char
Section 3
//HeldItemReemus (asfiles.char.HeldItemReemus) package asfiles.char { import flash.display.*; public class HeldItemReemus extends MovieClip { public function HeldItemReemus(){ gotoAndStop(Character.heldItemReemus); } } }//package asfiles.char
Section 4
//IconSelect (asfiles.char.IconSelect) package asfiles.char { import flash.events.*; import flash.display.*; public class IconSelect extends MovieClip { public var reemusIcon:MovieClip; public var reemustalk:MovieClip; public var liamIcon:MovieClip; public static const SELECT_LIAM:String = "selectLiam"; public static const HIDE_ICON_SELECT:String = "hideIconSelect"; public static const SELECT_REEMUS:String = "selectReemus"; public function IconSelect(){ addFrameScript(18, frame19); liamIcon.stop(); reemusIcon.stop(); addEventListener(Event.ENTER_FRAME, onIconFrame); } private function killFunctionality():void{ liamIcon.removeEventListener(MouseEvent.CLICK, onClickLiamIcon); liamIcon.buttonMode = false; reemusIcon.removeEventListener(MouseEvent.CLICK, onClickReemusIcon); reemusIcon.buttonMode = false; } private function onRolloverIcon(_arg1:Event):void{ MovieClip(_arg1.currentTarget).gotoAndStop(2); } private function onRolloutIcon(_arg1:Event):void{ MovieClip(_arg1.currentTarget).gotoAndStop(1); } private function onIconFrame(_arg1:Event):void{ if (currentFrame == 19){ liamIcon.buttonMode = true; liamIcon.addEventListener(MouseEvent.CLICK, onClickLiamIcon); liamIcon.addEventListener(MouseEvent.ROLL_OVER, onRolloverIcon); liamIcon.addEventListener(MouseEvent.ROLL_OUT, onRolloutIcon); reemusIcon.buttonMode = true; reemusIcon.addEventListener(MouseEvent.CLICK, onClickReemusIcon); reemusIcon.addEventListener(MouseEvent.ROLL_OVER, onRolloverIcon); reemusIcon.addEventListener(MouseEvent.ROLL_OUT, onRolloutIcon); } else { if ((((currentFrame == 80)) || ((currentFrame == 141)))){ dispatchEvent(new Event(HIDE_ICON_SELECT)); stop(); }; }; } private function onClickLiamIcon(_arg1:Event):void{ killFunctionality(); gotoAndPlay(81); dispatchEvent(new Event(SELECT_LIAM)); } function frame19(){ stop(); } private function onClickReemusIcon(_arg1:Event):void{ killFunctionality(); gotoAndPlay(20); dispatchEvent(new Event(SELECT_REEMUS)); } } }//package asfiles.char
Section 5
//Portrait (asfiles.char.Portrait) package asfiles.char { import flash.events.*; import flash.display.*; import gs.*; public class Portrait extends MovieClip { public var reemustalk:MovieClip; private static const NUM_GEMS:int = 6; public static const SWITCH_CHARACTER:String = "switchCharacter"; public function Portrait(){ stop(); visible = false; buttonMode = true; addEventListener(MouseEvent.CLICK, onClickPortrait); } private function onClickPortrait(_arg1:Event):void{ dispatchEvent(new Event(SWITCH_CHARACTER)); } public function show(_arg1:Boolean):void{ if (!_arg1){ visible = false; } else { if (!visible){ visible = true; TweenLite.to(this, 0, {tint:0xFFFFFF}); TweenLite.to(this, 1, {tint:null}); }; }; } } }//package asfiles.char
Section 6
//SpeechBubble (asfiles.char.SpeechBubble) package asfiles.char { import flash.display.*; import flash.text.*; public class SpeechBubble extends MovieClip { private var flippedH:Boolean;// = false public var label:TextField; public var bubble:MovieClip; public static const STD_WIDTH:Number = 250; public static const STD_HEIGHT:Number = 15; public function SpeechBubble(_arg1:String, _arg2:Number=250){ flippedH = false; super(); label.text = _arg1.toUpperCase(); label.width = _arg2; label.height = (label.textHeight + 10); bubble.width = (_arg2 + 20); bubble.height = (STD_HEIGHT + label.textHeight); label.x = (-(bubble.width) + 50); label.y = (-(label.textHeight) - 11); label.mouseEnabled = false; mouseChildren = false; mouseEnabled = false; } private function flipHorizontal():void{ if (!flippedH){ flippedH = true; scaleX = -(Math.abs(scaleX)); label.scaleX = -(Math.abs(scaleX)); label.x = (label.x + label.width); }; } public function assessOrientation():void{ if (x < bubble.width){ flipHorizontal(); }; y = Math.max(height, y); } } }//package asfiles.char
Section 7
//SpeechEvent (asfiles.char.SpeechEvent) package asfiles.char { import flash.events.*; public class SpeechEvent extends Event { public var speech:String; public var params:Object; public var origin; public static const SILENCE:String = "silence"; public static const SPEAK:String = "speak"; public function SpeechEvent(_arg1:String, _arg2:Object=null):void{ super(SPEAK); speech = _arg1; params = ((_arg2 == null)) ? new Object() : _arg2; } } }//package asfiles.char
Section 8
//Bee (asfiles.setting.features.Bee) package asfiles.setting.features { import flash.display.*; import flash.geom.*; import asfiles.*; public class Bee extends MovieClip { private static var currentParent:MovieClip; private static var snagged:Array; private static var beeNames:Array; private static var grabbable:Array; public static var docile:Boolean = false; public static var allBees:Array; private static var beePoints:Array; public function Bee(){ var _local1:int; super(); addFrameScript(0, frame1, 8, frame9); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; if (!allBees){ allBees = new Array(); beeNames = new Array(); grabbable = new Array(); snagged = new Array(); beePoints = new Array(new Point(525, 423), new Point(540, 403), new Point(415, 390), new Point(385, 345)); }; currentParent = MovieClip(this.parent); if (allBees.indexOf(this) < 0){ if (beeNames.indexOf(this.name) < 0){ if (this.name.indexOf("bee") == 0){ grabbable.push(this.name); }; beeNames.push(this.name); allBees.push(this); } else { _local1 = 0; while (_local1 < allBees.length) { if (allBees[_local1].name == this.name){ allBees[_local1] = this; }; _local1++; }; }; }; gotoAndStop((Bee.docile) ? 9 : 1); if (snagged.indexOf(this.name) >= 0){ visible = false; return; }; } function frame1(){ stop(); } function frame9(){ stop(); } public static function relaxAllBees(_arg1:Boolean=true):void{ var _local2:int; _local2 = 0; while (_local2 < allBees.length) { if (((((!(docile)) && (_arg1))) && (!((allBees[_local2].currentFrame == 9))))){ allBees[_local2].gotoAndPlay(2); } else { if (((((docile) && (!(_arg1)))) && (!((allBees[_local2].currentFrame == 1))))){ allBees[_local2].gotoAndPlay(10); }; }; _local2++; }; docile = _arg1; } public static function reset():void{ allBees = null; beeNames = null; grabbable = null; snagged = null; docile = false; currentParent = null; } public static function nextGrabbable():MovieClip{ if (grabbable.length > 0){ return (MovieClip(currentParent.getChildByName(grabbable[0]))); }; return (null); } public static function removeGrabbed():void{ var _local1:MovieClip; if (grabbable.length > 0){ _local1 = MovieClip(currentParent.getChildByName(grabbable.splice(0, 1)[0])); snagged.push(_local1.name); _local1.parent.removeChild(_local1); }; } public static function nextPoint():Point{ return (beePoints[snagged.length]); } } }//package asfiles.setting.features
Section 9
//Carriage (asfiles.setting.features.Carriage) package asfiles.setting.features { import flash.display.*; import flash.geom.*; import asfiles.*; public class Carriage extends MovieClip { public var seat:MovieClip; private var beePoints:Array; public var liam:MovieClip; private var beeIndex:int;// = 0 private var allBees:Array; public var bee1:MovieClip; public var bee3:MovieClip; public var bee4:MovieClip; public var bee2:MovieClip; public function Carriage(){ var _local1:int; beeIndex = 0; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; liam.visible = false; seat.visible = false; allBees = [bee1, bee2, bee3, bee4]; _local1 = 0; while (_local1 < allBees.length) { allBees[_local1].visible = false; _local1++; }; beePoints = [new Point(330, 526), new Point(367, 513), new Point(455, 497), new Point(470, 497)]; } public function hasAllBees():Boolean{ return ((beeIndex >= 4)); } public function allReady():Boolean{ return ((((currentFrame == 2)) || (((hasAllBees()) && (seat.visible))))); } public function addNextBee():void{ allBees[beeIndex].visible = true; beeIndex++; } public function getNextBeePoint():Point{ return (beePoints[beeIndex]); } } }//package asfiles.setting.features
Section 10
//PaintStatue (asfiles.setting.features.PaintStatue) package asfiles.setting.features { import flash.events.*; import flash.display.*; import gs.*; import asfiles.*; import com.relish.managers.*; public class PaintStatue extends MovieClip { private var currentDrain:MovieClip; public var midFill:MovieClip; public var bottomFill:MovieClip; private var fillQueue:Array; public var topFill:MovieClip; public var midDrain:MovieClip; public var lastCombo:String; public var bottomDrain:MovieClip; public var topDrain:MovieClip; private var currentFill:MovieClip; private var drainQueue:Array; public static const FINISHED:String = "finished"; public function PaintStatue(){ addFrameScript(0, frame1, 1, frame2, 9, frame10, 18, frame19, 19, frame20, 31, frame32); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; topFill.gotoAndStop(topFill.totalFrames); midFill.gotoAndStop(midFill.totalFrames); bottomFill.gotoAndStop(bottomFill.totalFrames); topDrain.gotoAndStop(topDrain.totalFrames); midDrain.gotoAndStop(midDrain.totalFrames); bottomDrain.gotoAndStop(bottomDrain.totalFrames); } public function drain():void{ fillQueue = new Array(); drainQueue = new Array(); lastCombo = ""; play(); if (topFill.currentFrame != topFill.totalFrames){ fillQueue.push(topFill); drainQueue.push(topDrain); lastCombo = (lastCombo + String(topFill.currentFrame)); }; if (midFill.currentFrame != midFill.totalFrames){ fillQueue.push(midFill); drainQueue.push(midDrain); lastCombo = (lastCombo + String(midFill.currentFrame)); }; if (bottomFill.currentFrame != bottomFill.totalFrames){ fillQueue.push(bottomFill); drainQueue.push(bottomDrain); lastCombo = (lastCombo + String(bottomFill.currentFrame)); }; if (drainQueue.length > 0){ currentFill = fillQueue.shift(); currentDrain = drainQueue.shift(); TweenLite.delayedCall(1, currentDrain.gotoAndStop, [currentFill.currentFrame]); TweenLite.delayedCall(1, currentFill.gotoAndStop, [currentFill.totalFrames]); TweenLite.delayedCall(1, AudioManager.playSoundFromLibrary, ["PourSound"]); }; TweenLite.delayedCall(1, addEventListener, [Event.ENTER_FRAME, continueDrain]); } function frame10(){ AudioManager.playSoundFromLibrary("Tomb3Sound"); } function frame1(){ stop(); } function frame19(){ if (currentFrame == 19){ stop(); }; } function frame20(){ AudioManager.playSoundFromLibrary("Tomb3Sound"); } private function continueDrain(_arg1:Event):void{ if (((!(currentDrain)) && ((currentFrame == 19)))){ removeEventListener(Event.ENTER_FRAME, continueDrain); gotoAndPlay(20); dispatchEvent(new Event(FINISHED)); } else { if (((currentDrain) && (currentDrain.inner))){ if (currentDrain.inner.currentFrame < currentDrain.inner.totalFrames){ currentDrain.inner.play(); } else { if (drainQueue.length > 0){ currentDrain = drainQueue.shift(); currentFill = fillQueue.shift(); currentDrain.gotoAndStop(currentFill.currentFrame); currentFill.gotoAndStop(currentFill.totalFrames); } else { removeEventListener(Event.ENTER_FRAME, continueDrain); play(); dispatchEvent(new Event(FINISHED)); }; }; }; }; } function frame2(){ } function frame32(){ AudioManager.playSoundFromLibrary("BurpSound"); } } }//package asfiles.setting.features
Section 11
//Tinkertok (asfiles.setting.features.Tinkertok) package asfiles.setting.features { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; import asfiles.setting.*; import com.relish.managers.*; public class Tinkertok extends MovieClip { private var firstAppearance:Boolean;// = true public var setting:MovieClip; public var flagRef:MovieClip; public function Tinkertok(){ firstAppearance = true; super(); addFrameScript(47, frame48); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; addEventListener(Event.ENTER_FRAME, mainLoop); } public function destroy():void{ removeEventListener(Event.ENTER_FRAME, mainLoop); } private function returnControl():void{ Main.lockCatcher = false; setting.dispatchEvent(new Event(Setting.HIDE_CATCHER)); setting.dispatchEvent(new Event(Main.SHOW_PORTRAIT)); setting.dispatchEvent(new Event(Setting.SHOW_LEFT)); gotoAndStop(93); } private function get correctSolution():Boolean{ return (((flagRef.circle.visible) && (!(flagRef.splatter.visible)))); } private function rant():void{ var _local1:String; var _local2:SpeechEvent; var _local3:Object; _local3 = {point:new Point(581, 204)}; if (firstAppearance){ gotoAndStop(70); firstAppearance = false; setting.processSpeechTree("tinkertok_intro", "endTinkerDialogue"); } else { if (correctSolution){ gotoAndPlay(224); return; }; if (((flagRef.flag.visible) && ((flagRef.flag.currentFrame == 1)))){ _local2 = new SpeechEvent("WHO KEEPS LEAVING THEIR LAUNDRY ON MY ROCK! ARGH! IF I EVER CATCH YOU PERRIWINKLE, IT’S WAR!", _local3); setting.dispatchEvent(_local2); setting.endSpeechFunction = "tinkerTug"; } else { if (flagRef.splatter.visible){ _local2 = new SpeechEvent("ARGH! IF I EVER HAVE PROOF THAT IT’S YOU DOING THIS GRAFFITI, PERRIWINKLE, IT’S GOING TO BE WAR!", _local3); setting.dispatchEvent(_local2); setting.endSpeechFunction = "tinkerTug"; } else { _local2 = new SpeechEvent("Quit playing around, and get off my property!", _local3); setting.dispatchEvent(_local2); setting.endSpeechFunction = "endTinkerDialogue"; }; }; gotoAndStop(70); }; } function frame48(){ AudioManager.playSoundFromLibrary("CartoonZipSound"); } private function mainLoop(_arg1:Event):void{ var _local2:SpeechEvent; if (currentFrame == 69){ rant(); } else { if ((((((currentFrame == 92)) || ((currentFrame == 211)))) || ((currentFrame == 451)))){ returnControl(); } else { if (currentFrame == 137){ if (!(((flagRef.flag.currentFrame == 1)) && (flagRef.flag.visible))){ gotoAndPlay(361); }; } else { if (currentFrame == 163){ if (flagRef.splatter.visible){ gotoAndPlay(361); }; } else { if (currentFrame == 370){ TweenLite.to(flagRef.splatter, 1, {autoAlpha:0}); TweenLite.to(flagRef.overSplatter, 1, {autoAlpha:0}); TweenLite.to(flagRef.circle, 1, {autoAlpha:0}); } else { if ((((currentFrame == 145)) || ((currentFrame == 263)))){ if (flagRef.flag.visible){ flagRef.flag.gotoAndPlay(2); flagRef.mouseEnabled = true; flagRef.overSplatter.alpha = 0; flagRef.overSplatter.visible = false; }; } else { if (currentFrame == 295){ gotoAndStop(296); _local2 = new SpeechEvent("WHAT? THE OFFICIAL EMBLEM OF PERRIWINKLE! ON MY ROCK! THAT DOES IT, IT’S WAR!", {point:new Point(198, 276)}); setting.dispatchEvent(_local2); setting.endSpeechFunction = "startWar"; } else { if (currentFrame == 314){ gotoAndStop(315); }; }; }; }; }; }; }; }; } } }//package asfiles.setting.features
Section 12
//Vase (asfiles.setting.features.Vase) package asfiles.setting.features { import flash.display.*; import asfiles.*; public class Vase extends MovieClip { public static var filled:Boolean = false; public static var color:int = 0; public static var pouring:Boolean = false; public static var pourColor:int = 0; public function Vase(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; if (color <= 0){ gotoAndStop(10); } else { if (pouring){ gotoAndStop((20 + pourColor)); color = 0; pouring = false; filled = false; } else { if (filled){ gotoAndStop((10 + color)); } else { filled = true; gotoAndStop(color); }; }; }; } } }//package asfiles.setting.features
Section 13
//GenusPegPuzzle (asfiles.setting.overlay.GenusPegPuzzle) package asfiles.setting.overlay { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.setting.*; public class GenusPegPuzzle extends MovieClip { public var solved:Boolean;// = false private var draggedPeg:MovieClip; public var plug10:MovieClip; public var plug11:MovieClip; public var plug13:MovieClip; public var plug14:MovieClip; public var plug15:MovieClip; public var plug16:MovieClip; public var plug17:MovieClip; public var plug18:MovieClip; public var plug12:MovieClip; private var originalPoint:Point; private var placements:Array; public var plug1:MovieClip; public var plug3:MovieClip; public var plug5:MovieClip; public var plug7:MovieClip; public var plug2:MovieClip; public var plug4:MovieClip; public var plug6:MovieClip; public var plug8:MovieClip; public var plug9:MovieClip; private var birthPoints:Array; private var allHoles:Array; public var hole10:MovieClip; public var hole11:MovieClip; public var hole12:MovieClip; public var hole13:MovieClip; public var hole14:MovieClip; public var hole15:MovieClip; public var hole16:MovieClip; public var hole17:MovieClip; public var hole18:MovieClip; private var allPegs:Array; public var hole1:MovieClip; public var hole2:MovieClip; public var hole3:MovieClip; public var hole5:MovieClip; public var hole6:MovieClip; public var hole7:MovieClip; public var hole8:MovieClip; public var hole9:MovieClip; public var hole4:MovieClip; public function GenusPegPuzzle(){ var _local1:int; solved = false; super(); birthPoints = new Array(); allHoles = new Array(); allPegs = new Array(); placements = new Array(); _local1 = 1; while (_local1 <= 18) { allPegs.push(this.getChildByName(("plug" + String(_local1)))); allHoles.push(this.getChildByName(("hole" + String(_local1)))); placements.push(null); birthPoints.push(new Point(allPegs[(_local1 - 1)].x, allPegs[(_local1 - 1)].y)); allPegs[(_local1 - 1)].gotoAndStop(_local1); allPegs[(_local1 - 1)].buttonMode = true; allPegs[(_local1 - 1)].addEventListener(MouseEvent.MOUSE_DOWN, onStartDrag); allHoles[(_local1 - 1)].gotoAndStop(19); allHoles[(_local1 - 1)].buttonMode = true; allHoles[(_local1 - 1)].mouseEnabled = false; allHoles[(_local1 - 1)].mouseChildren = false; allHoles[(_local1 - 1)].addEventListener(MouseEvent.MOUSE_DOWN, onRestartDrag); _local1++; }; addEventListener(MouseEvent.MOUSE_UP, onReleaseDrag); } private function onDragPeg(_arg1:Event):void{ if (draggedPeg){ draggedPeg.x = mouseX; draggedPeg.y = mouseY; }; } private function onReleaseDrag(_arg1:Event):void{ var _local2:Boolean; var _local3:String; var _local4:String; var _local5:int; _local2 = false; if (draggedPeg){ _local4 = draggedPeg.name.substring(4, draggedPeg.name.length); _local5 = 0; while (_local5 < allHoles.length) { _local3 = allPegs[_local5].name.substring(4, allPegs[_local5].name.length); if ((((allHoles[_local5].currentFrame == 19)) && (allHoles[_local5].hitTestPoint(draggedPeg.x, draggedPeg.y, true)))){ placements[_local5] = draggedPeg; allHoles[_local5].gotoAndStop(_local4); allHoles[_local5].mouseEnabled = true; _local2 = true; checkSolution(); break; }; _local5++; }; if (_local2){ draggedPeg.visible = false; } else { draggedPeg.x = originalPoint.x; draggedPeg.y = originalPoint.y; }; draggedPeg = null; }; } private function onRestartDrag(_arg1:Event):void{ draggedPeg = placements[allHoles.indexOf(_arg1.currentTarget)]; draggedPeg.x = mouseX; draggedPeg.y = mouseY; draggedPeg.visible = true; originalPoint = birthPoints[allPegs.indexOf(draggedPeg)]; placements[allHoles.indexOf(_arg1.currentTarget)] = null; MovieClip(_arg1.currentTarget).gotoAndStop(19); MovieClip(_arg1.currentTarget).mouseEnabled = false; addEventListener(Event.ENTER_FRAME, onDragPeg); } private function lockHole(_arg1:MovieClip):void{ _arg1.circle.gotoAndStop(2); } private function checkSolution():void{ var _local1:int; var _local2:Array; var _local3:Array; var _local4:Boolean; var _local5:int; var _local6:int; _local4 = false; _local5 = 0; while (_local5 < 6) { _local1 = (_local5 * 3); _local2 = []; _local6 = 0; while (_local6 < 3) { _local2.push(Math.floor(((allHoles[(_local1 + _local6)].currentFrame - 1) / 3))); _local6++; }; if (((!((_local2[0] == _local2[1]))) || (!((_local2[1] == _local2[2]))))){ _local4 = true; } else { _local6 = 0; while (_local6 < 3) { allHoles[(_local1 + _local6)].mouseEnabled = false; allHoles[(_local1 + _local6)].mouseChildren = false; allHoles[(_local1 + _local6)].alpha = 0.8; _local6++; }; }; _local5++; }; if (((_local4) || ((placements.indexOf(null) >= 0)))){ return; }; mouseChildren = false; solved = true; TweenLite.delayedCall(2, dispatchEvent, [new Event(Setting.HIDE_OVERLAY)]); } private function onRolloverBack(_arg1:Event):void{ MovieClip(_arg1.currentTarget).gotoAndStop(2); } private function onRolloutBack(_arg1:Event):void{ MovieClip(_arg1.currentTarget).gotoAndStop(1); } private function onClickBack(_arg1:Event):void{ dispatchEvent(new Event(Setting.HIDE_OVERLAY)); } private function onStartDrag(_arg1:Event):void{ draggedPeg = MovieClip(_arg1.currentTarget); originalPoint = new Point(draggedPeg.x, draggedPeg.y); addEventListener(Event.ENTER_FRAME, onDragPeg); } } }//package asfiles.setting.overlay
Section 14
//PegPuzzle (asfiles.setting.overlay.PegPuzzle) package asfiles.setting.overlay { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.setting.*; public class PegPuzzle extends MovieClip { public var hole_snake:MovieClip; public var peg_plant:MovieClip; public var hole_plant:MovieClip; private var placements:Array; public var solved:Boolean;// = false public var peg_mouse:MovieClip; private var originalPoint:Point; public var peg_carrot:MovieClip; public var hole_mouse:MovieClip; private var myPegs:Array; private var draggedPeg:MovieClip; public var hole_rabbit:MovieClip; private var allHoles:Array; private var birthPoints:Array; public var hole_owl:MovieClip; public var peg_frog:MovieClip; public var hole_frog:MovieClip; public var peg_snake:MovieClip; public var peg_owl:MovieClip; public var hole_carrot:MovieClip; public var peg_rabbit:MovieClip; private var allPegs:Array; public var backButton:MovieClip; public function PegPuzzle(){ var _local1:int; solved = false; super(); birthPoints = new Array(); allPegs = [peg_owl, peg_mouse, peg_snake, peg_frog, peg_rabbit, peg_plant, peg_carrot]; allHoles = [hole_owl, hole_mouse, hole_snake, hole_frog, hole_rabbit, hole_plant, hole_carrot]; placements = [null, null, null, null, null, null, null]; _local1 = 0; while (_local1 < allPegs.length) { allPegs[_local1].gotoAndStop(allPegs[_local1].name.substring(4, allPegs[_local1].name.length)); allPegs[_local1].buttonMode = true; allPegs[_local1].addEventListener(MouseEvent.MOUSE_DOWN, onStartDrag); allHoles[_local1].stop(); allHoles[_local1].buttonMode = true; allHoles[_local1].mouseEnabled = false; allHoles[_local1].mouseChildren = false; allHoles[_local1].addEventListener(MouseEvent.MOUSE_DOWN, onRestartDrag); birthPoints.push(new Point(allPegs[_local1].x, allPegs[_local1].y)); _local1++; }; backButton.gotoAndStop(1); backButton.buttonMode = true; backButton.addEventListener(MouseEvent.ROLL_OVER, onRolloverBack); backButton.addEventListener(MouseEvent.ROLL_OUT, onRolloutBack); backButton.addEventListener(MouseEvent.CLICK, onClickBack); addEventListener(MouseEvent.MOUSE_UP, onReleaseDrag); } private function onDragPeg(_arg1:Event):void{ if (draggedPeg){ draggedPeg.x = mouseX; draggedPeg.y = mouseY; }; } private function onReleaseDrag(_arg1:Event):void{ var _local2:Boolean; var _local3:String; var _local4:String; var _local5:int; _local2 = false; if (draggedPeg){ _local4 = draggedPeg.name.substring(4, draggedPeg.name.length); _local5 = 0; while (_local5 < allHoles.length) { _local3 = allPegs[_local5].name.substring(4, allPegs[_local5].name.length); if ((((allHoles[_local5].currentFrame == 1)) && (allHoles[_local5].hitTestPoint(draggedPeg.x, draggedPeg.y, true)))){ placements[_local5] = draggedPeg; allHoles[_local5].gotoAndStop(_local4); allHoles[_local5].mouseEnabled = true; _local2 = true; checkSolution(); break; }; _local5++; }; if (_local2){ draggedPeg.visible = false; } else { draggedPeg.x = originalPoint.x; draggedPeg.y = originalPoint.y; }; draggedPeg = null; }; } private function onClickBack(_arg1:Event):void{ dispatchEvent(new Event(Setting.HIDE_OVERLAY)); } private function onRestartDrag(_arg1:Event):void{ draggedPeg = placements[allHoles.indexOf(_arg1.currentTarget)]; draggedPeg.x = mouseX; draggedPeg.y = mouseY; draggedPeg.visible = true; originalPoint = birthPoints[allPegs.indexOf(draggedPeg)]; placements[allHoles.indexOf(_arg1.currentTarget)] = null; MovieClip(_arg1.currentTarget).gotoAndStop(1); MovieClip(_arg1.currentTarget).mouseEnabled = false; addEventListener(Event.ENTER_FRAME, onDragPeg); } private function onStartDrag(_arg1:Event):void{ draggedPeg = MovieClip(_arg1.currentTarget); originalPoint = new Point(draggedPeg.x, draggedPeg.y); addEventListener(Event.ENTER_FRAME, onDragPeg); } private function checkSolution():void{ var _local1:Boolean; var _local2:Array; var _local3:Boolean; var _local4:Boolean; var _local5:Boolean; _local2 = new Array(); trace("checkSolution"); if (placements.indexOf(null) >= 0){ return; }; _local2[allHoles[0].currentLabel] = ((allHoles[2].currentLabel + ",") + allHoles[4].currentLabel); _local2[allHoles[2].currentLabel] = ((allHoles[1].currentLabel + ",") + allHoles[3].currentLabel); _local2[allHoles[4].currentLabel] = ((allHoles[5].currentLabel + ",") + allHoles[6].currentLabel); _local3 = ((((!((_local2["owl"] == undefined))) && ((_local2["owl"].indexOf("rabbit") >= 0)))) && ((_local2["owl"].indexOf("snake") >= 0))); _local4 = ((((!((_local2["snake"] == undefined))) && ((_local2["snake"].indexOf("frog") >= 0)))) && ((_local2["snake"].indexOf("mouse") >= 0))); _local5 = ((((!((_local2["rabbit"] == undefined))) && ((_local2["rabbit"].indexOf("plant") >= 0)))) && ((_local2["rabbit"].indexOf("carrot") >= 0))); trace(((((_local3 + ", ") + _local4) + ", ") + _local5)); if (!((((_local3) && (_local4))) && (_local5))){ return; }; mouseChildren = false; solved = true; TweenLite.delayedCall(2, dispatchEvent, [new Event(Setting.HIDE_OVERLAY)]); } private function lockHole(_arg1:MovieClip):void{ _arg1.circle.gotoAndStop(2); } public function updateCollection(_arg1:Array):void{ var _local2:String; var _local3:int; _local3 = 0; while (_local3 < allPegs.length) { _local2 = allPegs[_local3].name.substring(4, allPegs[_local3].name.length); allPegs[_local3].visible = (((_arg1.indexOf(_local2) >= 0)) && ((placements.indexOf(allPegs[_local3]) < 0))); _local3++; }; } private function onRolloutBack(_arg1:Event):void{ MovieClip(_arg1.currentTarget).gotoAndStop(1); } private function onRolloverBack(_arg1:Event):void{ MovieClip(_arg1.currentTarget).gotoAndStop(2); } } }//package asfiles.setting.overlay
Section 15
//RPSOverlay (asfiles.setting.overlay.RPSOverlay) package asfiles.setting.overlay { import flash.events.*; import flash.display.*; public class RPSOverlay extends MovieClip { public var selector:MovieClip; public static const SELECT_ROCK:String = "selectRock"; public static const SELECT_PAPER:String = "selectPaper"; public static const SELECT_SCISSORS:String = "selectScissors"; private function onClickIcon(_arg1:Event):void{ rock.removeEventListener(MouseEvent.ROLL_OVER, onRolloverIcon); paper.removeEventListener(MouseEvent.ROLL_OVER, onRolloverIcon); scissors.removeEventListener(MouseEvent.ROLL_OVER, onRolloverIcon); rock.removeEventListener(MouseEvent.ROLL_OUT, onRolloutIcon); paper.removeEventListener(MouseEvent.ROLL_OUT, onRolloutIcon); scissors.removeEventListener(MouseEvent.ROLL_OUT, onRolloutIcon); switch (_arg1.currentTarget){ case rock: dispatchEvent(new Event(SELECT_ROCK)); break; case paper: dispatchEvent(new Event(SELECT_PAPER)); break; case scissors: dispatchEvent(new Event(SELECT_SCISSORS)); break; }; } public function activate():void{ MovieClip(selector).gotoAndPlay(2); addEventListener(Event.ENTER_FRAME, awaitIcons); } private function get scissors():MovieClip{ return (MovieClip(MovieClip(selector).getChildByName("scissorsClip"))); } private function onRolloverIcon(_arg1:Event):void{ MovieClip(_arg1.currentTarget).gotoAndStop(2); } private function awaitIcons(_arg1:Event):void{ if (selector.currentFrame == (selector.totalFrames - 1)){ removeEventListener(Event.ENTER_FRAME, awaitIcons); rock.addEventListener(MouseEvent.CLICK, onClickIcon); paper.addEventListener(MouseEvent.CLICK, onClickIcon); scissors.addEventListener(MouseEvent.CLICK, onClickIcon); rock.addEventListener(MouseEvent.ROLL_OVER, onRolloverIcon); paper.addEventListener(MouseEvent.ROLL_OVER, onRolloverIcon); scissors.addEventListener(MouseEvent.ROLL_OVER, onRolloverIcon); rock.addEventListener(MouseEvent.ROLL_OUT, onRolloutIcon); paper.addEventListener(MouseEvent.ROLL_OUT, onRolloutIcon); scissors.addEventListener(MouseEvent.ROLL_OUT, onRolloutIcon); rock.buttonMode = true; paper.buttonMode = true; scissors.buttonMode = true; selector.buttonMode = true; selector.stop(); }; } private function onRolloutIcon(_arg1:Event):void{ MovieClip(_arg1.currentTarget).gotoAndStop(1); } private function get rock():MovieClip{ return (MovieClip(MovieClip(selector).getChildByName("rockClip"))); } private function get paper():MovieClip{ return (MovieClip(MovieClip(selector).getChildByName("paperClip"))); } } }//package asfiles.setting.overlay
Section 16
//BeachLeft (asfiles.setting.BeachLeft) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; public class BeachLeft extends Setting { private var firstVisit:Boolean;// = true public var bounds:MovieClip; public var tree:MovieClip; public var sap:MovieClip; public static const WAX_FALL:String = "waxFall"; public function BeachLeft(){ firstVisit = true; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; Setting.playMusic("BeachMusic"); rightExitId = "BeachMiddle"; TweenLite.delayedCall(0.1, delayedInit); } private function onWaxFall(_arg1:Event):void{ Character.liam.spriteIn.gotoAndPlay(8); tree.removeEventListener(WAX_FALL, onWaxFall); tree.gotoAndPlay(1); } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="406" y="388"/> <point id="rightEntry" x="740" y="400"/> <point id="rightExit" x="790" y="400"/> <point id="sap" x="290" y="431"/> <point id="" x="322" y="438"/> <point id="" x="420" y="390"/> </points> <features> <feature id="foreground" active="n"/> <feature id="sap" active="y" depthExclude="y" arriveFunction="arriveSap"/> <feature id="tree" active="n" depthExclude="y"/> <feature id="flower" active="y" depthExclude="y" arriveFunction="arriveFlower"/> <feature id="circleRock" active="y" depthExclude="y" arriveFunction="arriveGraffiti"/> <feature id="crossRock" active="y" depthExclude="y" arriveFunction="arriveGraffiti"/> <feature id="descriptiveRock" active="y" depthExclude="y" arriveFunction="arriveDescriptiveRock"/> <feature id="field" active="y" depthExclude="y" clickFunction="clickField"/> </features> </setting> ; } public function arriveSap():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 10){ tree.addEventListener(WAX_FALL, onWaxFall); activeCharacter.goto("getWax"); activeCharacter.heldItem = 11; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("IF I CAN FIND A ROYAL STAMP, I THINK WE COULD PASS THIS OFF AS AN OFFICIAL MESSAGE."); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { if (activeCharacter.heldItem == 0){ activeCharacter.say("I'D BETTER NOT TOUCH THAT WAXY GOO WITH MY HANDS."); }; }; } else { activeCharacter.say("YUCK!"); }; } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); } override protected function initialize():void{ super.initialize(); Character.liam.scaleX = 0.85; Character.liam.scaleY = 0.85; } protected function delayedInit():void{ if (firstVisit){ tree.play(); Character.liam.goto("drop"); Character.liam.queueSprite({sprite:"bounce", frm:1, andPlay:true}, true); Character.liam.queueSprite({sprite:"waiting", frm:1, andPlay:true}, false); moveCharacter(Character.reemus, new Point((Character.reemus.x + 100), (Character.reemus.y + 30))); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); firstVisit = false; }; } override public function destroy():void{ super.destroy(); tree.removeEventListener(WAX_FALL, onWaxFall); } } }//package asfiles.setting
Section 17
//BeachMiddle (asfiles.setting.BeachMiddle) package asfiles.setting { import flash.events.*; import flash.display.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; public class BeachMiddle extends Setting { public var bounds:MovieClip; public var bark:MovieClip; public var foreground:MovieClip; public var crate:MovieClip; public function BeachMiddle(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; leftExitId = "BeachLeft"; rightExitId = "BeachRight"; } public function arriveBark():void{ if ((activeCharacter is Liam)){ bark.visible = false; activeCharacter.goto("grabBark"); activeCharacter.heldItem = 10; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("LOOKS JUST LIKE ROYAL PARCHMENT!"); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { activeCharacter.say("THAT’S WHAT THEY MAKE ROYAL STATIONERY FROM."); }; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="leftEntry" x="-30" y="410"/> <point id="leftExit" x="-60" y="410"/> <point id="rightEntry" x="740" y="440"/> <point id="rightExit" x="790" y="440"/> <point id="bark" x="268" y="330"/> <point id="crate" x="531" y="340"/> <point id="" x="70" y="372"/> <point id="" x="368" y="350"/> <point id="" x="544" y="360"/> </points> <features> <feature id="foreground" active="n"/> <feature id="bark" active="y" depthExclude="y" arriveFunction="arriveBark"/> <feature id="crate" active="y" depthExclude="y" clickFunction="clickCrate" arriveFunction="arriveCrate"/> </features> </setting> ; } public function clickCrate():void{ if ((((activeCharacter is Liam)) && ((activeCharacter.heldItem == 11)))){ dynamicLoc["crateLiam"] = new Point(510, 315); } else { dynamicLoc["crateLiam"] = undefined; }; moveCharacterToLoc(activeCharacter, "crate"); } public function arriveCrate():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 25){ activeCharacter.goto("openCrate"); activeCharacter.addFrameAction(13, openCrate); activeCharacter.heldItem = 0; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { if ((((activeCharacter.heldItem == 11)) && ((crate.currentFrame > 1)))){ activeCharacter.goto("getSeal"); activeCharacter.heldItem = 12; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("OOOH, OFFICIAL LOOKING!"); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { if (crate.currentFrame == 1){ activeCharacter.say("LOCKED! MAYBE THERE’S A KEY SOMEWHERE."); } else { activeCharacter.say("IT’S FULL OF FANCY UNIFORMS, COMPLETE WITH CUFFLINKS FEATURING THE ROYAL SEAL."); }; }; }; } else { if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem == 25){ activeCharacter.goto("openCrate"); activeCharacter.addFrameAction(13, openCrate); activeCharacter.heldItem = 0; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { if (crate.currentFrame == 1){ activeCharacter.say("I WONDER IF IT’S FILLED WITH CHOCOLATE COVERED COINS."); } else { activeCharacter.say("BORING UNIFORMS."); }; }; }; }; } override protected function initialize():void{ super.initialize(); Character.liam.scaleX = 0.85; Character.liam.scaleY = 0.85; } public function openCrate():void{ if (crate.currentFrame <= 1){ crate.play(); }; } } }//package asfiles.setting
Section 18
//BeachRight (asfiles.setting.BeachRight) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; import asfiles.setting.overlay.*; public class BeachRight extends Setting { private var liamGuardChatted:Boolean;// = false private var guardSelection:String;// = "" private var rpsOverlay:RPSOverlay; public var keyCrate:MovieClip; public var guard:MovieClip; public var bounds:MovieClip; public var crates:MovieClip; private var rpsSelection:String;// = "" public var foreground:MovieClip; public var keys:MovieClip; public function BeachRight(){ rpsSelection = ""; guardSelection = ""; liamGuardChatted = false; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; keys.visible = false; speechPoints["guard"] = new Point(594, 173); dynamicLoc["keysReemus"] = new Point(244, 431); leftExitId = "BeachMiddle"; } public function arriveGuard():void{ if ((activeCharacter is Reemus)){ if (keyCrate.currentFrame == 1){ processSpeechTree("reemus_request", "initRPS"); } else { if ((((keyCrate.currentFrame < keyCrate.totalFrames)) && (!(keys.visible)))){ initRPS(); } else { processSpeechTree("guard_reject"); }; }; } else { if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 12){ processSpeechTree("guard_approve", "finishLevel"); } else { if (liamGuardChatted){ processSpeechTree("guard_reiterate"); } else { if (activeCharacter.heldItem == 11){ processSpeechTree("no_seal"); } else { processSpeechTree("liam_request"); liamGuardChatted = true; }; }; }; }; }; } private function onSelectPaper(_arg1:Event):void{ rpsSelection = "paper"; guardSelection = "scissors"; handleRPSSelection(); } public function arriveKeyCrate():void{ if ((activeCharacter is Reemus)){ processSpeechTree("guard_warn_reemus"); } else { processSpeechTree("guard_warn_liam"); }; } public function finishLevel():void{ dispatchEvent(new Event(Main.FADE_OUT)); TweenLite.delayedCall(1.4, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:""})]); TweenLite.delayedCall(1.5, Main(root).gotoAndStop, [10]); } public function initRPS():void{ rpsOverlay = new RPSOverlay(); rpsOverlay.addEventListener(RPSOverlay.SELECT_ROCK, onSelectRock); rpsOverlay.addEventListener(RPSOverlay.SELECT_PAPER, onSelectPaper); rpsOverlay.addEventListener(RPSOverlay.SELECT_SCISSORS, onSelectScissors); rpsOverlay.activate(); dispatchEvent(new Event(Main.HIDE_PORTRAIT)); dispatchEvent(new Event(Setting.HIDE_LEFT)); Character.reemus.goto("rockPaperScissors"); Character.reemus.addFrameAction(48, showHands); Main.lockCatcher = false; dispatchEvent(new Event(Setting.SHOW_CATCHER)); dispatchEvent(new InfoEvent(Setting.SPECIAL_OVERLAY, {overlay:rpsOverlay})); TweenLite.delayedCall(0.5, dispatchEvent, [new Event(Setting.HIDE_CATCHER)]); } public function arriveCrates():void{ } public function moveKey():void{ if (keyCrate.currentFrame < 32){ if (keyCrate.currentFrame > 1){ keys.visible = true; }; keyCrate.play(); }; TweenLite.delayedCall(1, dispatchEvent, [new Event(Setting.HIDE_CATCHER)]); } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="leftEntry" x="-10" y="490"/> <point id="leftExit" x="-40" y="490"/> <point id="crates" x="132" y="440"/> <point id="keyCrate" x="345" y="457"/> <point id="keys" x="256" y="437"/> <point id="guard" x="345" y="457"/> <point id="" x="322" y="438"/> <point id="" x="420" y="390"/> </points> <features> <feature id="foreground" active="n"/> <feature id="crates" active="y" depthExclude="y" arriveFunction="arriveKeyCrate"/> <feature id="keyCrate" active="y" depthExclude="y" arriveFunction="arriveKeyCrate"/> <feature id="keys" active="y" depthExclude="y" arriveFunction="arriveKeys"/> <feature id="guard" active="y" depthExclude="y" arriveFunction="arriveGuard"/> </features> <dialogue> <tree id="reemus_request"> <step origin="reemus" text="HEY CHIEF, WE NEED A RIDE ACROSS THE LAKE. CAN YOU HOOK US UP?"/> <step origin="guard" text="SORRY, THIS BOAT IS FOR ROYAL DELIVERIES ONLY. "/> <step origin="reemus" text="AW COME ON! LIVE A LITTLE!"/> <step origin="guard" text="ALRIGHT, IF YOU CAN BEAT ME IN A BATTLE OF WITS, I’LL TAKE YOU ACROSS. BEST 2 OUT OF 3!"/> </tree> <tree id="guard_reject"> <step origin="guard" text="YOU LOST FAIR AND SQUARE. BEAT IT, OLD MAN."/> </tree> <tree id="guard_warn_liam"> <step origin="guard" text="KEEP YOUR FURRY PAWS AWAY FROM THE DELIVERIES."/> </tree> <tree id="guard_warn_reemus"> <step origin="guard" text="HANDS OFF, IT’S AN OFFENSE FOR PEASANTS TO TOUCH ROYAL PARCELS."/> </tree> <tree id="liam_request"> <step origin="liam" text="EXCUSE ME SIR, BUT WE REALLY NEED A RIDE."/> <step origin="guard" text="SORRY, ROYAL DELIVERIES ONLY!"/> <step origin="liam" text="BUT WE HAVE AN URGENT MESSAGE FOR THE KING."/> <step origin="guard" text="IN THAT CASE, HAND IT OVER AND LETS GO!"/> <step origin="liam" text="UM, WELL… WE NEED TO DELIVER IT IN PERSON."/> <step origin="guard" text="SORRY, I ONLY DELIVER MESSAGES CARRYING THE ROYAL SEAL."/> </tree> <tree id="no_seal"> <step origin="guard" text="I CAN’T DELIVER THIS, IT’S MISSING THE ROYAL SEAL."/> </tree> <tree id="guard_approve"> <step origin="guard" text="THE ROYAL SEAL! WHY DIDN’T SAY SO EARLIER, LETS GO!"/> </tree> <tree id="guard_reiterate"> <step origin="guard" text="I already told you, I only deliver messages carrying the royal seal."/> </tree> </dialogue> </setting> ; } public function showHands():void{ Character.reemus.spriteIn.gotoAndPlay(rpsSelection); guard.gotoAndPlay(guardSelection); TweenLite.delayedCall(1, failRPS); } private function onSelectScissors(_arg1:Event):void{ rpsSelection = "scissors"; guardSelection = "rock"; handleRPSSelection(); } public function removeKey():void{ keyCrate.gotoAndStop(33); keys.visible = false; } override protected function handleSpecialSpeaker(_arg1:String):void{ if (_arg1 == "guard"){ guard.gotoAndStop("talk"); } else { guard.gotoAndStop("wait"); }; } private function handleRPSSelection():void{ MovieClip(rpsOverlay).dispatchEvent(new Event(Setting.HIDE_OVERLAY)); dispatchEvent(new Event(Setting.SHOW_CATCHER)); Character.reemus.spriteIn.gotoAndPlay(3); guard.gotoAndPlay("shoot"); } public function arriveKeys():void{ if (activeCharacter.heldItem == 0){ removeKey(); activeCharacter.goto("grabKeys"); activeCharacter.heldItem = 25; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { activeCharacter.say("My hands are full."); }; } override protected function initialize():void{ super.initialize(); Character.liam.scaleX = 0.85; Character.liam.scaleY = 0.85; } private function onSelectRock(_arg1:Event):void{ rpsSelection = "rock"; guardSelection = "paper"; handleRPSSelection(); } private function failRPS():void{ Character.reemus.spriteIn.gotoAndPlay(103); Character.reemus.addFrameAction(112, moveKey); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); guard.gotoAndPlay("laugh"); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); dispatchEvent(new Event(Setting.SHOW_LEFT)); } override public function destroy():void{ super.destroy(); TweenLite.killDelayedCallsTo(dispatchEvent); TweenLite.killDelayedCallsTo(failRPS); rpsOverlay.removeEventListener(RPSOverlay.SELECT_ROCK, onSelectRock); rpsOverlay.removeEventListener(RPSOverlay.SELECT_PAPER, onSelectPaper); rpsOverlay.removeEventListener(RPSOverlay.SELECT_SCISSORS, onSelectScissors); } } }//package asfiles.setting
Section 19
//BurrowLeft (asfiles.setting.BurrowLeft) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; public class BurrowLeft extends Setting { private var nutExists:Boolean;// = true private var firstVisit:Boolean;// = true public var bounds:MovieClip; private var actionBlocker:ActionBlocker; public var exit:MovieClip; public var beach:MovieClip; public var rock2:MovieClip; public var squirrel:MovieClip; public var rock1:MovieClip; public var tree:MovieClip; public static var showSquirrel:Boolean = false; public function BurrowLeft(){ firstVisit = true; nutExists = true; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; rightExitId = "BurrowMiddle"; squirrel.visible = false; squirrel.stop(); TweenLite.delayedCall(0.1, delayedInit); } public function showRock1():void{ rock1.visible = true; } public function showRock2():void{ rock2.visible = true; } override public function handleCharacterSwitch():void{ actionBlocker.visible = !((activeCharacter.alpha > 0)); } public function arriveExit():void{ Character.liam.heldItem = 0; Character.liam.alpha = 0; Character.liam.goto("waiting", 1, false); Character.reemus.heldItem = 0; Character.reemus.goto("squirrelFly"); Character.reemus.addFrameAction(90, endLevel); mouseEnabled = false; mouseChildren = false; dispatchEvent(new Event(Main.HIDE_PORTRAIT)); dispatchEvent(new Event(Setting.HIDE_RIGHT)); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } public function arriveBeach():void{ if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem == 23){ if (!bothCharacters){ addCharacter(Character.liam, "rightEntry"); }; moveCharacterToLoc(Character.liam, "exit"); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { activeCharacter.say("A beautiful sandy beach below and we're stuck up here with no way down! Story of my life"); }; } else { activeCharacter.say("IT’S TOO STEEP TO JUMP. WE NEED SOME SORT OF PARACHUTE."); }; } private function onReturnReemus(_arg1:Event):void{ Character.reemus.alpha = 1; actionBlocker.visible = false; tree.gotoAndStop("idle"); } private function onClickBlocker(_arg1:Event):void{ if ((((activeCharacter is Reemus)) && ((tree.currentLabel == "reemus")))){ tree.inner.play(); }; } public function arriveRock1():void{ if (activeCharacter.heldItem == 0){ rock1.visible = false; activeCharacter.goto("grabRock"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); if ((activeCharacter is Reemus)){ activeCharacter.heldItem = 22; } else { activeCharacter.queueSpeech("IT’S TOO HEAVY!"); activeCharacter.addFrameAction(30, showRock1); }; dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } public function arriveRock2():void{ if (activeCharacter.heldItem == 0){ rock2.visible = false; activeCharacter.goto("grabRock"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); if ((activeCharacter is Reemus)){ activeCharacter.heldItem = 22; } else { activeCharacter.queueSpeech("IT’S TOO HEAVY!"); activeCharacter.addFrameAction(30, showRock2); }; dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="rightEntry" x="732" y="456"/> <point id="rightExit" x="790" y="456"/> <point id="rock1" x="413" y="497"/> <point id="rock2" x="707" y="399"/> <point id="tree" x="532" y="420"/> <point id="beach" x="266" y="468"/> <point id="exit" x="194" y="469"/> <point id="" x="362" y="472"/> <point id="" x="458" y="425"/> <point id="" x="581" y="421"/> </points> <features> <feature id="foreground" active="n"/> <feature id="squirrel" active="n"/> <feature id="rock1" active="y" arriveFunction="arriveRock1"/> <feature id="rock2" active="y" depthExclude="y" arriveFunction="arriveRock2"/> <feature id="tree" active="y" clickFunction="clickTree" arriveFunction="arriveTree"/> <feature id="beach" active="y" depthExclude="y" arriveFunction="arriveBeach"/> <feature id="exit" active="n" depthExclude="y" arriveFunction="arriveExit"/> </features> </setting> ; } private function onRemovedFromStage(_arg1:Event):void{ actionBlocker.visible = false; } private function onSquirrelEscape(_arg1:Event):void{ dispatchEvent(new Event(Setting.RETURN_VIEW)); dispatchEvent(new Event(Setting.HIDE_CATCHER)); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); BurrowRight.activeChar.say("hmm, if we can catch that squirrel, we might be able to glide on out of here."); } public function arriveTree():void{ if ((activeCharacter is Reemus)){ if (((((nutExists) && ((activeCharacter.heldItem == 0)))) && ((tree.currentLabel == "idle")))){ activeCharacter.alpha = 0; actionBlocker.visible = true; tree.gotoAndStop("reemus"); }; } else { if ((activeCharacter is Liam)){ if (tree.currentLabel == "reemus"){ if ((((activeCharacter.heldItem == 0)) && (nutExists))){ nutExists = false; tree.inner.gotoAndStop(58); activeCharacter.scaleX = -(Math.abs(activeCharacter.scaleX)); activeCharacter.heldItem = 13; activeCharacter.goto("grabNut"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } else { activeCharacter.alpha = 0; actionBlocker.visible = true; tree.gotoAndStop("liam"); tree.addEventListener("returnLiam", onReturnLiam); }; }; }; } private function onReturnLiam(_arg1:Event):void{ Character.liam.alpha = 1; actionBlocker.visible = false; tree.gotoAndStop("idle"); } public function clickTree():void{ if ((activeCharacter is Liam)){ if (tree.currentLabel == "reemus"){ dynamicLoc["treeLiam"] = new Point(316, 458); } else { dynamicLoc["treeLiam"] = new Point(0x0202, 419); }; }; moveCharacterToLoc(activeCharacter, "tree"); } public function endLevel():void{ dispatchEvent(new Event(Main.FADE_OUT)); TweenLite.delayedCall(1.4, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:"Spire"})]); } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); } override protected function initialize():void{ super.initialize(); Character.reemus.scaleX = 0.86; Character.reemus.scaleY = 0.86; Character.liam.scaleX = 0.86; Character.liam.scaleY = 0.86; } protected function delayedInit():void{ if (firstVisit){ dynamicLoc["rock1Liam"] = new Point((414 - 60), (498 + 3)); dynamicLoc["rock2Liam"] = new Point((707 - 61), (400 + 1)); tree.addEventListener("returnReemus", onReturnReemus); tree.addEventListener("returnLiam", onReturnLiam); addEventListener(Event.REMOVED_FROM_STAGE, onRemovedFromStage); actionBlocker = new ActionBlocker(); actionBlocker.visible = false; actionBlocker.addEventListener(MouseEvent.CLICK, onClickBlocker); dispatchEvent(new InfoEvent(Setting.SPECIAL_OVERLAY, {overlay:actionBlocker})); dispatchEvent(new Event(Setting.HIDE_CATCHER)); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); }; } override protected function onAddedToStage(_arg1:Event):void{ super.onAddedToStage(_arg1); if (showSquirrel){ showSquirrel = false; if (((contains(Character.reemus)) && ((Character.reemus.y > 456)))){ setChildIndex(squirrel, getChildIndex(Character.reemus)); } else { setChildIndex(squirrel, (numChildren - 1)); }; squirrel.addEventListener("escape", onSquirrelEscape); squirrel.gotoAndPlay(1); squirrel.visible = true; }; if (((((actionBlocker) && (actionBlocker.visible))) && (contains(actionBlocker)))){ setChildIndex(actionBlocker, (numChildren - 1)); Character.reemus.alpha = 0; }; } override public function destroy():void{ super.destroy(); tree.removeEventListener("returnReemus", onReturnReemus); tree.removeEventListener("returnLiam", onReturnLiam); removeEventListener(Event.REMOVED_FROM_STAGE, onRemovedFromStage); actionBlocker.removeEventListener(MouseEvent.CLICK, onClickBlocker); squirrel.removeEventListener("escape", onSquirrelEscape); showSquirrel = false; } } }//package asfiles.setting
Section 20
//BurrowMiddle (asfiles.setting.BurrowMiddle) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; public class BurrowMiddle extends Setting { public var lowHole:MovieClip; public var bounds:MovieClip; public var foreground:MovieClip; public var droppedRock:MovieClip; private var firstEscape:Boolean;// = true public var squirrel:MovieClip; public var hole3:MovieClip; public var hole4:MovieClip; public var highHole:MovieClip; public static var caughtSquirrel:Boolean = false; public static var showSquirrel:Boolean = false; public function BurrowMiddle(){ firstEscape = true; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; leftExitId = "BurrowLeft"; rightExitId = "BurrowRight"; squirrel.stop(); squirrel.visible = false; droppedRock.visible = false; addEventListener(Event.ADDED_TO_STAGE, onAddedToStage); TweenLite.delayedCall(0.1, delayedInit); } public function freeUpHands():void{ droppedRock.visible = true; droppedRock.gotoAndPlay(1); } public function showRock():void{ droppedRock.visible = true; } private function onCatchFrame(_arg1:Event):void{ if (Character.reemus.currentLabel.indexOf("grabSquirrel") >= 0){ caughtSquirrel = true; Character.reemus.spriteIn.play(); Character.reemus.heldItem = 23; squirrel.gotoAndStop(1); squirrel.visible = false; } else { if (Character.liam.currentLabel.indexOf("missSquirrel") >= 0){ Character.liam.spriteIn.gotoAndPlay(12); }; }; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="354" y="436"/> <point id="leftEntry" x="-40" y="480"/> <point id="leftExit" x="-90" y="480"/> <point id="rightEntry" x="740" y="470"/> <point id="rightExit" x="790" y="470"/> <point id="hole3" x="725" y="445"/> <point id="hole4" x="420" y="476"/> <point id="highHole" x="183" y="420"/> <point id="lowHole" x="58" y="419"/> <point id="droppedRock" x="58" y="419"/> <point id="" x="141" y="470"/> <point id="" x="280" y="431"/> <point id="" x="403" y="463"/> <point id="" x="278" y="519"/> </points> <features> <feature id="foreground" active="n"/> <feature id="hole3" active="y" arriveFunction="arriveHole3"/> <feature id="hole4" active="y" arriveFunction="arriveHole4"/> <feature id="highHole" active="y" depthExclude="y" arriveFunction="arriveHighHole"/> <feature id="lowHole" active="y" depthExclude="y" arriveFunction="arriveLowHole"/> <feature id="droppedRock" active="y" depthExclude="y" arriveFunction="arriveDroppedRock"/> </features> </setting> ; } public function arriveHole4():void{ handleHole(hole4); } public function arriveHole3():void{ handleHole(hole3); } private function onSquirrelEscape(_arg1:Event):void{ if (firstEscape){ firstEscape = false; BurrowLeft.showSquirrel = true; dispatchEvent(new InfoEvent(Setting.SWITCH_VIEW, {dest:"BurrowLeft"})); } else { dispatchEvent(new Event(Setting.RETURN_VIEW)); dispatchEvent(new Event(Setting.HIDE_CATCHER)); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); TweenLite.delayedCall(0.1, dispatchEvent, [new Event(Setting.HIDE_RIGHT)]); }; } protected function handleHole(_arg1:MovieClip){ if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem == 22){ if (_arg1.currentFrame == 1){ activeCharacter.heldItem = 0; activeCharacter.goto("plugHole"); activeCharacter.addFrameAction(13, plugHole, {clip:_arg1}); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } else { if (activeCharacter.heldItem == 0){ if (_arg1.currentFrame == 2){ activeCharacter.heldItem = 22; activeCharacter.goto("retrieveRock"); activeCharacter.addFrameAction(13, collectRock, {clip:_arg1}); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { activeCharacter.say("I’M GLAD THIS ISN’T MY LAWN."); }; }; }; } else { activeCharacter.say("SQUIRREL APARTMENTS!"); }; } public function handleHandsFree():void{ activeCharacter.goto("grabSquirrel"); activeCharacter.addFrameAction(44, returnView); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); } public function arriveLowHole():void{ if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem == 23){ activeCharacter.say("Letting him go after all that trouble? Fat chance."); } else { if (((droppedRock.visible) && ((activeCharacter.heldItem > 0)))){ activeCharacter.say("Hmmm, maybe I can leverage the sitatuation in my favor using these rocks."); } else { if (activeCharacter.heldItem <= 0){ handleHandsFree(); } else { activeCharacter.heldItem = 0; activeCharacter.goto("plugHole"); activeCharacter.addFrameAction(13, freeUpHands); activeCharacter.addFrameAction(24, handleHandsFree); }; }; }; } else { activeCharacter.goto("missSquirrel"); activeCharacter.addFrameAction(44, returnView); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); }; } protected function plugHole(_arg1:Object):void{ _arg1.clip.gotoAndStop(2); } public function arriveHighHole():void{ if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem == 23){ activeCharacter.say("Letting him go after all that trouble? Fat chance."); } else { if (activeCharacter.heldItem > 0){ activeCharacter.goto("poiseHighRock"); } else { activeCharacter.goto("poiseHigh"); }; }; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); }; } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); if ((((_arg2 == "entry")) || ((_arg2 == "")))){ TweenLite.delayedCall(0.1, _arg1.goto, ["drop"]); if ((_arg1 is Reemus)){ _arg1.x = (_arg1.x + 30); _arg1.y = (_arg1.y + 50); }; }; } override protected function initialize():void{ super.initialize(); Character.reemus.scaleX = 0.86; Character.reemus.scaleY = 0.86; Character.liam.scaleX = 0.86; Character.liam.scaleY = 0.86; } protected function delayedInit():void{ dispatchEvent(new Event(Main.SHOW_PORTRAIT)); dynamicLoc["droppedRockLiam"] = new Point((58 + 65), (419 + 3)); } override protected function onAddedToStage(_arg1:Event):void{ super.onAddedToStage(_arg1); if (showSquirrel){ showSquirrel = false; squirrel.addEventListener("escape", onSquirrelEscape); squirrel.addEventListener("catchFrame", onCatchFrame); if (((contains(Character.reemus)) && ((Character.reemus.y > 440)))){ setChildIndex(squirrel, getChildIndex(Character.reemus)); } else { setChildIndex(squirrel, (numChildren - 1)); }; if (hole4.currentFrame == 1){ squirrel.gotoAndPlay("hole2"); squirrel.visible = true; } else { if (hole3.currentFrame == 1){ squirrel.gotoAndPlay("hole1"); squirrel.visible = true; } else { squirrel.stop(); squirrel.visible = false; TweenLite.delayedCall(2, dispatchEvent, [new Event(Setting.RETURN_VIEW)]); TweenLite.delayedCall(2, dispatchEvent, [new Event(Setting.HIDE_CATCHER)]); TweenLite.delayedCall(2, dispatchEvent, [new Event(Main.SHOW_PORTRAIT)]); }; }; }; } protected function collectRock(_arg1:Object):void{ _arg1.clip.gotoAndStop(1); } public function arriveDroppedRock():void{ if (activeCharacter.heldItem == 0){ droppedRock.visible = false; activeCharacter.goto("grabRock"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); if ((activeCharacter is Reemus)){ activeCharacter.heldItem = 22; } else { activeCharacter.queueSpeech("IT’S TOO HEAVY!"); activeCharacter.addFrameAction(30, showRock); }; dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } override public function destroy():void{ super.destroy(); squirrel.removeEventListener("escape", onSquirrelEscape); squirrel.removeEventListener("catchFrame", onCatchFrame); removeEventListener(Event.ADDED_TO_STAGE, onAddedToStage); showSquirrel = false; caughtSquirrel = false; TweenLite.killDelayedCallsTo(dispatchEvent); } public function returnView():void{ squirrel.gotoAndStop(1); dispatchEvent(new Event(Setting.RETURN_VIEW)); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); } } }//package asfiles.setting
Section 21
//BurrowRight (asfiles.setting.BurrowRight) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import asfiles.char.*; import asfiles.*; public class BurrowRight extends Setting { private var firstVisit:Boolean;// = true public var bounds:MovieClip; public var feeder:MovieClip; public var foreground:MovieClip; public var squirrel:MovieClip; public var hole2:MovieClip; public var hole1:MovieClip; public var nut:MovieClip; public static var activeChar:Character; public function BurrowRight(){ firstVisit = true; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; Setting.playMusic("SquirrelMusic"); leftExitId = "BurrowMiddle"; nut.visible = false; TweenLite.delayedCall(0.1, delayedInit); } override public function handleReturnView():void{ dispatchEvent(new Event(Setting.SHOW_LEFT)); } public function arriveFeeder():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 13){ activeCharacter.heldItem = 0; activeCharacter.goto("tossNut"); activeCharacter.addFrameAction(31, placeNut); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { if (feeder.currentFrame == 1){ activeCharacter.say("THE SQUIRRELS REALLY CLEANED THAT FEEDER OUT."); } else { activeCharacter.say("I THINK WE'LL HAVE TO GIVE THE SQUIRREL SOME PRIVACY BEFORE HE'LL GO AFTER THE NUT."); }; }; } else { if (feeder.currentFrame == 1){ activeCharacter.say("AWW, IT’S EMPTY. THERE GOES MY LUNCH PLANS."); } else { activeCharacter.say("IT'S BEST THAT I DON'T EAT LIAM'S PLAN."); }; }; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="577" y="493"/> <point id="leftEntry" x="-40" y="447"/> <point id="leftExit" x="-90" y="447"/> <point id="hole2" x="310" y="450"/> <point id="hole1" x="280" y="419"/> <point id="feeder" x="493" y="450"/> <point id="nut" x="285" y="437"/> <point id="" x="42" y="446"/> <point id="" x="162" y="420"/> <point id="" x="158" y="484"/> <point id="" x="278" y="446"/> <point id="" x="428" y="463"/> </points> <features> <feature id="foreground" active="n"/> <feature id="nut" active="y" depthExclude="y" arriveFunction="arriveNut"/> <feature id="hole1" active="y" depthExclude="y" arriveFunction="arriveHole1"/> <feature id="hole2" active="y" arriveFunction="arriveHole2"/> <feature id="feeder" active="y" depthExclude="y" arriveFunction="arriveFeeder"/> <feature id="squirrel" active="n" depX1="-20" depY1="160" depX2="20" depY2="160"/> </features> </setting> ; } public function arriveHole2():void{ handleHole(hole2); } public function arriveHole1():void{ handleHole(hole1); } private function onSquirrelEscape(_arg1:Event):void{ if (squirrel.currentLabel != "hole3"){ dispatchEvent(new Event(Setting.SHOW_CATCHER)); dispatchEvent(new InfoEvent(Setting.SWITCH_VIEW, {dest:"BurrowMiddle"})); } else { dispatchEvent(new Event(Main.SHOW_PORTRAIT)); dispatchEvent(new Event(Setting.SHOW_LEFT)); }; } public function placeNut():void{ feeder.gotoAndStop(2); } protected function handleHole(_arg1:MovieClip){ if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem == 22){ if (_arg1.currentFrame == 1){ activeCharacter.heldItem = 0; activeCharacter.goto("plugHole"); activeCharacter.addFrameAction(13, plugHole, {clip:_arg1}); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } else { if (activeCharacter.heldItem == 0){ if (_arg1.currentFrame == 2){ activeCharacter.heldItem = 22; activeCharacter.goto("retrieveRock"); activeCharacter.addFrameAction(13, collectRock, {clip:_arg1}); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { activeCharacter.say("I’M GLAD THIS ISN’T MY LAWN."); }; }; }; } else { activeCharacter.say("SQUIRREL APARTMENTS!"); }; } public function arriveNut():void{ if ((activeCharacter is Liam)){ if (!BurrowMiddle.caughtSquirrel){ nut.visible = false; activeCharacter.heldItem = 13; activeCharacter.goto("bounce"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; }; } protected function plugHole(_arg1:Object):void{ _arg1.clip.gotoAndStop(2); } private function handleSquirrelEscape():void{ dispatchEvent(new Event(Main.HIDE_PORTRAIT)); dispatchEvent(new Event(Setting.SHOW_CATCHER)); dispatchEvent(new Event(Setting.HIDE_LEFT)); TweenLite.delayedCall(0.11, dispatchEvent, [new Event(Setting.HIDE_LEFT)]); activeChar = activeCharacter; squirrel.gotoAndStop(1); squirrel.visible = true; squirrel.addEventListener("escape", onSquirrelEscape); nut.visible = true; nut.gotoAndPlay(1); feeder.gotoAndStop(1); if (hole1.currentFrame == 1){ BurrowMiddle.showSquirrel = true; squirrel.gotoAndPlay("hole1"); } else { if (hole2.currentFrame == 1){ BurrowMiddle.showSquirrel = true; squirrel.gotoAndPlay("hole2"); } else { squirrel.gotoAndPlay("hole3"); }; }; } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); if (firstVisit){ squirrel.gotoAndStop(1); squirrel.visible = true; if (_arg1.x < 200){ TweenLite.delayedCall(2, squirrel.gotoAndPlay, ["hole3"]); } else { TweenLite.delayedCall(1, squirrel.gotoAndPlay, ["hole1"]); }; firstVisit = false; } else { if (feeder.currentFrame > 1){ handleSquirrelEscape(); }; }; } override protected function initialize():void{ super.initialize(); Character.reemus.scaleX = 0.86; Character.reemus.scaleY = 0.86; Character.liam.scaleX = 0.86; Character.liam.scaleY = 0.86; } protected function delayedInit():void{ Character.reemus.scaleX = -(Math.abs(Character.reemus.scaleX)); Character.liam.scaleX = -(Math.abs(Character.liam.scaleX)); refreshDepths(Character.reemus.point); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); } protected function collectRock(_arg1:Object):void{ _arg1.clip.gotoAndStop(1); } override public function destroy():void{ super.destroy(); activeChar = null; TweenLite.killDelayedCallsTo(squirrel.gotoAndPlay); squirrel.removeEventListener("escape", onSquirrelEscape); } } }//package asfiles.setting
Section 22
//CaveDoor (asfiles.setting.CaveDoor) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import com.newgrounds.*; import asfiles.char.*; import asfiles.*; import asfiles.setting.overlay.*; public class CaveDoor extends Setting { public var carriage:MovieClip; private var allRocks:Array; public var bounds:MovieClip; private var firstRockLift:Boolean;// = true private var allPegs:Array; public var roach:MovieClip; public var foreground:MovieClip; public var log:MovieClip; public var rock2:MovieClip; public var rock3:MovieClip; public var rock1:MovieClip; public var rock4:MovieClip; private var myPegs:Array; public var cave:MovieClip; public var door:MovieClip; private var pegPuzzle:PegPuzzle; public static const CARRIAGE_EVENT:String = "carriageEvent"; public function CaveDoor(){ firstRockLift = true; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; Setting.playMusic("CaveDoorMusic"); roach.visible = false; carriage.addEventListener(CARRIAGE_EVENT, onCarriageEvent); allRocks = [rock1, rock2, rock3, rock4]; allPegs = [["snake", "plant"], ["owl"], ["rabbit", "mouse"], ["carrot", "frog"]]; myPegs = new Array(); CaveInterior.roachDead = false; pegPuzzle = new PegPuzzle(); TweenLite.delayedCall(0.1, initPegs); speechPoints["roach"] = new Point(402, 146); } public function grabPegs():void{ var _local1:Array; var _local2:MovieClip; var _local3:int; _local2 = MovieClip(getChildByName(activeCharacter.destination)); _local1 = allPegs[allRocks.indexOf(_local2)]; _local3 = 0; while (_local3 < _local1.length) { myPegs.push(_local1[_local3]); _local3++; }; _local2.peg1.visible = false; _local2.peg2.visible = false; } public function clickRoach():void{ if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem > 0){ dynamicLoc["roachReemus"] = new Point(215, 331); } else { dynamicLoc["roachReemus"] = undefined; }; }; moveCharacterToLoc(activeCharacter, "roach"); } public function arriveRoach():void{ if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem > 0){ CaveInterior.roachDead = true; activeCharacter.goto("bugSquish"); activeCharacter.addFrameAction(10, squishBug); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("THAT FELT EVEN BETTER THAN i IMAGINED."); } else { activeCharacter.goto("bugPunch"); activeCharacter.say("move it or lose it roach..."); activeCharacter.addFrameAction(18, venomSprayed); activeCharacter.addFrameAction(53, venomRecover); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); roach.gotoAndStop(2); }; } else { if ((activeCharacter is Liam)){ processSpeechTree("bug_question"); }; }; } private function initPegs():void{ var _local1:int; _local1 = 0; while (_local1 < allRocks.length) { allRocks[_local1].peg1.gotoAndStop(allPegs[_local1][0]); if (allPegs[_local1].length > 1){ allRocks[_local1].peg2.gotoAndStop(allPegs[_local1][1]); } else { allRocks[_local1].peg2.visible = false; }; _local1++; }; dispatchEvent(new Event(Setting.SHOW_CATCHER)); dispatchEvent(new Event(Setting.FORCE_SWITCH)); } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="-175" y="400"/> <point id="rock1" x="420" y="500"/> <point id="rock2" x="355" y="421"/> <point id="rock3" x="138" y="367"/> <point id="rock4" x="138" y="333"/> <point id="roach" x="308" y="331"/> <point id="log" x="308" y="331"/> <point id="door" x="518" y="420"/> <point id="" x="155" y="332"/> <point id="" x="157" y="402"/> <point id="" x="234" y="467"/> <point id="" x="621" y="500"/> <point id="" x="58" y="444"/> <point id="" x="417" y="516"/> <point id="" x="440" y="470"/> <point id="" x="466" y="534"/> </points> <features> <feature id="rock1" active="y" arriveFunction="arriveRock"/> <feature id="rock2" active="y" arriveFunction="arriveRock"/> <feature id="rock3" active="y" arriveFunction="arriveRock"/> <feature id="rock4" active="y" arriveFunction="arriveRock"/> <feature id="roach" active="y" clickFunction="clickRoach" arriveFunction="arriveRoach" depthExclude="y"/> <feature id="door" active="y" arriveFunction="arriveDoor" depthExclude="y"/> <feature id="log" active="y" arriveFunction="arriveLog" depthExclude="y"/> <feature id="cave" active="n" depX1="0" depY1="100" depX2="150" depY2="100"/> <feature id="foreground" active="n"/> </features> <dialogue> <tree id="bug_question"> <step origin="liam" text="are you sure this is the way?"/> <step origin="roach" text="yes, just find a way through that door and you're home free..."/> </tree> </dialogue> </setting> ; } public function arriveLog():void{ if ((activeCharacter is Reemus)){ activeCharacter.say("Liam hurry up and find a way through that door, I see a beach on the other side!"); } else { activeCharacter.say("I gotta stay focused on solving this door..."); }; } public function venomRecover():void{ Character.reemus.say(""); } public function arriveRock():void{ if ((activeCharacter is Reemus)){ activeCharacter.say("No way, Liam wanted to go this way he can do the heavy lifting."); } else { if ((activeCharacter is Liam)){ activeCharacter.goto("liftRock"); activeCharacter.addFrameAction(9, liftRock); activeCharacter.addFrameAction(20, grabPegs); activeCharacter.addFrameAction(29, resetRock); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; }; } public function liftRock():void{ var _local1:MovieClip; if (firstRockLift){ Character.liam.say("hey, there's some weird plugs under here..."); }; firstRockLift = false; _local1 = MovieClip(getChildByName(activeCharacter.destination)); _local1.gotoAndStop(2); _local1.mouseEnabled = false; _local1.mouseChildren = false; } public function arriveDoor():void{ if ((activeCharacter is Reemus)){ activeCharacter.say("what an amazingly complicated way to keep a door locked."); } else { dispatchEvent(new InfoEvent(Setting.SPECIAL_OVERLAY, {overlay:pegPuzzle})); dispatchEvent(new Event(Main.HIDE_PORTRAIT)); pegPuzzle.updateCollection(myPegs); TweenLite.delayedCall(0.1, dispatchEvent, [new Event(Setting.HIDE_CATCHER)]); }; } override protected function handleSpecialSpeaker(_arg1:String):void{ if ((((_arg1 == "roach")) && ((roach.currentFrame == 1)))){ roach.gotoAndStop(4); } else { if (roach.currentFrame == 4){ roach.gotoAndStop(1); }; }; } override public function exitOverlay(_arg1:MovieClip):void{ if ((((_arg1 is PegPuzzle)) && (PegPuzzle(_arg1).solved))){ dispatchEvent(new Event(Setting.SHOW_CATCHER)); cave.gotoAndPlay(2); TweenLite.delayedCall(2.5, dispatchEvent, [new Event(Main.FADE_OUT)]); TweenLite.delayedCall(3.9, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:"CaveInterior"})]); } else { dispatchEvent(new Event(Main.SHOW_PORTRAIT)); }; } public function resetRock():void{ var _local1:MovieClip; _local1 = MovieClip(getChildByName(activeCharacter.destination)); _local1.gotoAndStop(1); } private function onCarriageEvent(_arg1:Event):void{ var _local2:SpeechEvent; moveCharacter(Character.reemus, new Point(42, 470)); carriage.stop(); removeChild(carriage); Character.liam.alpha = 1; roach.visible = true; roach.gotoAndStop(4); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); _local2 = new SpeechEvent("here ya go, this cave will lead you out. just a small matter of solving the door lock...", {point:speechPoints["roach"]}); dispatchEvent(_local2); } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); if ((_arg1 is Liam)){ _arg1.x = 141; _arg1.y = 398.5; _arg1.scaleX = -(Math.abs(_arg1.scaleX)); _arg1.alpha = 0; }; } public function squishBug():void{ roach.gotoAndStop(3); roach.mouseEnabled = false; roach.mouseChildren = false; if (NewgroundsAPI.hasUserSession()){ MovieClip(root).medal_popup.unlockMedal("THE PASSION OF THE EXTERMINATOR"); }; } public function venomSprayed():void{ Character.reemus.say("ARGH!"); } override public function destroy():void{ super.destroy(); if (carriage){ carriage.removeEventListener(CARRIAGE_EVENT, onCarriageEvent); }; } } }//package asfiles.setting
Section 23
//CaveInterior (asfiles.setting.CaveInterior) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; import asfiles.setting.overlay.*; public class CaveInterior extends Setting { private const scrollSpan:Number = 680; public var fuzzy:MovieClip; public var vines:MovieClip; public var pondArea:MovieClip; public var stalactite:MovieClip; private var liamScreen:int;// = 1 public var cabinet:MovieClip; public var mushroom:MovieClip; public var bounds:MovieClip; public var stalagmites:MovieClip; private var stalacClicks:StalacClicks; public var mushrooms:MovieClip; public var roach:MovieClip; private var sleepingHard:Boolean;// = false public var foreground:MovieClip; public var cave:MovieClip; private var axedFurry:Boolean;// = false public static var roachDead:Boolean = false; public function CaveInterior(){ liamScreen = 1; sleepingHard = false; axedFurry = false; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; Setting.playMusic("CaveInteriorMusic"); if (roachDead){ roach.visible = false; }; cave.pond.stop(); Character.liam.scaleX = (0.7 / 1.11); Character.liam.scaleY = Character.liam.scaleX; Character.reemus.scaleX = (Character.reemus.scaleX / 1.5); Character.reemus.scaleY = Character.reemus.scaleX; speechPoints["roach"] = new Point(609, 400); speechPoints["liam_hang"] = new Point(677, 212); TweenLite.delayedCall(0.1, delayedInit); addEventListener(Event.ENTER_FRAME, monitorScrolling); addEventListener(Event.ADDED_TO_STAGE, onAddedToStage); } public function awaitLiamProgress():void{ Character.liam.spriteIn.addEventListener("liamProgress", onLiamProgress); } public function jellofyPond():void{ cave.pond.gotoAndPlay(2); } public function wakeFuzzyAxe():void{ fuzzy.gotoAndStop("wake"); dispatchEvent(new Event(Setting.HIDE_CATCHER)); TweenLite.delayedCall((5 + (20 * Math.random())), fuzzyRoar); } public function fuzzyRoar():void{ TweenLite.killDelayedCallsTo(fuzzyRoar); if (fuzzy.currentLabel == "wake"){ fuzzy.spriteIn.gotoAndPlay(1); TweenLite.delayedCall((5 + (20 * Math.random())), fuzzyRoar); }; } public function arriveMushroom():void{ if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem == 0){ mushroom.visible = false; mushrooms.gotoAndStop(2); activeCharacter.goto("getMushroom"); activeCharacter.heldItem = 24; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { activeCharacter.say("I'VE ALREADY GOT MY HANDS FULL."); }; } else { activeCharacter.say("BEST TO STAY AWAY FROM THOSE, THEY INDUCE EXTREME DROWSINESS IF INGESTED."); }; } override public function handleCharacterSwitch():void{ if ((((Character.liam.currentLabel == "jumpJello")) || ((liamScreen > 1)))){ mouseChildren = (activeCharacter == Character.reemus); if (activeCharacter == Character.reemus){ addEventListener(Event.ENTER_FRAME, monitorScrolling); stalacClicks.gotoAndStop(1); dispatchEvent(new Event(Setting.HIDE_CATCHER)); } else { x = Math.min(0, Math.max(-680, (-80 * liamScreen))); stalacClicks.x = x; removeEventListener(Event.ENTER_FRAME, monitorScrolling); stalacClicks.gotoAndStop(liamScreen); }; }; } public function arriveStalactite():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 0){ if (cave.pond.currentFrame == 1){ activeCharacter.goto("jumpWater"); activeCharacter.addFrameAction(107, leavePond); activeCharacter.queueSpeech("HMM, THEY LOOK CLIMBABLE. IF ONLY I COULD REACH THEM."); removeEventListener(Event.ENTER_FRAME, monitorScrolling); TweenLite.to(this, 2, {x:-263, delay:1}); TweenLite.to(stalacClicks, 2, {x:-263, delay:1}); } else { mouseChildren = false; liamScreen = 2; stalacClicks.gotoAndStop(2); activeCharacter.goto("jumpJello"); activeCharacter.addFrameAction(2, awaitLiamProgress); activeCharacter.addFrameAction(113, wakeFuzzyRocks); activeCharacter.addFrameAction(173, reachEdge); removeEventListener(Event.ENTER_FRAME, monitorScrolling); TweenLite.to(this, 3.5, {x:-80, delay:2}); TweenLite.to(stalacClicks, 3.5, {x:-80, delay:2}); }; dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } else { activeCharacter.say("I DON'T THINK I'M QUITE NIMBLE ENOUGH FOR THAT."); }; } public function wakeFuzzyRocks():void{ if (!sleepingHard){ fuzzy.gotoAndStop("wake"); TweenLite.delayedCall((5 + (20 * Math.random())), fuzzyRoar); }; dispatchEvent(new Event(Setting.HIDE_CATCHER)); } public function endBugDialogue():void{ roach.play(); } public function clickRoach():void{ if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem > 0){ dynamicLoc["roachReemus"] = new Point(215, 331); } else { dynamicLoc["roachReemus"] = undefined; }; }; moveCharacterToLoc(activeCharacter, "roach"); } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="142" y="315"/> <point id="mushroom" x="213" y="474"/> <point id="stalactite" x="142" y="313"/> <point id="pondArea" x="639" y="390"/> <point id="fuzzy" x="767" y="457"/> <point id="vines" x="1231" y="445"/> <point id="cabinet" x="700" y="387"/> <point id="" x="176" y="369"/> <point id="" x="326" y="459"/> <point id="" x="605" y="491"/> <point id="" x="822" y="514"/> <point id="" x="1264" y="461"/> </points> <features> <feature id="fuzzy" active="y" arriveFunction="arriveFuzzy"/> <feature id="cabinet" active="y" arriveFunction="arriveCabinet" depthExclude="y"/> <feature id="mushrooms" active="n"/> <feature id="mushroom" active="y" depthExclude="y" arriveFunction="arriveMushroom"/> <feature id="pondArea" active="y" depthExclude="y" arriveFunction="arrivePond"/> <feature id="stalactite" active="y" depthExclude="y" clickFunction="clickStalactite" arriveFunction="arriveStalactite"/> <feature id="vines" active="y" depthExclude="y" arriveFunction="arriveVines"/> <feature id="stalagmites" active="n"/> <feature id="foreground" active="n"/> </features> <dialogue> <tree id="cavebug_intro"> <step origin="roach" text=" I JUST LIVE IN A HOLE OVER THERE. I’M SURE YOU GUYS CAN FIND YOUR OWN WAY OUT. LATER!"/> <step origin="reemus" text="I CAN’T BELIEVE YOU CONVINCED ME TO GO THIS WAY."/> </tree> <tree id="cave_intro"> <step origin="reemus" text="I CAN’T BELIEVE YOU CONVINCED ME TO GO THIS WAY."/> </tree> </dialogue> </setting> ; } private function onLiamProgress(_arg1:Event):void{ stalacClicks.visible = true; dispatchEvent(new Event(Setting.HIDE_CATCHER)); } public function dropVine():void{ liamScreen++; stalacClicks.gotoAndStop(liamScreen); vines.gotoAndPlay(2); Character.liam.say("Okay Reemus, climb up!"); } public function leavePond():void{ Character.liam.goto("waiting"); Character.liam.x = 613; Character.liam.y = 395; addEventListener(Event.ENTER_FRAME, monitorScrolling); } public function arriveVines():void{ if ((activeCharacter is Reemus)){ if (vines.currentFrame > 1){ if (activeCharacter.heldItem == 4){ activeCharacter.goto("dropAxe"); activeCharacter.heldItem = 0; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); }; dispatchEvent(new Event(Main.FADE_OUT)); TweenLite.delayedCall(1.4, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:"BeachLeft"})]); } else { activeCharacter.say("IF THOSE VINES WERE IN REACH, I COULD CLIMB OUT OF HERE."); }; } else { activeCharacter.say("IF WE CAN GET UP THERE, WE CAN GET OUT."); }; } public function arrivePond():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 21){ activeCharacter.goto("throwGelatin"); activeCharacter.heldItem = 0; activeCharacter.addFrameAction(26, jellofyPond); activeCharacter.queueSprite({sprite:"bounce", frm:1, andPlay:true}, true); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("OOH BOUNCY! IT’S LIKE A STRAWBERRY TRAMPOLINE!"); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } else { if (cave.pond.currentFrame == 1){ activeCharacter.say("I’D RATHER NOT WALK AROUND IN WET PANTS."); } else { activeCharacter.say("MMMM, IF ONLY I HAD A SPOON."); }; }; } public function arriveFuzzy():void{ if ((activeCharacter is Reemus)){ if ((((activeCharacter.heldItem >= 2)) && ((activeCharacter.heldItem <= 4)))){ axedFurry = true; if (activeCharacter.heldItem == 4){ activeCharacter.goto("bustAxe"); activeCharacter.queueSpeech("YOUR THICK SKIN RUINED A PERFECTLY GOOD AXE!"); } else { if (activeCharacter.heldItem == 3){ activeCharacter.goto("breakGlueStick"); activeCharacter.queueSpeech("WELL THAT DIDN'T WORK."); } else { if (activeCharacter.heldItem == 2){ activeCharacter.goto("breakStick"); activeCharacter.queueSpeech("WELL THAT DIDN'T WORK."); }; }; }; activeCharacter.heldItem = 0; activeCharacter.addFrameAction(6, wakeFuzzyAxe); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { if (activeCharacter.heldItem == 24){ if (fuzzy.currentLabel == "wake"){ fuzzy.gotoAndStop("eat"); sleepingHard = true; activeCharacter.goto("throwMushroom"); activeCharacter.heldItem = 0; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { activeCharacter.say("HE'S NOT AWAKE, AND I DON'T INTEND TO FORCE-FEED HIM."); }; } else { if (fuzzy.currentLabel == "sleep"){ activeCharacter.say("IT’S BEST TO LET SLEEPING FURRY BEASTS LIE."); } else { activeCharacter.say("I’LL JUST STAY HERE, I DON’T WANT TO LOSE AN ARM."); }; }; }; } else { activeCharacter.say("I DON’T WANT TO GO NEAR IT."); }; } public function arriveCabinet():void{ if (cabinet.currentFrame == 1){ cabinet.gotoAndStop(2); } else { if ((activeCharacter is Reemus)){ activeCharacter.say("OOOH POWDERED GELATIN! I DON’T CARE IF IT IS MADE FROM COW HOOVES, I LOVE IT!"); } else { if ((activeCharacter is Liam)){ cabinet.mouseEnabled = false; cabinet.mouseChildren = false; activeCharacter.goto("getGelatin"); activeCharacter.heldItem = 21; activeCharacter.queueSprite({sprite:"bounce", frm:1, andPlay:true}, true); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("IT’S FULL OF STRAWBERRY GELATIN!"); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; }; }; } private function delayedInit():void{ Character.liam.x = (Character.liam.x + 17); Character.liam.y = (Character.liam.y + 69); refreshDepths(Character.liam.point); if (roachDead){ processSpeechTree("cave_intro"); } else { roach.addEventListener("roachStop", onRoachStop); }; stalacClicks = new StalacClicks(); if (!Main.debugMode){ stalacClicks.alpha = 0; }; stalacClicks.buttonMode = true; stalacClicks.gotoAndStop(1); stalacClicks.addEventListener(MouseEvent.CLICK, onClickStalac); dispatchEvent(new InfoEvent(Setting.SPECIAL_OVERLAY, {overlay:stalacClicks})); dispatchEvent(new Event(Setting.SHOW_CATCHER)); dispatchEvent(new Event(Setting.FORCE_SWITCH)); } override protected function onAddedToStage(_arg1:Event):void{ Main(root).portrait.show(true); } private function onRoachStop(_arg1:Event):void{ roach.removeEventListener("roachStop", onRoachStop); processSpeechTree("cavebug_intro", "endBugDialogue"); } private function monitorScrolling(_arg1:Event):void{ if (activeCharacter){ x = Math.min(0, Math.max(-680, (350 - activeCharacter.x))); if (stalacClicks){ stalacClicks.x = x; }; }; } public function clickStalactite():void{ var _local1:Object; var _local2:SpeechEvent; if ((activeCharacter is Liam)){ if (activeCharacter.currentLabel == "jumpJello"){ if ((((fuzzy.currentLabel == "wake")) && ((liamScreen == 6)))){ _local1 = {point:speechPoints["liam_hang"], altTip:true, color:6697881}; _local2 = new SpeechEvent("I’M NOT GOING ANY FURTHER, THAT THING WILL SWALLOW ME WHOLE!", _local1); dispatchEvent(_local2); } else { TweenLite.to(this, 1, {x:Math.min(0, Math.max(-680, (liamScreen * -80)))}); TweenLite.to(stalacClicks, 1, {x:Math.min(0, Math.max(-680, (liamScreen * -80)))}); Character.liam.spriteIn.play(); stalacClicks.visible = false; liamScreen++; stalacClicks.gotoAndStop(liamScreen); }; } else { moveCharacterToLoc(activeCharacter, "stalactite"); }; } else { moveCharacterToLoc(activeCharacter, "stalactite"); }; } private function onClickStalac(_arg1:Event):void{ if (liamScreen < 10){ clickStalactite(); } else { Character.liam.goto("dropVine"); Character.liam.addFrameAction(10, dropVine); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } public function reachEdge():void{ Character.liam.goto("waiting"); Character.liam.x = 1260; Character.liam.y = 180; } override public function destroy():void{ super.destroy(); roachDead = false; removeEventListener(Event.ENTER_FRAME, monitorScrolling); removeEventListener(Event.ADDED_TO_STAGE, onAddedToStage); roach.removeEventListener("roachStop", onRoachStop); if (stalacClicks){ stalacClicks.removeEventListener(MouseEvent.CLICK, onClickStalac); }; if (Character.liam.spriteIn){ Character.liam.spriteIn.removeEventListener("liamProgress", onLiamProgress); }; TweenLite.killTweensOf(this, false); TweenLite.killDelayedCallsTo(fuzzyRoar); if (stalacClicks){ TweenLite.killTweensOf(stalacClicks, false); }; } } }//package asfiles.setting
Section 24
//CliffLeft (asfiles.setting.CliffLeft) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; public class CliffLeft extends Setting { public var flower:MovieClip; public var bounds:MovieClip; public var levelExit:MovieClip; public var peri:MovieClip; public var foreground:MovieClip; public var flag:MovieClip; public var keepOut:MovieClip; public static var instance:CliffLeft; public function CliffLeft(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; instance = this; speechPoints["peri"] = new Point(100, 0xFF); flag.play(); leftExitId = "Hypothetical"; rightExitId = "CliffMiddle"; } public function removeFlag():void{ flag.visible = false; } override public function exitLeft():void{ if (bounds.leftExit.visible){ moveCharacterToLoc(activeCharacter, "levelExit"); } else { moveCharacterToLoc(activeCharacter, "peri"); }; } public function arrivePeri():void{ if ((activeCharacter is Reemus)){ if (peri.currentLabel != "war"){ processSpeechTree("peri_and_reemus", "beatReemus"); }; } else { if (peri.currentLabel == "beat"){ activeCharacter.say("REEMUS SEEMS TO HAVE THIS ONE UNDER CONTROL. I'LL SEE WHAT I CAN DO ELSEWHERE."); } else { activeCharacter.say("I BETTER KEEP MY DISTANCE, HE LOOKS LIKE HE MEANS BUSINESS."); }; }; } public function addFlower():void{ flower.visible = true; } override public function handleCharacterSwitch():void{ if (Character.reemus.currentLabel == "beaten"){ mouseChildren = (activeCharacter is Liam); dispatchEvent(new Event(Setting.HIDE_LEFT)); if ((activeCharacter is Reemus)){ dispatchEvent(new Event(Setting.HIDE_RIGHT)); } else { dispatchEvent(new Event(Setting.SHOW_RIGHT)); }; } else { mouseChildren = true; dispatchEvent(new Event(Setting.SHOW_LEFT)); dispatchEvent(new Event(Setting.SHOW_RIGHT)); }; } public function arriveExit():void{ Character.liam.heldItem = 0; dispatchEvent(new Event(Main.FADE_OUT)); TweenLite.delayedCall(1.4, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:"BurrowRight"})]); } public function arriveKeepOut():void{ if ((activeCharacter is Reemus)){ activeCharacter.say("PFFT, WHATEVER."); } else { activeCharacter.say("THESE GUYS TAKE THEIR TERRITORY VERY SERIOUSLY."); }; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="leftEntry" x="0" y="0"/> <point id="leftExit" x="0" y="0"/> <point id="rightEntry" x="750" y="490"/> <point id="rightExit" x="800" y="490"/> <point id="peri" x="280" y="418"/> <point id="keepOut" x="445" y="447"/> <point id="flag" x="336" y="384"/> <point id="levelExit" x="-91" y="440"/> <point id="" x="203" y="450"/> <point id="" x="356" y="443"/> </points> <features> <feature id="foreground" active="n"/> <feature id="peri" active="y" arriveFunction="arrivePeri"/> <feature id="keepOut" active="y" depthExclude="y" arriveFunction="arriveKeepOut"/> <feature id="flag" active="y" depthExclude="y" arriveFunction="arriveFlag"/> <feature id="levelExit" active="n" depthExclude="y" arriveFunction="arriveExit"/> </features> <dialogue> <tree id="perriwinkle_and_liam"> <step origin="liam" text="HMM, THAT MIGHT BE USEFUL."/> <step origin="peri" text="TOUCH THAT FLAG AND YOU WILL PAY A HEAVY PRICE MY FRIEND!"/> </tree> <tree id="peri_and_reemus"> <step origin="reemus" text="EXCUSE ME, COMING THROUGH…"/> <step origin="peri" text="CAN’T YOU READ THE SIGN! THIS IS PRIVATE PROPERTY!"/> </tree> </dialogue> </setting> ; } public function arriveFlag():void{ if ((activeCharacter is Liam)){ if (peri.currentLabel != "beat"){ processSpeechTree("perriwinkle_and_liam"); } else { if (activeCharacter.heldItem > 0){ activeCharacter.goto("dropFlower"); activeCharacter.heldItem = 0; activeCharacter.addFrameAction(17, addFlower); activeCharacter.addFrameAction(18, liamGrabFlag); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { liamGrabFlag(); }; }; } else { activeCharacter.say("SWEET FLAG! IT WOULD MAKE A KILLER STENCIL ON MY EXTERMINATOR WAGON."); }; } override protected function handleSpecialSpeaker(_arg1:String):void{ if ((((_arg1 == "peri")) && (peri.spriteIn))){ peri.gotoAndStop("talk"); } else { if (peri.currentLabel == "talk"){ peri.gotoAndStop("stamp"); }; }; } public function beatReemus():void{ mouseChildren = false; activeCharacter.goto("beaten"); peri.gotoAndStop("beat"); dispatchEvent(new Event(Setting.HIDE_LEFT)); dispatchEvent(new Event(Setting.HIDE_RIGHT)); } public function liamGrabFlag():void{ activeCharacter.goto("grabFlag"); activeCharacter.heldItem = 4; activeCharacter.addFrameAction(13, removeFlag); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); flower.visible = false; if (Character.reemus.currentLabel == "beaten"){ mouseChildren = (activeCharacter is Liam); dispatchEvent(new Event(Setting.HIDE_LEFT)); TweenLite.delayedCall(0.1, dispatchEvent, [new Event(Setting.HIDE_LEFT)]); }; } override protected function initialize():void{ super.initialize(); Character.liam.scaleX = 1; Character.liam.scaleY = 1; bounds.leftExit.visible = false; } override public function destroy():void{ super.destroy(); instance = null; } public static function startWar():void{ CliffMiddle.showTinkertok = false; instance.peri.gotoAndStop("war"); instance.peri.mouseEnabled = false; instance.peri.mouseChildren = false; instance.bounds.leftExit.visible = true; Character.reemus.goto("waiting"); Character.reemus.x = 380; Character.reemus.y = 465; } } }//package asfiles.setting
Section 25
//CliffMiddle (asfiles.setting.CliffMiddle) package asfiles.setting { import flash.events.*; import flash.display.*; import asfiles.char.*; import asfiles.*; public class CliffMiddle extends Setting { public var descriptiveRock:MovieClip; public var flower:MovieClip; public var circleRock:MovieClip; public var bounds:MovieClip; public var field:MovieClip; public var foreground:MovieClip; public var crossRock:MovieClip; public var tinkertok:MovieClip; public static var showTinkertok:Boolean = false; public function CliffMiddle(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; tinkertok.visible = false; leftExitId = "CliffLeft"; rightExitId = "CliffRight"; } public function arriveFlower():void{ if ((activeCharacter is Liam)){ if ((((flower.currentFrame == 1)) && ((activeCharacter.heldItem <= 0)))){ activeCharacter.goto("grabFlower"); activeCharacter.heldItem = 7; activeCharacter.addFrameAction(8, removeFlower); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { activeCharacter.say("MY HANDS ARE FULL."); }; } else { activeCharacter.say("I DON’T’ WANT TO TOUCH IT, I’LL GET PAINT ALL OVER MY HANDS."); }; } public function clickField():void{ if ((activeCharacter is Reemus)){ activeCharacter.say("A FIELD OF PAINTED FLOWERS."); } else { activeCharacter.say("PAINTED TULIPS, NATURE’S PAINTBRUSH."); }; activeCharacter.halt(); } public function arriveDescriptiveRock():void{ if ((activeCharacter is Reemus)){ activeCharacter.say("IT’S SOME KIND OF BORING LEGAL DOCUMENT DEALING WITH A TRUCE. SOUNDS LIKE WAR IS IMMINENT."); } else { activeCharacter.say("IT’S A DECLARATION OF TRUCE BETWEEN TINKERTOK THE YELLOW AND PERRIWINKLE THE ORANGE. THERE’S A LIST OF AGREEMENTS DEALING WITH TRESPASSING AND GRAFFITI AMONG OTHER THINGS."); }; } public function arriveGraffiti():void{ if ((activeCharacter is Reemus)){ activeCharacter.say("IT’S NOT THE BEST GRAFFITI ART I’VE SEEN."); } else { activeCharacter.say("A STENCILED TERRITORY MARKER."); }; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="rightEntry" x="700" y="457"/> <point id="rightExit" x="790" y="457"/> <point id="leftEntry" x="-30" y="438"/> <point id="leftExit" x="-110" y="438"/> <point id="flower" x="377" y="372"/> <point id="circleRock" x="218" y="387"/> <point id="crossRock" x="510" y="410"/> <point id="descriptiveRock" x="382" y="382"/> <point id="" x="482" y="420"/> </points> <features> <feature id="foreground" active="n"/> <feature id="tree" active="n"/> <feature id="flower" active="y" depthExclude="y" arriveFunction="arriveFlower"/> <feature id="circleRock" active="y" depthExclude="y" arriveFunction="arriveGraffiti"/> <feature id="crossRock" active="y" depthExclude="y" arriveFunction="arriveGraffiti"/> <feature id="descriptiveRock" active="y" depthExclude="y" arriveFunction="arriveDescriptiveRock"/> <feature id="field" active="y" depthExclude="y" clickFunction="clickField"/> </features> </setting> ; } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); flower.gotoAndStop(1); if (showTinkertok){ tinkertok.gotoAndPlay(1); tinkertok.visible = true; showTinkertok = false; }; } override protected function initialize():void{ super.initialize(); Character.liam.scaleX = 1; Character.liam.scaleY = 1; } override public function destroy():void{ super.destroy(); showTinkertok = false; } public function removeFlower():void{ flower.gotoAndStop(2); } } }//package asfiles.setting
Section 26
//CliffRight (asfiles.setting.CliffRight) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; import asfiles.setting.features.*; public class CliffRight extends Setting { public var flower:MovieClip; public var bounds:MovieClip; public var hole:MovieClip; public var bell:MovieClip; public var foreground:MovieClip; public var rock:MovieClip; public var flag:MovieClip; public var tree:MovieClip; public var tinkertok:Tinkertok; public function CliffRight(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; Setting.playMusic("WarMusic"); speechPoints["tinkertok"] = new Point(581, 204); speechPoints["tinkertokAlt"] = new Point(235, 0x0100); TweenLite.delayedCall(0.1, delayedInit); leftExitId = "CliffMiddle"; } public function dropFlower():void{ activeCharacter.goto("dropFlower"); activeCharacter.addFrameAction(17, addFlower); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } public function drapeFlag():void{ flag.flag.gotoAndStop(1); flag.flag.visible = true; flag.splatter.gotoAndStop(1); flag.splatter.visible = false; flag.overSplatter.gotoAndStop(1); flag.overSplatter.visible = false; flag.circle.gotoAndStop(1); flag.circle.visible = false; } public function tinkerTug():void{ tinkertok.gotoAndPlay(106); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } public function clickHole():void{ if ((activeCharacter is Liam)){ activeCharacter.say("SOUNDS LIKE HE’S ITCHING TO GO TO WAR."); } else { activeCharacter.say("WHAT A HOTHEAD! IT WOULDN’T TAKE MUCH TO SET HIM OFF."); }; activeCharacter.halt(); } public function addFlower():void{ flower.visible = true; } public function arriveBell():void{ Main.lockCatcher = true; if ((activeCharacter is Reemus)){ bell.gotoAndPlay(2); } else { bell.gotoAndPlay(10); }; activeCharacter.goto("ringBell"); activeCharacter.addFrameAction(19, alertTinkertok); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="338" y="437"/> <point id="leftEntry" x="0" y="385"/> <point id="leftExit" x="-70" y="385"/> <point id="bell" x="368" y="430"/> <point id="rock" x="199" y="420"/> <point id="flag" x="201" y="426"/> <point id="miniSquish" x="100" y="443"/> <point id="" x="350" y="450"/> <point id="" x="254" y="447"/> <point id="" x="143" y="450"/> </points> <features> <feature id="foreground" active="n"/> <feature id="tree" active="n"/> <feature id="bell" active="y" depthExclude="y" arriveFunction="arriveBell"/> <feature id="rock" active="y" depthExclude="y" clickFunction="clickRock" arriveFunction="arriveRock"/> <feature id="flag" active="y" depthExclude="y" arriveFunction="arriveFlag"/> <feature id="hole" active="y" depthExclude="y" clickFunction="clickHole"/> <feature id="tinkertok" active="n" depthExclude="y"/> </features> <dialogue> <tree id="tinkertok_intro"> <step origin="tinkertok" text="WHAT? WHAT HAPPENED TO MY DINNER? PERRIWINKLE THIS IS THE LAST STRAW! IF I FIND OUT THIS WAS YOUR DOING, IT’LL BE WAR!"/> <step origin="reemus" text="TOUCHY!"/> </tree> </dialogue> </setting> ; } public function arriveRock():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 4){ activeCharacter.goto("tossFlag"); activeCharacter.heldItem = 0; activeCharacter.addFrameAction(16, drapeFlag); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { if (activeCharacter.heldItem == 7){ if (((flag.flag.visible) && ((flag.flag.currentFrame == 1)))){ flag.overSplatter.gotoAndPlay(1); flag.overSplatter.alpha = 1; flag.overSplatter.visible = true; flag.circle.gotoAndPlay(1); flag.circle.alpha = 1; flag.circle.visible = true; } else { if (!flag.splatter.visible){ flag.splatter.gotoAndPlay(1); flag.splatter.alpha = 1; flag.splatter.visible = true; }; }; activeCharacter.goto("paint"); activeCharacter.heldItem = 0; activeCharacter.addFrameAction(60, dropFlower); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; }; }; } public function clickRock():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 4){ dynamicLoc["rockLiam"] = new Point(119, 412); } else { dynamicLoc["rockLiam"] = undefined; }; }; moveCharacterToLoc(activeCharacter, "rock"); } public function arriveFlag():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 0){ flag.flag.gotoAndStop(1); flag.flag.visible = false; flag.mouseEnabled = false; activeCharacter.goto("grabDroppedFlag"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.heldItem = 4; dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; }; } public function startWar():void{ CliffMiddle.showTinkertok = true; CliffLeft.startWar(); bell.mouseEnabled = false; bell.mouseChildren = false; tinkertok.play(); flag.mouseEnabled = false; flag.mouseChildren = false; } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); flower.visible = false; } override protected function initialize():void{ super.initialize(); Character.liam.scaleX = 1; Character.liam.scaleY = 1; } private function delayedInit():void{ Character.liam.scaleX = 0.9; Character.liam.scaleY = Character.liam.scaleX; Character.liam.x = (Character.liam.x + 80); TweenLite.delayedCall(0.2, moveCharacter, [Character.reemus, new Point(240, 437)]); TweenLite.delayedCall(0.1, moveCharacter, [Character.liam, new Point(340, 437)]); flag.flag.visible = false; flag.splatter.visible = false; flag.splatter.alpha = 0; flag.splatter.mouseEnabled = false; flag.splatter.stop(); flag.overSplatter.visible = false; flag.overSplatter.alpha = 0; flag.overSplatter.mouseEnabled = false; flag.overSplatter.stop(); flag.circle.visible = false; flag.circle.alpha = 0; flag.circle.mouseEnabled = false; flag.circle.stop(); flag.mouseEnabled = false; tinkertok.flagRef = flag; tinkertok.setting = this; dynamicLoc["bellLiam"] = new Point(400, 426); refreshDepths(new Point(338, 437)); dispatchEvent(new Event(Main.FADE_IN)); dispatchEvent(new Event(Setting.HIDE_LEFT)); dispatchEvent(new Event(Setting.SHOW_CATCHER)); Main.lockCatcher = true; TweenLite.delayedCall(2, alertTinkertok); } public function endTinkerDialogue():void{ tinkertok.gotoAndPlay(71); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } public function alertTinkertok():void{ tinkertok.gotoAndPlay(2); tinkertok.visible = true; setChildIndex(tinkertok, (numChildren - 1)); } override public function destroy():void{ super.destroy(); TweenLite.killDelayedCallsTo(alertTinkertok); } } }//package asfiles.setting
Section 27
//Feature (asfiles.setting.Feature) package asfiles.setting { import flash.display.*; import flash.geom.*; public class Feature extends MovieClip { public var departFunction:String; public var active:Boolean;// = true public var clip:MovieClip; private var leftEdge:Point; public var clickFunction:String; public var depthExclude:Boolean;// = false public var virtualY:Number; public var arriveFunction:String; private var rightEdge:Point; public function Feature(){ active = true; depthExclude = false; super(); virtualY = y; } public function setEdges(_arg1:String, _arg2:String, _arg3:String, _arg4:String):void{ leftEdge = new Point(Number(_arg1), Number(_arg2)); rightEdge = new Point(Number(_arg3), Number(_arg4)); } public function calculateVirtualY(_arg1:Point):Number{ var _local2:Number; if ((((leftEdge == null)) || ((rightEdge == null)))){ return (clip.y); }; _local2 = ((rightEdge.y - leftEdge.y) / (rightEdge.x - leftEdge.x)); return (((_local2 * (_arg1.x - (clip.x + leftEdge.x))) + (clip.y + leftEdge.y))); } } }//package asfiles.setting
Section 28
//ForestLeft (asfiles.setting.ForestLeft) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; import asfiles.setting.features.*; public class ForestLeft extends Setting { public var carriage:Carriage; private var skipDialogue:SkipDialogueOverlay; private var firstVisit:Boolean;// = true public var trees:MovieClip; public var bounds:MovieClip; private var iconSelect:IconSelect; public var liamOutro:MovieClip; public var roach:MovieClip; public var burrow:MovieClip; public var redTree:MovieClip; public function ForestLeft(){ firstVisit = true; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; Setting.playMusic("ForestMusic"); trees.bug.stop(); liamOutro.stop(); liamOutro.visible = false; skipDialogue = new SkipDialogueOverlay(); skipDialogue.buttonMode = true; skipDialogue.addEventListener(MouseEvent.CLICK, onClickSkip); rightExitId = "ForestMiddle"; speechPoints["roach"] = new Point(156, 163); } private function onClickSkip(_arg1:Event):void{ Main.lockCatcher = false; dispatchEvent(new Event(Setting.END_OF_DIALOGUE)); handleSpecialSpeaker(""); endBugDialogue(); endSpeechFunction = ""; } public function arriveCarriage():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 6){ activeCharacter.heldItem = 0; activeCharacter.goto("setDownMushroom"); activeCharacter.addFrameAction(18, dropMushroom); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { if (activeCharacter.heldItem == 5){ activeCharacter.heldItem = 0; activeCharacter.goto("tieBee"); activeCharacter.addFrameAction(31, addNextBee); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.scaleX = -(Math.abs(activeCharacter.scaleX)); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } else { if (carriage.allReady()){ if (redTree.currentFrame > 3){ activeCharacter.say("I THINK IT'S A LITTLE LATE FOR HEROICS NOW."); } else { dispatchEvent(new Event(Setting.HIDE_RIGHT)); dispatchEvent(new Event(Main.HIDE_PORTRAIT)); activeCharacter.visible = false; activeCharacter.x = (activeCharacter.x - 65); carriage.gotoAndStop(1); carriage.liam.gotoAndPlay(1); carriage.liam.visible = true; activeCharacter.say("UP, UP AND AWAY!"); endSpeechFunction = "doLiamOutro"; }; } else { if (carriage.hasAllBees()){ activeCharacter.say("A BEE POWERED CHARIOT! NOW IT JUST NEEDS A SEAT..."); } else { if (carriage.seat.visible){ activeCharacter.say("hmm, now this has potential..."); } else { activeCharacter.say("HMM, THIS COULD BE USEFUL"); }; }; }; }; }; } else { activeCharacter.say("I'M NOT TOUCHING THAT THING, IT'S COVERED IN THORNS..."); }; } public function dropMushroom():void{ carriage.seat.visible = true; if (carriage.allReady()){ carriage.gotoAndStop(2); }; } public function endBugDialogue():void{ iconSelect = new IconSelect(); iconSelect.x = (stage.stageWidth / 2); iconSelect.y = (stage.stageHeight / 2); iconSelect.addEventListener(IconSelect.HIDE_ICON_SELECT, onHideIconSelect); iconSelect.addEventListener(IconSelect.SELECT_LIAM, onSelectLiam); iconSelect.addEventListener(IconSelect.SELECT_REEMUS, onSelectReemus); addChild(iconSelect); skipDialogue.visible = false; speechIndex = 0; speechTree = null; } public function arriveRoach():void{ if ((activeCharacter is Liam)){ activeCharacter.say("HOLD TIGHT, I'LL FIND A WAY TO SAVE YOU!"); } else { activeCharacter.say("i hate POLITICAN ROACHEs. ONE INFESTATION AND they take FOUR YEARS to get rid of."); }; } public function finalizeLiamOutro():void{ dispatchEvent(new Event(Main.FADE_OUT)); TweenLite.delayedCall(1.4, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:"CaveDoor"})]); } public function addNextBee():void{ carriage.addNextBee(); if (carriage.allReady()){ carriage.gotoAndStop(2); }; } public function arriveBurrow():void{ if ((activeCharacter is Liam)){ activeCharacter.say("I'D RATHER NOT FIND OUT WHAT LIVES IN THERE..."); } else { activeCharacter.say("i'm sure whatever lives in there won't mind me toppling a tree ONTO THEIR DINNER..."); }; } private function onSelectLiam(_arg1:Event):void{ activeCharacter = Character.liam; } public function doLiamOutro():void{ carriage.visible = false; addChild(liamOutro); trees.bug.visible = false; liamOutro.visible = true; liamOutro.gotoAndPlay(2); liamOutro.addEventListener("roachSendoff", onRoachSendoff); Character.liam.halt(); Main.lockCatcher = true; mouseChildren = false; mouseEnabled = false; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="632" y="498"/> <point id="rightEntry" x="710" y="465"/> <point id="rightExit" x="730" y="475"/> <point id="redTree" x="617" y="467"/> <point id="carriage" x="493" y="510"/> <point id="trees" x="422" y="509"/> <point id="roach" x="422" y="509"/> <point id="burrow" x="422" y="509"/> <point id="" x="455" y="522"/> <point id="" x="603" y="527"/> <point id="" x="644" y="481"/> <point id="" x="595" y="413"/> </points> <features> <feature id="redTree" active="y" clickFunction="clickRedTree" arriveFunction="arriveRedTree" depX1="0" depY1="320" depX2="150" depY2="286"/> <feature id="trees" active="n" arriveFunction="arriveTrees" depX1="0" depY1="139" depX2="150" depY2="90"/> <feature id="carriage" active="y" clickFunction="clickCarriage" arriveFunction="arriveCarriage" depX1="-20" depY1="4" depX2="20" depY2="4"/> <feature id="roach" active="y" arriveFunction="arriveRoach"/> <feature id="burrow" active="y" arriveFunction="arriveBurrow"/> </features> <dialogue> <tree id="bug_intro"> <step origin="reemus" text="watch your step liam, there's a big drop off right here..."/> <step origin="liam" text="yikes! how are we going to get across that?"/> <step origin="roach" text="hey! you guys need to get out of the forest? i know a secret way out. "/> <step origin="liam" text="really?"/> <step origin="roach" text="sure thing! just get me down from here and i'll show you! "/> <step origin="liam" text="HOW'D YOU GET UP THERE?"/> <step origin="roach" text="LET'S JUST SAY ROACH LEGS ARE ON THE MENU TONIGHT..."/> <step origin="liam" text="OH! reemus, we've got to help him..."/> <step origin="reemus" text="pffft! are you kidding? that's a politician roach, they'll say anything to get what they want!"/> <step origin="roach" text="read my mandibles, I CAN HELP YOU!"/> <step origin="liam" text="he seems trustworthy to me..."/> <step origin="roach" text="thank you kindly."/> <step origin="reemus" text="LIAM, YOU'RE S0 GULLIBLE. let's just knock this tree down and walk out of here."/> <step origin="liam" text="but the tree will crush him..."/> <step origin="reemus" text="yes, and your point is..."/> <step origin="liam" text="ugh! i'm going to find a way to help him..."/> <step origin="reemus" text="fine, i'm going to find something heavy to swing..."/> </tree> </dialogue> </setting> ; } private function onRoachSendoff(_arg1:Event):void{ var _local2:SpeechEvent; _local2 = new SpeechEvent("well a deal's a deal! let's go...", {point:new Point(364, 167)}); endSpeechFunction = "finalizeLiamOutro"; dispatchEvent(_local2); } public function clickRedTree():void{ if ((((((activeCharacter is Reemus)) && ((activeCharacter.heldItem == 4)))) && ((redTree.currentFrame <= 3)))){ dynamicLoc["redTreeReemus"] = new Point(640, 400); } else { dynamicLoc["redTreeReemus"] = undefined; }; moveCharacterToLoc(activeCharacter, "redTree"); } public function arriveRedTree():void{ if (redTree.currentFrame > 3){ Character.liam.heldItem = 0; Character.reemus.goto("dropAxe"); Character.reemus.heldItem = 0; Main.lockCatcher = true; TweenLite.delayedCall(1, dispatchEvent, [new Event(Main.FADE_OUT)]); TweenLite.delayedCall(2.4, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:"CliffRight"})]); } else { if ((activeCharacter is Reemus)){ if ((((activeCharacter.heldItem == 2)) || ((activeCharacter.heldItem == 3)))){ if (getChildIndex(activeCharacter) < getChildIndex(redTree)){ setChildIndex(activeCharacter, getChildIndex(redTree)); }; if (redTree.currentFrame <= 3){ dispatchEvent(new Event(Setting.SHOW_CATCHER)); if (activeCharacter.heldItem == 2){ activeCharacter.goto("stickSwing"); } else { if (activeCharacter.heldItem == 3){ activeCharacter.goto("swingAxeGlue"); }; }; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("HMM, I NEED TO MAKE MORE OF AN IMPACT..."); }; } else { if (activeCharacter.heldItem == 4){ if (getChildIndex(activeCharacter) < getChildIndex(redTree)){ setChildIndex(activeCharacter, getChildIndex(redTree)); }; if (redTree.currentFrame <= 3){ dispatchEvent(new Event(Setting.SHOW_CATCHER)); activeCharacter.goto("axeSwing"); activeCharacter.addFrameAction(5, chopTree); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); }; } else { activeCharacter.say("what a magnificient tree... it'll make an even better bridge..."); }; }; } else { if ((activeCharacter is Liam)){ activeCharacter.say("IT WOULD BE SUCH A SHAME TO KNOCK THIS ANCIENT BEAUTY DOWN..."); }; }; }; } override protected function handleSpecialSpeaker(_arg1:String):void{ if (_arg1 == "roach"){ trees.bug.gotoAndStop(2); } else { trees.bug.gotoAndStop(1); }; } private function onHideIconSelect(_arg1:Event):void{ removeChild(iconSelect); iconSelect.removeEventListener(IconSelect.HIDE_ICON_SELECT, onHideIconSelect); iconSelect.removeEventListener(IconSelect.SELECT_LIAM, onSelectLiam); iconSelect.removeEventListener(IconSelect.SELECT_REEMUS, onSelectReemus); iconSelect = null; dispatchEvent(new Event(Main.SHOW_PORTRAIT)); dispatchEvent(new Event(Setting.SHOW_RIGHT)); } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); if (firstVisit){ if ((_arg1 is Liam)){ _arg1.x = (_arg1.x - 140); _arg1.y = (_arg1.y + 20); }; if (bothCharacters){ TweenLite.delayedCall(0.1, initiateFirstVisit); }; }; } private function onSelectReemus(_arg1:Event):void{ activeCharacter = Character.reemus; } public function clickCarriage():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 5){ dynamicLoc["carriageLiam"] = carriage.getNextBeePoint(); } else { dynamicLoc["carriageLiam"] = undefined; }; }; moveCharacterToLoc(activeCharacter, "carriage"); } private function onBranchCollision(_arg1:Event):void{ trees.gotoAndStop(2); trees.removeEventListener(Main.FRAME_ACTION_PRIMARY, onBranchCollision); } public function chopTree():void{ if (redTree.currentFrame < 3){ redTree.nextFrame(); } else { if (redTree.currentFrame == 3){ redTree.addEventListener(Main.FRAME_ACTION_PRIMARY, onBranchCollision); redTree.play(); activeCharacter.say("TIMBER!"); }; }; } private function initiateFirstVisit():void{ activeCharacter.x = 670; activeCharacter.y = 500; inactiveCharacter.x = 730; inactiveCharacter.y = 530; dispatchEvent(new Event(Setting.HIDE_RIGHT)); TweenLite.delayedCall(0.2, moveCharacter, [activeCharacter.otherCharacter, new Point(500, 530)]); TweenLite.delayedCall(0.1, moveCharacterToLoc, [activeCharacter, "trees"]); dispatchEvent(new Event(Setting.SHOW_CATCHER)); Main.lockCatcher = true; } override public function destroy():void{ super.destroy(); redTree.removeEventListener(Main.FRAME_ACTION_PRIMARY, onBranchCollision); skipDialogue.removeEventListener(MouseEvent.CLICK, onClickSkip); } public function arriveTrees():void{ if (firstVisit){ firstVisit = false; processSpeechTree("bug_intro"); endSpeechFunction = "endBugDialogue"; dispatchEvent(new InfoEvent(Setting.SPECIAL_OVERLAY, {overlay:skipDialogue})); } else { if ((activeCharacter is Liam)){ activeCharacter.say("HOLD TIGHT, I'LL FIND A WAY TO SAVE YOU!"); }; }; } } }//package asfiles.setting
Section 29
//ForestMiddle (asfiles.setting.ForestMiddle) package asfiles.setting { import flash.events.*; import flash.display.*; import asfiles.char.*; import asfiles.*; public class ForestMiddle extends Setting { public var axeHead:MovieClip; public var mushroom:MovieClip; public var stick:MovieClip; public var bounds:MovieClip; public var foreground:MovieClip; public function ForestMiddle(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; leftExitId = "ForestLeft"; rightExitId = "ForestRight"; } public function arriveMushroom():void{ if ((activeCharacter is Liam)){ if ((((activeCharacter.heldItem <= 0)) && (mushroom.cap.visible))){ dispatchEvent(new Event(Setting.SHOW_CATCHER)); mushroom.mouseChildren = false; mushroom.mouseEnabled = false; mushroom.cap.visible = false; activeCharacter.heldItem = 6; activeCharacter.goto("pickUpMushroom"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("SO SOFT AND PLUSH..."); }; } else { activeCharacter.say("EW GROSS!"); }; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="632" y="498"/> <point id="leftEntry" x="0" y="416"/> <point id="leftExit" x="-30" y="416"/> <point id="rightEntry" x="700" y="450"/> <point id="rightExit" x="730" y="450"/> <point id="stick" x="236" y="358"/> <point id="mushroom" x="475" y="357"/> <point id="axeHead" x="460" y="390"/> <point id="" x="129" y="383"/> <point id="" x="335" y="383"/> <point id="" x="448" y="386"/> <point id="" x="610" y="424"/> </points> <features> <feature id="stick" active="y" arriveFunction="arriveStick" depthExclude="y"/> <feature id="mushroom" active="y" arriveFunction="arriveMushroom" depthExclude="y"/> <feature id="axeHead" active="y" arriveFunction="arriveAxeHead" depthExclude="y"/> <feature id="foreground" active="n" depX1="-9" depY1="150" depX2="9" depY2="150"/> </features> </setting> ; } public function arriveAxeHead():void{ if ((activeCharacter is Reemus)){ if (activeCharacter.heldItem == 3){ dispatchEvent(new Event(Setting.SHOW_CATCHER)); axeHead.visible = false; activeCharacter.heldItem = 4; activeCharacter.goto("pickUpAxe"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("NOW THAT'S AN AXE!!"); } else { activeCharacter.say("I better not touch it with my hands, the edges are razor sharp."); }; } else { activeCharacter.say("EVEN IF I COULD LIFT THAT, IT'D CUT MY HANDS CLEAN OFF..."); }; } public function arriveStick():void{ if ((activeCharacter is Reemus)){ if (stick.currentFrame == 1){ dispatchEvent(new Event(Setting.SHOW_CATCHER)); activeCharacter.heldItem = 2; activeCharacter.goto("pullStick"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("now that's a sturdy piece of wood!"); stick.visible = false; }; } else { activeCharacter.say("I'M NOT STRONG ENOUGH TO PULL it OUT..."); }; } } }//package asfiles.setting
Section 30
//ForestRight (asfiles.setting.ForestRight) package asfiles.setting { import flash.events.*; import flash.display.*; import asfiles.char.*; import asfiles.*; import asfiles.setting.features.*; public class ForestRight extends Setting { public var bees:MovieClip; public var miniSquish:MovieClip; public var bounds:MovieClip; public var squishHole:MovieClip; public var foreground:MovieClip; public var nestHitArea:MovieClip; public var smoke:MovieClip; public function ForestRight(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; leftExitId = "ForestMiddle"; } public function takeBee():void{ Bee.removeGrabbed(); } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="leftEntry" x="0" y="400"/> <point id="leftExit" x="-30" y="416"/> <point id="squishHole" x="90" y="315"/> <point id="nestHitArea" x="391" y="408"/> <point id="miniSquish" x="100" y="443"/> <point id="" x="200" y="435"/> <point id="" x="191" y="349"/> <point id="" x="314" y="369"/> <point id="" x="400" y="400"/> </points> <features> <feature id="foreground" active="n" depX1="-9" depY1="0" depX2="9" depY2="0"/> <feature id="squishHole" active="y" depthExclude="y"/> <feature id="miniSquish" active="n" depthExclude="y"/> <feature id="smoke" active="n" depthExclude="y"/> <feature id="nestHitArea" active="y" depthExclude="y" clickFunction="clickBees" arriveFunction="arriveBees"/> <feature id="bees" active="n" depthExclude="y"/> </features> </setting> ; } override protected function onCharacterMoving(_arg1:Event):void{ var _local2:Character; var _local3:Boolean; var _local4:Boolean; _local2 = Character(_arg1.currentTarget); _local3 = (((((Math.abs((_local2.x - squishHole.x)) < 80)) && ((Math.abs((_local2.y - squishHole.y)) < 40)))) || ((((((_local2.setting == _local2.otherCharacter.setting)) && ((Math.abs((_local2.otherCharacter.x - squishHole.x)) < 80)))) && ((Math.abs((_local2.otherCharacter.y - squishHole.y)) < 40))))); _local4 = (((((Math.abs((_local2.x - miniSquish.x)) < 30)) && ((Math.abs((_local2.y - miniSquish.y)) < 20)))) || ((((((_local2.setting == _local2.otherCharacter.setting)) && ((Math.abs((_local2.otherCharacter.x - miniSquish.x)) < 30)))) && ((Math.abs((_local2.otherCharacter.y - miniSquish.y)) < 20))))); if (_local3){ squishHole.gotoAndStop(3); smoke.gotoAndStop(2); Bee.relaxAllBees(true); } else { if (squishHole.currentFrame == 3){ squishHole.gotoAndStop(4); smoke.gotoAndStop(3); Bee.relaxAllBees(false); }; }; if (_local4){ if (!_local3){ squishHole.gotoAndStop(2); }; miniSquish.gotoAndStop(3); } else { if (((!((miniSquish.currentFrame == 1))) && (!((miniSquish.currentFrame == 4))))){ miniSquish.gotoAndStop(4); }; if (squishHole.currentFrame == 2){ squishHole.gotoAndStop(5); }; }; if (bees.currentFrame == 2){ bees.spriteIn.play(); }; super.onCharacterMoving(_arg1); } public function arriveBees():void{ activeCharacter.scaleX = Math.abs(activeCharacter.scaleX); if ((activeCharacter is Reemus)){ if (smoke.currentFrame == 1){ bees.gotoAndStop(2); activeCharacter.say("a glue nest! I CAN SMELL IT FROM HERE..."); } else { if (activeCharacter.heldItem == 2){ dispatchEvent(new Event(Setting.SHOW_CATCHER)); activeCharacter.heldItem = 3; activeCharacter.goto("getGlue"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.queueSpeech("i gotta watch what I touch with this thing, bee glue will bond to anything.."); }; }; } else { if (smoke.currentFrame == 1){ if (smoke.currentFrame == 1){ bees.gotoAndStop(2); }; activeCharacter.say("I BETTER NOT GET TOO CLOSE, THOSE BEES LOOK MEAN..."); } else { if (((!((dynamicLoc["nestHitAreaLiam"] == undefined))) && ((activeCharacter.heldItem <= 0)))){ dispatchEvent(new Event(Setting.SHOW_CATCHER)); activeCharacter.heldItem = 5; activeCharacter.goto("grabBee"); activeCharacter.addFrameAction(12, takeBee); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); } else { if (activeCharacter.heldItem > 0){ activeCharacter.say("MY HANDS ARE FULL."); } else { if (activeCharacter.heldItem <= 0){ activeCharacter.say("I THINK THAT'S ENOUGH BEES."); }; }; }; }; }; } public function clickBees():void{ var _local1:MovieClip; if ((((activeCharacter is Liam)) && (Bee.docile))){ _local1 = Bee.nextGrabbable(); if (_local1 != null){ dynamicLoc["nestHitAreaLiam"] = Bee.nextPoint(); } else { dynamicLoc["nestHitAreaLiam"] = undefined; }; }; moveCharacterToLoc(activeCharacter, "nestHitArea"); } override public function destroy():void{ super.destroy(); Bee.reset(); } } }//package asfiles.setting
Section 31
//LevelSelect (asfiles.setting.LevelSelect) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import com.newgrounds.*; import flash.net.*; import asfiles.char.*; import asfiles.*; public class LevelSelect extends MovieClip { private var destinations:Array; public var locked1:MovieClip; public var locked2:MovieClip; public var liam:MovieClip; public var locked4:MovieClip; public var locked5:MovieClip; public var locked7:MovieClip; public var locked8:MovieClip; public var locked9:MovieClip; public var locked3:MovieClip; public var locked6:MovieClip; public var continueButton:MovieClip; public var ranking1:MovieClip; public var ranking2:MovieClip; public var button1:MovieClip; public var button4:MovieClip; public var button5:MovieClip; public var button6:MovieClip; public var button7:MovieClip; public var button9:MovieClip; public var button3:MovieClip; public var button8:MovieClip; public var button2:MovieClip; private var buttons:Array; public var smash1:MovieClip; public var smash2:MovieClip; public var smash3:MovieClip; public var smash4:MovieClip; public var smash5:MovieClip; public var smash6:MovieClip; public var smash7:MovieClip; public var smash8:MovieClip; public var smash9:MovieClip; public var reemus:MovieClip; private static const NUM_BUTTONS:int = 9; public static const MAKE_SELECTION:String = "makeSelection"; public static var saveFile:SharedObject; public static var currentPath:int = 0; public function LevelSelect(){ var _local1:int; super(); if (Character.liam){ Character.liam.heldItem = 0; Character.reemus.heldItem = 0; }; buttons = new Array(); destinations = ["VisitorLeft", "ForestLeft", "CliffRight", "CaveDoor", "BurrowRight", "CaveInterior", "Spire", "TempleLeft", "BeachLeft"]; _local1 = 1; while (_local1 <= NUM_BUTTONS) { buttons.push(getChildByName(("button" + _local1))); MovieClip(getChildByName(("button" + _local1))).gotoAndStop(1); MovieClip(getChildByName(("locked" + _local1))).mouseEnabled = false; MovieClip(getChildByName(("locked" + _local1))).mouseChildren = false; MovieClip(getChildByName(("locked" + _local1))).gotoAndStop(1); MovieClip(getChildByName(("locked" + _local1))).visible = false; MovieClip(getChildByName(("smash" + _local1))).gotoAndStop(1); MovieClip(getChildByName(("smash" + _local1))).visible = false; MovieClip(getChildByName(("smash" + _local1))).mouseEnabled = false; MovieClip(getChildByName(("smash" + _local1))).mouseChildren = false; _local1++; }; continueButton.buttonMode = true; continueButton.addEventListener(MouseEvent.CLICK, onClickContinue); checkCompletion(); } private function activateList(_arg1:Array):void{ var _local2:int; _local2 = 0; while (_local2 < _arg1.length) { activateNode(_arg1[_local2]); _local2++; }; } private function showRanking():void{ if (root){ if (currentPath == 1){ ranking1.gotoAndPlay(1); ranking1.visible = true; if ((((MovieClip(root).medal_popup.currentFrame == 1)) || ((MovieClip(root).medal_popup.currentFrame == MovieClip(root).medal_popup.totalFrames)))){ if (NewgroundsAPI.hasUserSession()){ MovieClip(root).medal_popup.unlockMedal("PATH OF AGGRESSION"); }; }; if (Main.kongregate){ Main.kongregate.stats.submit("ReemusEnding", 1); }; } else { if (currentPath == 2){ ranking2.gotoAndPlay(1); ranking2.visible = true; if ((((MovieClip(root).medal_popup.currentFrame == 1)) || ((MovieClip(root).medal_popup.currentFrame == MovieClip(root).medal_popup.totalFrames)))){ if (NewgroundsAPI.hasUserSession()){ MovieClip(root).medal_popup.unlockMedal("PATH OF LEAST RESISTANCE"); }; }; if (Main.kongregate){ Main.kongregate.stats.submit("LiamEnding", 1); }; }; }; }; } private function checkAvailability():void{ unlockActivated(); if (((saveFile.data.path1New) && (saveFile.data.path1))){ saveFile.data.path1New = false; }; if (((saveFile.data.path2New) && (saveFile.data.path2))){ saveFile.data.path2New = false; }; saveFile.flush(); } private function smashList(_arg1:Array, _arg2:Number=0):void{ var _local3:int; activateList(_arg1); _local3 = 0; while (_local3 < _arg1.length) { TweenLite.delayedCall(((0.2 * _local3) + _arg2), smashNode, [_arg1[_local3]]); _local3++; }; } private function onClickNode(_arg1:Event):void{ Main(root).gotoAndStop(9); TweenLite.delayedCall(0.1, Main(root).selectLevel, [destinations[buttons.indexOf(_arg1.currentTarget)]]); } private function onClickContinue(_arg1:Event):void{ continueButton.visible = false; TweenLite.to(liam, 0.5, {x:"900"}); TweenLite.to(reemus, 0.5, {x:"-100"}); TweenLite.to(this, 0.5, {x:"-225", onComplete:checkAvailability}); TweenLite.to(MovieClip(parent).credits, 0.5, {y:-237}); } private function unlockActivated():void{ var _local1:int; _local1 = 0; while (_local1 < buttons.length) { if (buttons[_local1].currentFrame == 2){ unlockNode((_local1 + 1)); } else { MovieClip(getChildByName(("locked" + (_local1 + 1)))).visible = true; }; _local1++; }; } private function checkCompletion():void{ saveFile = SharedObject.getLocal("reemusData"); if (currentPath == 1){ saveFile.data.path1 = true; } else { if (currentPath == 2){ saveFile.data.path2 = true; }; }; if (((((saveFile.data.path1New) && (!(saveFile.data.path2)))) || (((saveFile.data.path2New) && (!(saveFile.data.path1)))))){ smashList([1, 2]); } else { activateList([1, 2]); }; if (saveFile.data.path1){ if (saveFile.data.path1New){ smashList([3, 5, 7, 8], 0.4); } else { activateList([3, 5, 7, 8]); }; }; if (saveFile.data.path2){ if (saveFile.data.path2New){ smashList([4, 6, 9], 0.4); } else { activateList([4, 6, 9]); }; }; if (currentPath == 1){ liam.stop(); } else { if (currentPath == 2){ reemus.stop(); } else { liam.visible = false; liam.stop(); reemus.visible = false; reemus.stop(); }; }; ranking2.visible = false; ranking1.visible = false; TweenLite.killDelayedCallsTo(showRanking); TweenLite.delayedCall(1, showRanking); saveFile.flush(); } private function unlockNode(_arg1:int):void{ MovieClip(getChildByName(("locked" + _arg1))).gotoAndStop(3); MovieClip(getChildByName(("locked" + _arg1))).visible = true; MovieClip(getChildByName(("button" + _arg1))).mouseEnabled = true; MovieClip(getChildByName(("button" + _arg1))).buttonMode = true; MovieClip(getChildByName(("button" + _arg1))).addEventListener(MouseEvent.CLICK, onClickNode); } private function activateNode(_arg1:int):void{ MovieClip(getChildByName(("button" + _arg1))).gotoAndStop(2); } private function smashNode(_arg1:int):void{ MovieClip(getChildByName(("smash" + _arg1))).visible = true; MovieClip(getChildByName(("smash" + _arg1))).gotoAndPlay(1); } public static function get returnVisitor():Boolean{ saveFile = SharedObject.getLocal("reemusData"); return (((saveFile.data.path1) || (saveFile.data.path2))); } public static function initSaveFile():void{ saveFile = SharedObject.getLocal("reemusData"); if (saveFile.data.path1 == undefined){ saveFile.data.path1 = false; saveFile.data.path2 = false; saveFile.data.path1New = true; saveFile.data.path2New = true; saveFile.flush(); }; } } }//package asfiles.setting
Section 32
//Setting (asfiles.setting.Setting) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.utils.*; import flash.geom.*; import flash.media.*; import asfiles.char.*; import asfiles.*; public class Setting extends MovieClip { protected var rightExitId:String;// = "" protected var network:Array; protected var features:Array; protected var featureIndeces:Array; protected var speechPoints:Array; protected var dynamicLoc:Array; public var endSpeechFunction:String;// = "" protected var info:XML; protected var nodes:Array; public var activeCharacter:Character; protected var bothCharacters:Boolean;// = false protected var debugColor:uint;// = 0xFF protected var plainNodes:Array; protected var speechIndex:int;// = 0 protected var debugSprite:Sprite; public var id:String; protected var currentPath:Array; protected var speechTree:XML; protected var leftExitId:String;// = "" protected static const INF:Number = 9999; public static const SHOW_CATCHER:String = "showCatcher"; public static const SHOW_LEFT:String = "showLeft"; public static const SPECIAL_OVERLAY:String = "specialOverlay"; public static const HIDE_CATCHER:String = "hideCatcher"; public static const SWITCH_VIEW:String = "switchView"; public static const COMPLETE_AREA:String = "completeArea"; public static const TRAVEL:String = "travel"; public static const RETURN_VIEW:String = "returnView"; protected static const STEP_SIZE:Number = 10; public static const HIDE_LEFT:String = "hideLeft"; public static const FORCE_SWITCH:String = "forceSwitch"; public static const HIDE_OVERLAY:String = "hideOverlay"; public static const SHOW_RIGHT:String = "showRight"; public static const END_OF_DIALOGUE:String = "endOfDialogue"; public static const HIDE_RIGHT:String = "hideRight"; public static var dummyRef:Object; public static var musicMuted:Boolean = false; protected static var music:SoundChannel; protected static var musicId:String; public function Setting(){ endSpeechFunction = ""; speechIndex = 0; debugColor = 0xFF; bothCharacters = false; leftExitId = ""; rightExitId = ""; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; initData(); initialize(); buildFeatureList(); buildNodeList(); TweenLite.delayedCall(0.1, buildNodeNetwork); } protected function byClosest(_arg1:Object, _arg2:Object):int{ if (!(((_arg1.total > 0)) || ((_arg2.total > 0)))){ return (-1); }; if (_arg1.total > _arg2.total){ return (1); }; return (-1); } protected function getValidNodes(_arg1:Array):Array{ var _local2:Array; var _local3:int; _local2 = new Array(); _local3 = 0; while (_local3 < nodes.length) { if (((((!(identicalPoints(_arg1[(_arg1.length - 1)], nodes[_local3]))) && (!(inPath(_arg1, nodes[_local3]))))) && (unobstructed(_arg1[(_arg1.length - 1)], nodes[_local3])))){ _local2.push(nodes[_local3]); }; _local3++; }; return (_local2); } protected function byVirtualY(_arg1:DisplayObject, _arg2:DisplayObject):int{ var _local3:Number; var _local4:Number; if ((((_arg1 == null)) || ((_arg2 == null)))){ return (0); }; _local3 = ((_arg1 is Feature)) ? Feature(_arg1).virtualY : _arg1.y; _local4 = ((_arg2 is Feature)) ? Feature(_arg2).virtualY : _arg2.y; if (_local3 > _local4){ return (1); }; if (_local3 < _local4){ return (-1); }; return (0); } protected function bestPath(_arg1:Number, _arg2:Array, _arg3:Point):Object{ var _local4:Number; var _local5:Array; var _local6:Array; var _local7:Array; var _local8:int; var _local9:int; var _local10:int; _local6 = new Array(); _local7 = new Array(); _local8 = indexOfPoint(_arg2[(_arg2.length - 1)], plainNodes); if (unobstructed(_arg2[(_arg2.length - 1)], _arg3)){ _arg2.push(_arg3); return ({path:_arg2, total:(_arg1 + pointDistance(_arg2[(_arg2.length - 2)], _arg3))}); }; _local9 = 0; while (_local9 < plainNodes.length) { if (((!((_local9 == _local8))) && ((indexOfPoint(plainNodes[_local9], _arg2) < 0)))){ if (_local8 < 0){ _local4 = pointDistance(_arg2[(_arg2.length - 1)], plainNodes[_local9]); if ((((_local4 < INF)) && (unobstructed(_arg2[(_arg2.length - 1)], plainNodes[_local9])))){ _local6.push({ind:_local9, dist:_local4}); }; } else { if (network[_local8][_local9] < INF){ _local6.push({ind:_local9, dist:network[_local8][_local9]}); }; }; }; _local9++; }; if (_local6.length <= 0){ return ({path:_arg2, total:INF}); }; _local10 = 0; while (_local10 < _local6.length) { _local5 = _arg2.slice(0, _arg2.length); _local5.push(plainNodes[_local6[_local10].ind]); _local4 = pointDistance(_local5[(_local5.length - 1)], _local5[(_local5.length - 2)]); _local7.push(bestPath((_arg1 + _local4), _local5, _arg3)); _local10++; }; _local7.sort(byClosest); return (_local7[0]); } public function exitLeft():void{ moveCharacterToLoc(activeCharacter, "leftExit"); } public function handleReturnView():void{ } public function moveCharacter(_arg1:Character, _arg2:Point, _arg3:String=""):void{ _arg1.dislodge(); if (((((((!((_arg1.dest == null))) && (!((_arg1.dest == ""))))) && (!((features[_arg1.dest] == undefined))))) && (!((features[_arg1.dest].departFunction == ""))))){ var _local4 = this; _local4[features[_arg1.dest].departFunction](); }; if (identicalPoints(_arg1.point, _arg2)){ if (features[_arg3].arriveFunction != ""){ _local4 = this; _local4[features[_arg3].arriveFunction](); }; return; } else { if (unobstructed(_arg1.point, _arg2)){ currentPath = [_arg1.point, _arg2]; } else { currentPath = calculatePath(_arg1.point, _arg2); }; }; _arg1.walkPath(currentPath, _arg3); } protected function closestUnobstructed(_arg1:Array):Point{ var _local2:Point; var _local3:Array; var _local4:Number; var _local5:Number; var _local6:int; var _local7:int; _local2 = _arg1[(_arg1.length - 1)]; _local5 = 9999; _local6 = -1; _local3 = getValidNodes(_arg1); _local7 = 0; while (_local7 < _local3.length) { _local4 = Math.sqrt((Math.pow(Math.abs((_local3[_local7].x - _local2.x)), 2) + Math.pow(Math.abs((_local3[_local7].y - _local2.y)), 2))); if (_local4 < _local5){ _local5 = _local4; _local6 = _local7; }; _local7++; }; return (_local3[_local6]); } protected function buildNodeList():void{ var _local1:XML; nodes = new Array(); for each (_local1 in info.points.point) { nodes.push(new Point(Number(_local1.@x), Number(_local1.@y))); if (Main.debugMode){ debugSprite.graphics.beginFill(0xFF0000); debugSprite.graphics.drawRect((Number(_local1.@x) - 8), (Number(_local1.@y) - 8), 4, 4); }; }; } public function handleCharacterSwitch():void{ } protected function buildNodeNetwork():void{ var _local1:Point; var _local2:Point; var _local3:XML; var _local4:int; var _local5:int; plainNodes = new Array(); for each (_local3 in info.points.point) { if ((((_local3.@id == "")) || ((_local3.@id == "entry")))){ plainNodes.push(new Point(Number(_local3.@x), Number(_local3.@y))); }; }; network = new Array(); _local4 = 0; while (_local4 < plainNodes.length) { network.push(new Array()); _local1 = plainNodes[_local4]; _local5 = 0; while (_local5 < plainNodes.length) { _local2 = plainNodes[_local5]; if (_local4 != _local5){ network[_local4][_local5] = (unobstructed(_local1, _local2)) ? pointDistance(_local1, _local2) : INF; } else { network[_local4][_local5] = 0; }; _local5++; }; _local4++; }; } protected function charAtFeature(_arg1:Character, _arg2:String):void{ var _local3:InfoEvent; if (_arg2 == "rightExit"){ _local3 = new InfoEvent(TRAVEL, {dest:rightExitId, entryPoint:"leftEntry"}); dispatchEvent(_local3); } else { if (_arg2 == "leftExit"){ _local3 = new InfoEvent(TRAVEL, {dest:leftExitId, entryPoint:"rightEntry"}); dispatchEvent(_local3); }; }; } protected function onClickFloor(_arg1:Event):void{ moveCharacter(activeCharacter, new Point(mouseX, mouseY)); } protected function calculatePath(_arg1:Point, _arg2:Point):Array{ var _local3:Array; _local3 = bestPath(0, [_arg1], _arg2).path; return (_local3); } public function handleMuteState(_arg1:Boolean):void{ } protected function onAlphaRollover(_arg1:Event):void{ var _local2:DisplayObject; _local2 = DisplayObject(_arg1.currentTarget); TweenLite.to(_local2, 0.3, {alpha:1}); } public function refreshDepths(_arg1:Point):void{ var _local2:Array; var _local3:Feature; var _local4:int; _local2 = new Array(); debugSprite.graphics.beginFill(0x4444); _local4 = 0; while (_local4 < featureIndeces.length) { _local3 = features[featureIndeces[_local4]]; if (!_local3.depthExclude){ _local3.virtualY = _local3.calculateVirtualY(_arg1); _local2.push(_local3); }; _local4++; }; _local2.push(activeCharacter); if (bothCharacters){ _local2.push(activeCharacter.otherCharacter); }; _local2.sort(byVirtualY); _local4 = 0; while (_local4 < _local2.length) { if ((_local2[_local4] is Feature)){ addChild(_local2[_local4].clip); } else { addChild(_local2[_local4]); }; _local4++; }; } protected function initData():void{ } protected function inPath(_arg1:Array, _arg2:Point):Boolean{ var _local3:int; _local3 = 0; while (_local3 < _arg1.length) { if (identicalPoints(_arg1[_local3], _arg2)){ return (true); }; _local3++; }; return (false); } protected function onCharacterMoving(_arg1:Event):void{ var _local2:Character; _local2 = Character(_arg1.currentTarget); refreshDepths(_local2.point); } public function get inactiveCharacter():Character{ return (activeCharacter.otherCharacter); } public function removeCharacter(_arg1:Character):void{ _arg1.removeEventListener(Character.MOVING, onCharacterMoving); _arg1.removeEventListener(Character.PATH_COMPLETE, onPathComplete); _arg1.removeEventListener(Setting.SHOW_CATCHER, onShowCatcher); _arg1.removeEventListener(Setting.HIDE_CATCHER, onHideCatcher); if (bothCharacters){ activeCharacter = activeCharacter.otherCharacter; } else { activeCharacter = null; }; bothCharacters = false; } public function moveCharacterToLoc(_arg1:Character, _arg2:String):void{ var locXml:XML; var char = _arg1; var loc = _arg2; if (dynamicLoc[(loc + char.properName)] == undefined){ locXml = XML(info.points.point.(@id == loc)); moveCharacter(char, new Point(Number(locXml.@x), Number(locXml.@y)), loc); } else { moveCharacter(char, new Point(dynamicLoc[(loc + char.properName)].x, dynamicLoc[(loc + char.properName)].y), loc); }; } protected function handleSpecialSpeaker(_arg1:String):void{ } public function exitOverlay(_arg1:MovieClip):void{ } protected function buildFeatureList():void{ var _local1:String; var _local2:XML; features = new Array(); featureIndeces = new Array(); for each (_local2 in info.features.feature) { _local1 = _local2.@id.toString(); if ((((_local1.length > 0)) && (!((this.getChildByName(_local1) == null))))){ features[_local1] = new Feature(); features[_local1].depthExclude = (_local2.@depthExclude == "y"); features[_local1].clip = this.getChildByName(_local1); features[_local1].clickFunction = _local2.@clickFunction.toString(); features[_local1].arriveFunction = _local2.@arriveFunction.toString(); features[_local1].departFunction = _local2.@departFunction.toString(); if (features[_local1].clip != null){ features[_local1].clip.gotoAndStop(1); if (_local2.@active != "n"){ features[_local1].clip.buttonMode = true; features[_local1].clip.mouseEnabled = true; features[_local1].clip.addEventListener(MouseEvent.MOUSE_DOWN, onClickFeature); } else { features[_local1].clip.mouseEnabled = false; features[_local1].clip.mouseChildren = false; }; }; if (_local2.@depX1.toString().length > 0){ features[_local1].setEdges(_local2.@depX1, _local2.@depY1, _local2.@depX2, _local2.@depY2); }; if (featureIndeces.indexOf(_local1) < 0){ featureIndeces.push(_local1); }; }; }; } public function processSpeechTree(_arg1:String, _arg2:String=""):void{ var $treeId = _arg1; var $endFunc = _arg2; speechTree = XML(info.dialogue.tree.(@id == $treeId.toString())); speechIndex = 0; endSpeechFunction = $endFunc; advanceSpeechTree(); } public function unobstructed(_arg1:Point, _arg2:Point):Boolean{ var _local3:Number; var _local4:Number; var _local5:*; var _local6:Point; _local3 = (_arg2.x - _arg1.x); _local4 = (_arg2.y - _arg1.y); _local5 = getSteps(_local3, _local4); _local6 = new Point(0, 0); _local6.x = _arg1.x; _local6.y = _arg1.y; while ((Math.abs((_local6.x - _arg2.x)) + Math.abs((_local6.y - _arg2.y))) > (STEP_SIZE * 2)) { _local6.x = (_local6.x + _local5.x); _local6.y = (_local6.y + _local5.y); if (Main.debugMode){ debugSprite.graphics.beginFill(debugColor); debugSprite.graphics.drawRect(_local6.x, _local6.y, 2, 2); }; if (!MovieClip(this).bounds.hitTestPoint((_local6.x + x), _local6.y, true)){ if (Main.debugMode){ debugSprite.graphics.beginFill(0xFFFF00); debugSprite.graphics.drawRect((_local6.x - 3), (_local6.y - 3), 6, 6); }; return (false); }; }; return (true); } public function addCharacter(_arg1:Character, _arg2:String=""):void{ var char = _arg1; var loc = _arg2; trace(((((("[Setting] addCharacter - " + char) + " to ") + this) + " at ") + loc)); loc = ((loc.length)>0) ? loc : info.points.children()[0].@id.toString(); addChild(char); char.visible = true; char.x = Number(info.points.point.(@id == loc).@x); char.y = Number(info.points.point.(@id == loc).@y); char.addEventListener(Character.MOVING, onCharacterMoving); char.addEventListener(Character.PATH_COMPLETE, onPathComplete); char.addEventListener(Setting.SHOW_CATCHER, onShowCatcher); char.addEventListener(Setting.HIDE_CATCHER, onHideCatcher); if ((char is Reemus)){ Character.reemusSettingId = id; } else { if ((char is Liam)){ Character.liamSettingId = id; }; }; if (activeCharacter != null){ bothCharacters = true; }; activeCharacter = char; } protected function initialize():void{ debugSprite = new Sprite(); addChild(debugSprite); Character.liam.scaleX = 1; Character.liam.scaleY = 1; Character.reemus.scaleX = 1; Character.reemus.scaleY = 1; dynamicLoc = new Array(); speechPoints = new Array(); addEventListener(Event.ADDED_TO_STAGE, onAddedToStage); MovieClip(this).bounds.addEventListener(MouseEvent.MOUSE_DOWN, onClickFloor); if (!Main.debugMode){ MovieClip(this).bounds.alpha = 0; }; } protected function onShowCatcher(_arg1:Event):void{ dispatchEvent(new Event(SHOW_CATCHER)); } public function exitRight():void{ moveCharacterToLoc(activeCharacter, "rightExit"); } protected function onAddedToStage(_arg1:Event):void{ tabIndex = 1; if (((root) && (!(Main(root).ignoreStageActions)))){ if (rightExitId != ""){ dispatchEvent(new Event(Setting.SHOW_RIGHT)); }; if (leftExitId != ""){ dispatchEvent(new Event(Setting.SHOW_LEFT)); }; }; } protected function onHideCatcher(_arg1:Event):void{ dispatchEvent(new Event(HIDE_CATCHER)); } public function advanceSpeechTree():void{ var _local1:XML; if ((((speechTree == null)) || ((speechIndex >= speechTree.children().length())))){ Main.lockCatcher = false; dispatchEvent(new Event(Setting.END_OF_DIALOGUE)); handleSpecialSpeaker(""); if (endSpeechFunction.length > 0){ var _local2 = this; _local2[endSpeechFunction](); endSpeechFunction = ""; }; } else { _local1 = speechTree.children()[speechIndex]; processSpeechNode(_local1); speechIndex++; }; } protected function onClickFeature(_arg1:Event):void{ var _local2:MovieClip; var _local3:Feature; _local2 = MovieClip(_arg1.currentTarget); _local3 = features[_local2.name]; if (_local3.clickFunction.length > 0){ var _local4 = this; _local4[_local3.clickFunction](); } else { moveCharacterToLoc(activeCharacter, _local2.name); }; } public function processSpeechNode(_arg1:XML):void{ var _local2:SpeechEvent; _local2 = new SpeechEvent(_arg1.@text); handleSpecialSpeaker(""); if (_arg1.@origin == "reemus"){ Character.reemus.dispatchEvent(_local2); } else { if (_arg1.@origin == "liam"){ Character.liam.dispatchEvent(_local2); } else { if (_arg1.@origin == "active"){ activeCharacter.dispatchEvent(_local2); } else { handleSpecialSpeaker(_arg1.@origin); _local2.params.point = speechPoints[_arg1.@origin]; dispatchEvent(_local2); }; }; }; } protected function onAlphaRollout(_arg1:Event):void{ var _local2:DisplayObject; _local2 = DisplayObject(_arg1.currentTarget); TweenLite.to(_local2, 0.3, {alpha:0.3}); } public function destroy():void{ var _local1:int; removeEventListener(Event.ADDED_TO_STAGE, onAddedToStage); Character.liam.removeEventListener(Character.MOVING, onCharacterMoving); Character.liam.removeEventListener(Character.PATH_COMPLETE, onPathComplete); Character.liam.removeEventListener(Setting.SHOW_CATCHER, onShowCatcher); Character.liam.removeEventListener(Setting.HIDE_CATCHER, onHideCatcher); Character.reemus.removeEventListener(Character.MOVING, onCharacterMoving); Character.reemus.removeEventListener(Character.PATH_COMPLETE, onPathComplete); Character.reemus.removeEventListener(Setting.SHOW_CATCHER, onShowCatcher); Character.reemus.removeEventListener(Setting.HIDE_CATCHER, onHideCatcher); if (MovieClip(this).bounds){ MovieClip(this).bounds.removeEventListener(MouseEvent.MOUSE_DOWN, onClickFloor); }; _local1 = 0; while (_local1 < featureIndeces.length) { features[featureIndeces[_local1]].clip.removeEventListener(MouseEvent.MOUSE_DOWN, onClickFeature); _local1++; }; } protected function onPathComplete(_arg1:Event):void{ var _local2:Character; _local2 = Character(_arg1.currentTarget); if (_local2.dest != ""){ if (features[_local2.dest]){ _local2.scaleX = (Math.abs(_local2.scaleX) * ((features[_local2.dest].clip.x)<_local2.x) ? -1 : 1); if (features[_local2.dest].arriveFunction != ""){ var _local3 = this; _local3[features[_local2.dest].arriveFunction](); }; } else { charAtFeature(_local2, _local2.dest); }; }; } public static function stopMusic():void{ musicId = ""; music.stop(); } public static function identicalPoints(_arg1:Point, _arg2:Point):Boolean{ return ((((_arg1.x == _arg2.x)) && ((_arg1.y == _arg2.y)))); } public static function indexOfPoint(_arg1:Point, _arg2:Array):int{ var _local3:int; _local3 = 0; while (_local3 < _arg2.length) { if (identicalPoints(_arg2[_local3], _arg1)){ return (_local3); }; _local3++; }; return (-1); } public static function playMusic(_arg1:String):void{ var _local2:Class; var _local3:Sound; if (((!((_arg1 == musicId))) && (!(musicMuted)))){ if (music){ music.stop(); }; _local2 = (getDefinitionByName(_arg1) as Class); _local3 = new (_local2); music = _local3.play(0, 9999); }; musicId = _arg1; } public static function unmuteMusic():void{ var _local1:String; _local1 = musicId; musicId = ""; musicMuted = false; playMusic(_local1); } public static function pointDistance(_arg1:Point, _arg2:Point):Number{ var _local3:Number; _local3 = (Math.pow(Math.abs((_arg1.x - _arg2.x)), 2) + Math.pow(Math.abs((_arg1.y - _arg2.y)), 2)); _local3 = Math.sqrt(_local3); return (_local3); } public static function getSteps(_arg1:Number, _arg2:Number):Point{ var _local3:Number; var _local4:Number; var _local5:Number; var _local6:Number; _local5 = (Math.abs(_arg1) / (Math.abs(_arg1) + Math.abs(_arg2))); _local6 = (Math.abs(_arg2) / (Math.abs(_arg1) + Math.abs(_arg2))); if (Math.abs(_arg1) <= 1){ _local3 = 0; _local4 = ((Math.abs(_arg2) / _arg2) * STEP_SIZE); } else { if (Math.abs(_arg2) <= 1){ _local3 = ((Math.abs(_arg1) / _arg1) * STEP_SIZE); _local4 = 0; } else { _local3 = (Math.min(STEP_SIZE, (_local5 * STEP_SIZE)) * (Math.abs(_arg1) / _arg1)); _local4 = (Math.min(STEP_SIZE, (_local6 * STEP_SIZE)) * (Math.abs(_arg2) / _arg2)); }; }; return (new Point(_local3, _local4)); } public static function onScreen(_arg1:Point):Boolean{ return (Boolean((((((((_arg1.x > 0)) && ((_arg1.x < 700)))) && ((_arg1.y > 0)))) && ((_arg1.y < 540))))); } public static function muteMusic():void{ musicMuted = true; music.stop(); } } }//package asfiles.setting
Section 33
//Spire (asfiles.setting.Spire) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.geom.*; import asfiles.char.*; import asfiles.*; import asfiles.setting.overlay.*; public class Spire extends Setting { public var bounds:MovieClip; public var spriteIn:MovieClip; public var door:MovieClip; private var pegPuzzle:GenusPegPuzzle; public function Spire(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; Setting.playMusic("SpireMusic"); speechPoints["liamStatic"] = new Point(232, 154); speechPoints["bottomEdge"] = new Point(232, 530); pegPuzzle = new GenusPegPuzzle(); TweenLite.delayedCall(0.1, delayedInit); } public function endLevelIntro():void{ dispatchEvent(new InfoEvent(Setting.SPECIAL_OVERLAY, {overlay:pegPuzzle})); TweenLite.delayedCall(0.1, processSpeechTree, ["puzz_intro"]); } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="1" y="1"/> </points> <features> <feature id="door" active="y" depthExclude="y" clickFunction="clickDoor"/> </features> <dialogue> <tree id="level_intro"> <step origin="liamStatic" text="looks like the only way out of here is through this weird door in the ground."/> </tree> <tree id="puzz_intro"> <step origin="bottomEdge" text="hmm, looks like we have to organize these pegs into groups of three?"/> </tree> </dialogue> </setting> ; } public function endIntroDialogue():void{ dispatchEvent(new InfoEvent(Setting.SPECIAL_OVERLAY, {overlay:pegPuzzle})); dispatchEvent(new Event(Setting.HIDE_CATCHER)); } override public function exitOverlay(_arg1:MovieClip):void{ if ((((_arg1 is GenusPegPuzzle)) && (GenusPegPuzzle(_arg1).solved))){ dispatchEvent(new Event(Setting.SHOW_CATCHER)); door.gotoAndPlay(2); TweenLite.delayedCall(0.6, dispatchEvent, [new Event(Main.FADE_OUT)]); TweenLite.delayedCall(2, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:"TempleLeft"})]); }; } public function clickDoor():void{ if (door.currentFrame == 1){ dispatchEvent(new InfoEvent(Setting.SPECIAL_OVERLAY, {overlay:pegPuzzle})); TweenLite.delayedCall(0.1, processSpeechTree, ["puzz_intro"]); } else { dispatchEvent(new Event(Main.FADE_OUT)); TweenLite.delayedCall(1.4, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:"TempleLeft"})]); }; } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); _arg1.visible = false; } private function delayedInit():void{ processSpeechTree("level_intro"); endSpeechFunction = "endLevelIntro"; } } }//package asfiles.setting
Section 34
//TempleLeft (asfiles.setting.TempleLeft) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.media.*; import asfiles.char.*; import asfiles.*; import asfiles.setting.features.*; import com.relish.managers.*; public class TempleLeft extends Setting { public var pool:MovieClip; public var vase:MovieClip; private var firstVisit:Boolean;// = true public var streamRight:MovieClip; public var bounds:MovieClip; public var streams:MovieClip; public var streamMiddle:MovieClip; public var foreground:MovieClip; public var streamLeft:MovieClip; private var flowChannel:SoundChannel; public static var flow:String = "none"; public function TempleLeft(){ firstVisit = true; super(); if (((root) && ((Main(root).currentFrame == 2)))){ return; }; Setting.playMusic("TempleMusic"); rightExitId = "TempleMiddle"; TweenLite.delayedCall(0.1, delayedInit); } protected function fillVase(_arg1:Object):void{ Vase.color = _arg1.color; Vase.filled = false; Vase.pouring = false; activeCharacter.goto("fillVase"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); activeCharacter.heldItem = (14 + Vase.color); dispatchEvent(new Event(Setting.SHOW_CATCHER)); } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="112" y="425"/> <point id="rightEntry" x="720" y="438"/> <point id="rightExit" x="790" y="438"/> <point id="vase" x="340" y="413"/> <point id="pool" x="360" y="413"/> <point id="streamLeft" x="241" y="413"/> <point id="streamMiddle" x="340" y="413"/> <point id="streamRight" x="442" y="413"/> </points> <features> <feature id="foreground" active="n"/> <feature id="vase" active="y" depthExclude="y" arriveFunction="arriveVase"/> <feature id="pool" active="y" depthExclude="y" arriveFunction="arrivePool"/> <feature id="streamLeft" active="y" depthExclude="y" arriveFunction="arriveStreamLeft"/> <feature id="streamMiddle" active="y" depthExclude="y" arriveFunction="arriveStreamMiddle"/> <feature id="streamRight" active="y" depthExclude="y" arriveFunction="arriveStreamRight"/> <feature id="streams" active="n" depthExclude="y"/> </features> </setting> ; } public function removeVase():void{ vase.visible = false; } protected function onRemovedFromStage(_arg1:Event):void{ if (flowChannel){ flowChannel.stop(); }; } public function arriveStreamRight():void{ handleStream((3 + (3 * int((streams.currentFrame == 2))))); } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); _arg1.visible = true; _arg1.alpha = 1; } override protected function initialize():void{ super.initialize(); Character.reemus.scaleX = 1.19; Character.reemus.scaleY = 1.19; Character.liam.scaleX = 1.05; Character.liam.scaleY = 1.05; } protected function delayedInit():void{ if (firstVisit){ dispatchEvent(new Event(Setting.HIDE_CATCHER)); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); Character.reemus.x = (Character.reemus.x + 60); Character.reemus.goto("bounce"); vase.play(); firstVisit = false; }; } public function arrivePool():void{ if ((activeCharacter is Liam)){ if ((((activeCharacter.heldItem > 14)) && ((activeCharacter.heldItem <= 20)))){ Vase.pouring = true; Vase.pourColor = Vase.color; activeCharacter.heldItem = 14; activeCharacter.goto("dumpVase"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } else { activeCharacter.say("SOMEONE NEEDS TO FLUSH THIS TOILET."); }; } override protected function onAddedToStage(_arg1:Event):void{ var _local2:Sound; super.onAddedToStage(_arg1); if (flow == "left"){ streams.gotoAndStop(1); } else { if (flow == "right"){ streams.gotoAndStop(2); } else { streams.gotoAndStop(3); }; }; if ((((flow == "left")) || ((flow == "right")))){ _local2 = new WaterfallSound(); flowChannel = _local2.play(0, 999); AudioManager.allSounds.push(_local2); }; streamLeft.mouseEnabled = !((streams.currentFrame == 3)); streamMiddle.mouseEnabled = !((streams.currentFrame == 3)); streamRight.mouseEnabled = !((streams.currentFrame == 3)); addEventListener(Event.REMOVED_FROM_STAGE, onRemovedFromStage); } public function arriveStreamMiddle():void{ handleStream((2 + (3 * int((streams.currentFrame == 2))))); } public function arriveVase():void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 0){ activeCharacter.heldItem = 14; activeCharacter.goto("getVase"); activeCharacter.addFrameAction(10, removeVase); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } else { activeCharacter.say("I DRAW THE LINE AT FISHING HOUSEWARES OUT OF BROWN SLUDGE."); }; } protected function handleStream(_arg1:int):void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem == 14){ Vase.filled = false; Vase.color = _arg1; activeCharacter.goto("fillVase"); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); activeCharacter.heldItem = (14 + Vase.color); } else { if ((((activeCharacter.heldItem > 14)) && ((activeCharacter.heldItem <= 20)))){ Vase.pouring = true; Vase.pourColor = Vase.color; activeCharacter.goto("dumpVase"); activeCharacter.addFrameAction(30, fillVase, {color:_arg1}); activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; }; } else { activeCharacter.say("TROPICAL PUNCH FOUNTAIN? NO... WISHFUL THINKING."); }; } public function arriveStreamLeft():void{ handleStream((1 + (3 * int((streams.currentFrame == 2))))); } override public function destroy():void{ super.destroy(); flow = "none"; if (flowChannel){ flowChannel.stop(); }; removeEventListener(Event.REMOVED_FROM_STAGE, onRemovedFromStage); } } }//package asfiles.setting
Section 35
//TempleMiddle (asfiles.setting.TempleMiddle) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import asfiles.char.*; import asfiles.*; public class TempleMiddle extends Setting { public var stoneLeft:MovieClip; public var statueLeft:MovieClip; public var pipesLeft:MovieClip; public var pipesRight:MovieClip; public var statueRight:MovieClip; public var bounds:MovieClip; public var stoneRight:MovieClip; public var foreground:MovieClip; public function TempleMiddle(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; leftExitId = "TempleLeft"; rightExitId = "TempleRight"; TweenLite.delayedCall(0.1, delayedInit); } public function departStatueRight():void{ if ((activeCharacter is Reemus)){ TempleLeft.flow = "none"; if (pipesRight.currentFrame >= 10){ pipesRight.play(); } else { pipesRight.gotoAndStop(1); }; if (stoneRight.currentFrame >= 10){ stoneRight.play(); } else { stoneRight.gotoAndStop(1); }; }; } public function arriveStatueLeft():void{ if ((activeCharacter is Reemus)){ TempleLeft.flow = "left"; if (pipesLeft.currentFrame < 10){ pipesLeft.play(); } else { if (pipesLeft.currentFrame > 10){ pipesLeft.gotoAndPlay(2); }; }; if (stoneLeft.currentFrame < 13){ stoneLeft.play(); } else { if (stoneLeft.currentFrame > 13){ stoneLeft.gotoAndPlay(2); }; }; } else { activeCharacter.say("IT FEELS LIKE THIS STONE SHOULD MOVE, BUT I'M NOT HEAVY ENOUGH"); }; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="leftEntry" x="-20" y="430"/> <point id="leftExit" x="-90" y="430"/> <point id="rightEntry" x="720" y="430"/> <point id="rightExit" x="790" y="430"/> <point id="statueLeft" x="208" y="365"/> <point id="statueRight" x="499" y="365"/> <point id="stoneLeft" x="208" y="365"/> <point id="stoneRight" x="499" y="365"/> <point id="exit" x="194" y="469"/> <point id="" x="581" y="421"/> </points> <features> <feature id="foreground" active="n"/> <feature id="pipesLeft" active="y" depthExclude="y" clickFunction="clickPipes"/> <feature id="pipesRight" active="y" depthExclude="y" clickFunction="clickPipes"/> <feature id="statueLeft" active="y" depthExclude="y" clickFunction="clickStatueLeft" arriveFunction="arriveStatueLeft" departFunction="departStatueLeft"/> <feature id="statueRight" active="y" depthExclude="y" clickFunction="clickStatueRight" arriveFunction="arriveStatueRight" departFunction="departStatueRight"/> <feature id="stoneLeft" active="y" depthExclude="y" clickFunction="clickStatueLeft" arriveFunction="arriveStatueLeft" departFunction="departStatueLeft"/> <feature id="stoneRight" active="y" depthExclude="y" clickFunction="clickStatueRight" arriveFunction="arriveStatueRight" departFunction="departStatueRight"/> </features> </setting> ; } public function departStatueLeft():void{ if ((activeCharacter is Reemus)){ TempleLeft.flow = "none"; if (pipesLeft.currentFrame >= 10){ pipesLeft.play(); } else { pipesLeft.gotoAndStop(1); }; if (stoneLeft.currentFrame >= 10){ stoneLeft.play(); } else { stoneLeft.gotoAndStop(1); }; }; } public function arriveStatueRight():void{ if ((activeCharacter is Reemus)){ TempleLeft.flow = "right"; if (pipesRight.currentFrame < 10){ pipesRight.play(); } else { if (pipesRight.currentFrame > 10){ pipesRight.gotoAndPlay(2); }; }; if (stoneRight.currentFrame < 10){ stoneRight.play(); } else { if (stoneRight.currentFrame > 10){ stoneRight.gotoAndPlay(2); }; }; } else { activeCharacter.say("IT FEELS LIKE THIS STONE SHOULD MOVE, BUT I'M NOT HEAVY ENOUGH"); }; } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); } override protected function initialize():void{ super.initialize(); Character.reemus.scaleX = 1.19; Character.reemus.scaleY = 1.19; Character.liam.scaleX = 1.05; Character.liam.scaleY = 1.05; } protected function delayedInit():void{ dispatchEvent(new Event(Setting.HIDE_CATCHER)); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); } override protected function onAddedToStage(_arg1:Event):void{ super.onAddedToStage(_arg1); } public function clickStatueLeft():void{ if (pipesLeft.currentFrame > 1){ activeCharacter.say("ONLY ROOM FOR ONE ON THERE, AND REEMUS ISN'T A CUDDLER."); } else { moveCharacterToLoc(activeCharacter, "statueLeft"); }; } public function clickTubes():void{ if ((activeCharacter is Liam)){ activeCharacter.say("THESE TUBES SEEM TO LEAD BACK TO THE FOUNTAIN."); }; } public function clickStatueRight():void{ if (pipesRight.currentFrame > 1){ activeCharacter.say("ONLY ROOM FOR ONE ON THERE, AND REEMUS ISN'T A CUDDLER."); } else { moveCharacterToLoc(activeCharacter, "statueRight"); }; } } }//package asfiles.setting
Section 36
//TempleRight (asfiles.setting.TempleRight) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import asfiles.char.*; import asfiles.*; import asfiles.setting.features.*; public class TempleRight extends Setting { public var leftButton:MovieClip; public var rightButton:MovieClip; public var bounds:MovieClip; public var leftStatue:PaintStatue; public var rightStatue:PaintStatue; public var foreground:MovieClip; public var door:MovieClip; public function TempleRight(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; leftExitId = "TempleMiddle"; TweenLite.delayedCall(0.1, delayedInit); } public function drainLeft():void{ leftButton.gotoAndStop(1); leftStatue.addEventListener(PaintStatue.FINISHED, onLeftStatueFinish); leftStatue.drain(); } public function handleStatue(_arg1:PaintStatue):void{ if ((activeCharacter is Liam)){ if (activeCharacter.heldItem <= 14){ activeCharacter.say("THEY’RE HOLDING VASES FOR CERMEMONIAL OFFERINGS."); } else { if ((((activeCharacter.heldItem > 14)) && ((activeCharacter.heldItem <= 20)))){ if (_arg1.topFill.currentFrame != _arg1.topFill.totalFrames){ activeCharacter.say("THIS ONE'S FULL. I CAN'T POUR ANY MORE IN."); } else { Vase.pourColor = Vase.color; Vase.pouring = true; activeCharacter.heldItem = 14; activeCharacter.goto("pourVase"); if (_arg1.bottomFill.currentFrame == _arg1.bottomFill.totalFrames){ _arg1.bottomFill.gotoAndStop(Vase.color); } else { if (_arg1.midFill.currentFrame == _arg1.midFill.totalFrames){ _arg1.midFill.gotoAndStop(Vase.color); } else { _arg1.topFill.gotoAndStop(Vase.color); }; }; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; }; }; } else { activeCharacter.say("IT’S STAGGER AND SWAY, THE GODS OF BINGE DRINKING."); }; } public function arriveLeftButton():void{ handleButton(leftButton); } private function checkDoor():void{ if ((((leftButton.currentFrame == 2)) && ((rightButton.currentFrame == 2)))){ door.play(); }; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="leftEntry" x="-20" y="414"/> <point id="leftExit" x="-80" y="414"/> <point id="door" x="339" y="348"/> <point id="leftButton" x="93" y="335"/> <point id="leftStatue" x="93" y="335"/> <point id="rightButton" x="456" y="370"/> <point id="rightStatue" x="456" y="370"/> <point id="" x="8" y="372"/> </points> <features> <feature id="foreground" active="n"/> <feature id="leftButton" active="y" depthExclude="y" arriveFunction="arriveLeftButton"/> <feature id="rightButton" active="y" depthExclude="y" arriveFunction="arriveRightButton"/> <feature id="door" active="y" depthExclude="y" arriveFunction="arriveDoor"/> <feature id="leftStatue" active="y" depthExclude="y" arriveFunction="arriveLeftStatue"/> <feature id="rightStatue" active="y" depthExclude="y" arriveFunction="arriveRightStatue"/> </features> </setting> ; } public function drainRight():void{ rightButton.gotoAndStop(1); rightStatue.addEventListener(PaintStatue.FINISHED, onRightStatueFinish); rightStatue.drain(); } public function arriveLeftStatue():void{ handleStatue(leftStatue); } public function arriveRightButton():void{ handleButton(rightButton); } public function arriveDoor():void{ if (door.currentFrame > 1){ dispatchEvent(new Event(Main.FADE_OUT)); TweenLite.delayedCall(1.4, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:""})]); TweenLite.delayedCall(1.5, Main(root).gotoAndStop, [11]); } else { if ((activeCharacter is Reemus)){ activeCharacter.say("I DON'T SEE A DOORKNOB ANYWHERE."); } else { activeCharacter.say("IT LOOKS LIKE SOME SORT OF DOOR, BUT I COULDN'T POSSIBLY PUSH IT OPEN."); }; }; } private function onLeftStatueFinish(_arg1:Event):void{ if (leftStatue.lastCombo == "341"){ leftButton.gotoAndStop(2); leftStatue.mouseEnabled = false; leftButton.mouseEnabled = false; } else { leftButton.gotoAndStop(3); }; dispatchEvent(new Event(Setting.HIDE_CATCHER)); checkDoor(); } public function handleButton(_arg1:MovieClip):void{ if ((activeCharacter is Liam)){ activeCharacter.goto("pushButton"); if (_arg1 == leftButton){ activeCharacter.addFrameAction(13, drainLeft); } else { activeCharacter.addFrameAction(13, drainRight); }; activeCharacter.queueSprite({sprite:"waiting", frm:1, andPlay:true}, true); dispatchEvent(new Event(Setting.SHOW_CATCHER)); }; } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); } override protected function initialize():void{ super.initialize(); Character.reemus.scaleX = 1.19; Character.reemus.scaleY = 1.19; Character.liam.scaleX = 1.05; Character.liam.scaleY = 1.05; } protected function delayedInit():void{ dispatchEvent(new Event(Setting.HIDE_CATCHER)); dispatchEvent(new Event(Main.SHOW_PORTRAIT)); } override protected function onAddedToStage(_arg1:Event):void{ super.onAddedToStage(_arg1); } private function onRightStatueFinish(_arg1:Event):void{ if (rightStatue.lastCombo == "526"){ rightButton.gotoAndStop(2); rightStatue.mouseEnabled = false; rightButton.mouseEnabled = false; } else { rightButton.gotoAndStop(3); }; dispatchEvent(new Event(Setting.HIDE_CATCHER)); checkDoor(); } public function arriveRightStatue():void{ handleStatue(rightStatue); } override public function destroy():void{ super.destroy(); leftStatue.removeEventListener(PaintStatue.FINISHED, onLeftStatueFinish); rightStatue.removeEventListener(PaintStatue.FINISHED, onRightStatueFinish); } } }//package asfiles.setting
Section 37
//VisitorLeft (asfiles.setting.VisitorLeft) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import asfiles.char.*; import asfiles.*; public class VisitorLeft extends Setting { public var bounds:MovieClip; public var mainFeature:MovieClip; public var web:MovieClip; public var cave:MovieClip; public var branch:MovieClip; public var trunk:MovieClip; public var grass:MovieClip; public function VisitorLeft(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; Setting.playMusic("VisitorLeftMusic"); mainFeature.addEventListener("endOfClip", onEndOfClip); TweenLite.delayedCall(0.1, delayedInit); } public function clickWeb():void{ branch.visible = false; web.visible = false; mainFeature.gotoAndStop(4); } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="1" y="1"/> </points> <features> <feature id="mainFeature" active="n" depthExclude="y"/> <feature id="trunk" active="y" depthExclude="y" clickFunction="clickTrunk"/> <feature id="branch" active="y" depthExclude="y" clickFunction="clickBranch"/> <feature id="web" active="y" depthExclude="y" clickFunction="clickWeb"/> <feature id="cave" active="y" depthExclude="y" clickFunction="clickCave"/> <feature id="grass" active="y" depthExclude="y" clickFunction="clickGrass"/> </features> </setting> ; } public function clickGrass():void{ cave.visible = false; grass.visible = false; mainFeature.gotoAndStop(10); } public function clickTrunk():void{ trunk.visible = false; mainFeature.gotoAndStop(2); } public function clickCave():void{ cave.visible = false; grass.visible = false; if (mainFeature.currentFrame <= 9){ mainFeature.gotoAndStop(1); mainFeature.gotoAndStop(9); } else { mainFeature.gotoAndStop(11); TweenLite.delayedCall(2.5, dispatchEvent, [new Event(Main.FADE_OUT)]); TweenLite.delayedCall(3.9, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {proceedTo:"VisitorRight"})]); }; } private function onEndOfClip(_arg1:Event):void{ if (mainFeature.currentFrame == 1){ trunk.visible = true; } else { if ((((mainFeature.currentFrame == 2)) || ((mainFeature.currentFrame == 3)))){ branch.visible = true; web.visible = true; } else { if (mainFeature.currentFrame == 4){ mainFeature.gotoAndStop(5); } else { if (mainFeature.currentFrame == 5){ branch.visible = true; } else { if (mainFeature.currentFrame == 6){ mainFeature.gotoAndStop(7); } else { if (mainFeature.currentFrame == 7){ mainFeature.gotoAndStop(8); } else { if ((((mainFeature.currentFrame == 8)) || ((mainFeature.currentFrame == 9)))){ grass.visible = true; cave.visible = true; } else { if (mainFeature.currentFrame == 10){ cave.visible = true; }; }; }; }; }; }; }; }; } public function clickBranch():void{ branch.visible = false; web.visible = false; if (mainFeature.currentFrame == 3){ mainFeature.spriteIn.gotoAndPlay(1); } else { if (mainFeature.currentFrame < 3){ mainFeature.gotoAndStop(3); } else { mainFeature.gotoAndStop(6); }; }; } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); _arg1.visible = false; } private function delayedInit():void{ trunk.visible = false; branch.visible = false; web.visible = false; cave.visible = false; grass.visible = false; } } }//package asfiles.setting
Section 38
//VisitorRight (asfiles.setting.VisitorRight) package asfiles.setting { import flash.events.*; import flash.display.*; import gs.*; import flash.media.*; import asfiles.char.*; import asfiles.*; import com.relish.managers.*; public class VisitorRight extends Setting { public var fruit:MovieClip; public var frogBeast:MovieClip; public var fisherman:MovieClip; public var fish:MovieClip; public var flyFruitTree:MovieClip; public var bounds:MovieClip; public var branch1:MovieClip; public var branch3:MovieClip; public var branch2:MovieClip; public var mainFeature:MovieClip; public var water:MovieClip; private var delayedFunc:Function; public var flyFruit:MovieClip; public var frog:MovieClip; public var rod:MovieClip; private var fireChannel:SoundChannel; public function VisitorRight(){ if (((root) && ((Main(root).currentFrame == 2)))){ return; }; Setting.playMusic("VisitorRightMusic"); frogBeast.visible = false; mainFeature.addEventListener("endOfClip", onEndOfClip); frog.addEventListener("endOfClip", onEndOfFrog); frogBeast.addEventListener("endOfClip", onFrogBeastStop); fisherman.addEventListener("endOfClip", onFishermanStop); TweenLite.delayedCall(0.1, delayedInit); } public function clickFish():void{ mouseChildren = false; if (mainFeature.currentFrame != 3){ mainFeature.gotoAndStop(3); delayedFunc = clickFish; } else { if (fish.currentFrame < 4){ branch1.visible = false; fish.mouseEnabled = false; fish.gotoAndStop(4); fish.addEventListener("endOfClip", onEatFish); }; }; } public function clickBranch1():void{ mouseChildren = false; if (mainFeature.currentFrame != 3){ mainFeature.gotoAndStop(3); delayedFunc = clickBranch1; } else { if (frog.currentFrame < 4){ mainFeature.gotoAndStop(11); } else { rod.visible = false; branch1.visible = false; frogBeast.gotoAndPlay(1); frogBeast.visible = true; }; }; } public function clickBranch3():void{ mouseChildren = false; branch3.visible = false; if (fruit.currentFrame == 1){ fruit.mouseEnabled = true; }; frogBeast.gotoAndPlay("lastHop"); } public function clickBranch2():void{ mouseChildren = false; branch2.visible = false; branch3.visible = true; frogBeast.gotoAndPlay("nextHop"); } private function onFishermanStop(_arg1:Event):void{ if (fisherman.currentFrame < 4){ fisherman.gotoAndStop(1); mainFeature.gotoAndStop(2); mouseChildren = true; } else { dispatchEvent(new Event(Main.FADE_OUT)); TweenLite.delayedCall(1.4, dispatchEvent, [new InfoEvent(Setting.COMPLETE_AREA, {})]); TweenLite.delayedCall(1.4, Main(root).gotoAndStop, [4]); }; } public function clickWater():void{ mouseChildren = false; water.visible = false; branch2.visible = false; branch3.visible = false; fruit.mouseEnabled = false; fruit.mouseChildren = false; if (frogBeast.currentLabel == "emerge"){ frogBeast.gotoAndPlay("lowDive"); } else { if (frogBeast.currentLabel == "nextHop"){ frogBeast.gotoAndPlay("mediumDive"); } else { frogBeast.gotoAndPlay("highDive"); }; }; } override public function handleMuteState(_arg1:Boolean):void{ trace(("[VisitorRight] handleMuteState - " + _arg1)); if (!_arg1){ playFireSound(); } else { if (fireChannel){ fireChannel.stop(); }; }; } override protected function initData():void{ info = <setting minScale="0.2" maxScale="1.2"> <points> <point id="entry" x="1" y="1"/> </points> <features> <feature id="mainFeature" active="n" depthExclude="y"/> <feature id="flyFruitTree" active="n" depthExclude="y"/> <feature id="frogBeast" active="n" depthExclude="y"/> <feature id="flyFruit" active="y" depthExclude="y" clickFunction="clickFlyFruit"/> <feature id="frog" active="y" depthExclude="y" clickFunction="clickFrog"/> <feature id="fish" active="y" depthExclude="y" clickFunction="clickFish"/> <feature id="rod" active="y" depthExclude="y" clickFunction="clickRod"/> <feature id="fruit" active="y" depthExclude="y" clickFunction="clickFruit"/> <feature id="branch1" active="y" depthExclude="y" clickFunction="clickBranch1"/> <feature id="branch2" active="y" depthExclude="y" clickFunction="clickBranch2"/> <feature id="branch3" active="y" depthExclude="y" clickFunction="clickBranch3"/> <feature id="water" active="y" depthExclude="y" clickFunction="clickWater"/> </features> </setting> ; } private function onEatFish(_arg1:Event):void{ mainFeature.gotoAndStop(8); mouseChildren = true; } protected function onRemovedFromStage(_arg1:Event):void{ if (fireChannel){ fireChannel.stop(); }; } public function clickFlyFruit():void{ mouseChildren = false; if (flyFruitTree.currentFrame == 1){ if (mainFeature.currentFrame != 3){ mainFeature.gotoAndStop(3); delayedFunc = clickFlyFruit; } else { mainFeature.gotoAndStop(4); flyFruit.visible = false; flyFruitTree.play(); frog.gotoAndStop(2); }; }; } private function onFrogBeastStop(_arg1:Event):void{ if (frogBeast.currentLabel == "emerge"){ mouseChildren = true; branch1.visible = false; branch2.visible = true; water.visible = true; } else { if ((((frogBeast.currentLabel == "nextHop")) || ((frogBeast.currentLabel == "lastHop")))){ mouseChildren = true; } else { if (frogBeast.currentLabel == "chew"){ mouseChildren = true; fruit.gotoAndStop(2); } else { if (frogBeast.currentLabel.indexOf("Dive") >= 0){ mouseChildren = true; rod.visible = true; branch1.visible = true; fish.mouseEnabled = true; mainFeature.gotoAndStop(2); }; }; }; }; } public function clickRod():void{ mouseChildren = false; if (((!((mainFeature.currentFrame == 3))) && ((fish.currentFrame < 4)))){ mainFeature.gotoAndStop(3); delayedFunc = clickRod; } else { if (fish.currentFrame >= 4){ mainFeature.visible = false; fisherman.gotoAndStop(4); } else { if (frog.currentFrame < 4){ fisherman.gotoAndStop(2); } else { fisherman.gotoAndStop(3); }; }; }; } public function clickFrog():void{ mouseChildren = false; if (mainFeature.currentFrame != 3){ mainFeature.gotoAndStop(3); delayedFunc = clickFrog; } else { if (flyFruitTree.currentFrame == 1){ frog.gotoAndStop(3); } else { branch1.visible = true; frog.gotoAndStop(4); }; }; } private function onEndOfClip(_arg1:Event):void{ if (mainFeature.currentFrame == 1){ flyFruit.visible = true; branch1.visible = true; rod.visible = true; mainFeature.gotoAndStop(2); } else { if (mainFeature.currentFrame == 3){ delayedFunc(); } else { if (mainFeature.currentFrame == 4){ mouseChildren = true; mainFeature.gotoAndStop(2); } else { if (mainFeature.currentFrame == 11){ mainFeature.gotoAndStop(12); } else { if (mainFeature.currentFrame == 12){ mouseChildren = true; mainFeature.gotoAndStop(2); }; }; }; }; }; } public function clickFruit():void{ mouseChildren = false; fish.gotoAndStop(2); fruit.mouseEnabled = false; fruit.mouseChildren = false; frogBeast.gotoAndPlay("chew"); } override public function addCharacter(_arg1:Character, _arg2:String=""):void{ super.addCharacter(_arg1, _arg2); _arg1.visible = false; } private function delayedInit():void{ flyFruit.visible = false; frog.mouseEnabled = false; fish.mouseEnabled = false; fruit.mouseEnabled = false; branch1.visible = false; branch2.visible = false; branch3.visible = false; water.visible = false; fisherman.gotoAndStop(2); fisherman.gotoAndStop(1); } override protected function onAddedToStage(_arg1:Event):void{ if (!AudioManager.isMuted){ playFireSound(); }; addEventListener(Event.REMOVED_FROM_STAGE, onRemovedFromStage); } private function playFireSound():void{ var _local1:Sound; if (fireChannel){ fireChannel.stop(); fireChannel = null; }; _local1 = new CampfireSound(); fireChannel = _local1.play(0, 999); } private function onEndOfFrog(_arg1:Event):void{ if (frog.currentFrame == 3){ frog.gotoAndStop(1); mainFeature.gotoAndStop(2); mouseChildren = true; } else { if (frog.currentFrame == 4){ mainFeature.gotoAndStop(2); mouseChildren = true; }; }; } override public function destroy():void{ super.destroy(); if (fireChannel){ fireChannel.stop(); fireChannel = null; }; } } }//package asfiles.setting
Section 39
//Credits (asfiles.Credits) package asfiles { import flash.events.*; import flash.display.*; import flash.net.*; import asfiles.setting.*; public class Credits extends MovieClip { public var sponsorButton:MovieClip; public var favorButton:MovieClip; public var restartButton:MovieClip; public var mitchButton:MovieClip; public var betaButton:MovieClip; public var reemusButton:MovieClip; public var negativeButton:MovieClip; public var zeebarfButton:MovieClip; public function Credits(){ zeebarfButton.buttonMode = true; zeebarfButton.addEventListener(MouseEvent.CLICK, onClickZeebarf); negativeButton.buttonMode = true; negativeButton.addEventListener(MouseEvent.CLICK, onClickNegative); mitchButton.buttonMode = true; mitchButton.addEventListener(MouseEvent.CLICK, onClickMitch); betaButton.buttonMode = true; betaButton.addEventListener(MouseEvent.CLICK, onClickBeta); favorButton.buttonMode = true; favorButton.addEventListener(MouseEvent.CLICK, onClickFavor); restartButton.buttonMode = true; restartButton.addEventListener(MouseEvent.CLICK, onClickRestart); reemusButton.buttonMode = true; reemusButton.addEventListener(MouseEvent.CLICK, onClickReemus); sponsorButton.buttonMode = true; sponsorButton.addEventListener(MouseEvent.CLICK, onClickSponsor); } private function onClickZeebarf(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.zeebarf.com"), "_blank"); } private function onClickNegative(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.negativeflash.com"), "_blank"); } private function onClickMitch(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.myspace.com/mitchellbowden"), "_blank"); } private function onClickBeta(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.zeebarf.com/zeelist.html"), "_blank"); } private function onClickFavor(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.newgrounds.com/collection/asmallfavor"), "_blank"); } private function onClickRestart(_arg1:Event):void{ Setting.stopMusic(); Main(root).gotoAndStop(3); } private function onClickSponsor(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.newgrounds.com/refer/zeebarf"), "_blank"); } private function onClickReemus(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.newgrounds.com/collection/reemus.html"), "_blank"); } } }//package asfiles
Section 40
//Cutscene (asfiles.Cutscene) package asfiles { import flash.events.*; import flash.display.*; public class Cutscene extends MovieClip { protected var skipButton:SkipButton; public var monstermouth3:MovieClip; public var monstermouth4:MovieClip; public var monstermouth2:MovieClip; public var monstermouth1:MovieClip; public var spriteIn:MovieClip; public function Cutscene(){ buttonMode = true; addEventListener(MouseEvent.CLICK, onClickAnywhere); skipButton = new SkipButton(); skipButton.x = (640 - x); skipButton.y = (507 - y); skipButton.buttonMode = true; skipButton.addEventListener(MouseEvent.MOUSE_DOWN, onClickSkip); addChild(skipButton); addEventListener(Event.ENTER_FRAME, updateDepths); addEventListener(Event.REMOVED_FROM_STAGE, selfCleanup); } protected function onClickSkip(_arg1:Event):void{ if ((((MovieClip(root).currentFrame >= 4)) && ((MovieClip(root).currentFrame <= 6)))){ Main(root).gotoAndStop(7); } else { gotoAndPlay(totalFrames); }; } protected function updateDepths(_arg1:Event):void{ addChild(skipButton); } protected function onClickAnywhere(_arg1:Event):void{ play(); } protected function selfCleanup(_arg1:Event):void{ skipButton.removeEventListener(MouseEvent.MOUSE_DOWN, onClickSkip); removeEventListener(Event.REMOVED_FROM_STAGE, selfCleanup); } } }//package asfiles
Section 41
//GameIntroDialogue (asfiles.GameIntroDialogue) package asfiles { import flash.events.*; import flash.display.*; public class GameIntroDialogue extends MovieClip { public var newGameButton:MovieClip; public var continueGameButton:MovieClip; public function GameIntroDialogue(){ addFrameScript(12, frame13); visible = false; newGameButton.addEventListener(MouseEvent.CLICK, onClickNew); newGameButton.buttonMode = true; continueGameButton.addEventListener(MouseEvent.CLICK, onClickContinue); continueGameButton.buttonMode = true; } private function onClickNew(_arg1:Event):void{ Main(root).intro.play(); visible = false; } function frame13(){ stop(); } private function onClickContinue(_arg1:Event):void{ Main(root).gotoAndStop(12); visible = false; } } }//package asfiles
Section 42
//InfoEvent (asfiles.InfoEvent) package asfiles { import flash.events.*; public class InfoEvent extends Event { public var data:Object; public function InfoEvent(_arg1:String, _arg2:Object=null){ super(_arg1); data = ((_arg2 == null)) ? new Object() : _arg2; } } }//package asfiles
Section 43
//Main (asfiles.Main) package asfiles { import flash.events.*; import flash.display.*; import gs.*; import flash.utils.*; import flash.geom.*; import flash.net.*; import com.kongregate.as3.client.*; import asfiles.char.*; import asfiles.setting.*; import com.relish.managers.*; public class Main extends MovieClip { private var clickCatcher:Sprite; private var reemus:Reemus; public var poop:MovieClip; private var areaKeys:Array; public var leftArrow:MovieClip; public var setting:Setting; public var resetDialogue:ResetDialogue; private var liam:Liam; public var intro:introshot1; private var bubble:SpeechBubble; private var area:Array; private var saveFile:SharedObject; public var musicMuteButton:MusicMuteButton; public var API_Settings:Object; private var blackout:Sprite; public var soundMuteButton:SoundMuteButton; private var forcedView:Setting; public var rightArrow:MovieClip; private var specialOverlay:MovieClip; public var medal_popup:MovieClip; private var bubbleOwner:String;// = "" public var gameIntroDialogue:GameIntroDialogue; private var levelSelect:LevelSelect; public var portrait:Portrait; private var entrySetting:String; public var firstEvent:InfoEvent; public var newgroundsAPIconnector:MovieClip; public static const FRAME_ACTION_PRIMARY:String = "faPrimary"; public static const SHOW_PORTRAIT:String = "showPortrait"; public static const FADE_IN:String = "fadeIn"; public static const FADE_OUT:String = "fadeOut"; public static const HIDE_PORTRAIT:String = "hidePortrait"; public static var debugMode:Boolean = false; public static var dummyRef:Object; public static var lockCatcher:Boolean = false; public static var kongregate:KongregateAPI; public function Main(){ bubbleOwner = ""; super(); addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 6, frame7, 7, frame8, 8, frame9, 12, frame13); AudioManager.init(); LevelSelect.initSaveFile(); kongregate = new KongregateAPI(); this.addChild(kongregate); dummyRef = new Object(); Setting.dummyRef = dummyRef; area = new Array(); areaKeys = new Array(); } public function resetSetting():void{ Character.reemus.visible = true; Character.liam.visible = true; Character.reemus.alpha = 1; Character.liam.alpha = 1; Character.reemus.heldItem = 0; Character.liam.heldItem = 0; Character.reemus.goto("bounce"); Character.liam.goto("bounce"); Character.reemus.goto("waiting"); Character.liam.goto("waiting"); onCompleteArea(new InfoEvent("x", {proceedTo:entrySetting})); } private function onFeatureSpeak(_arg1:SpeechEvent):void{ clickCatcher.visible = true; clickCatcher.buttonMode = true; setting.activeCharacter.shush(); setting.activeCharacter.otherCharacter.shush(); bubbleOwner = ""; destroyBubble(); bubble = new SpeechBubble(_arg1.speech); bubble.x = (setting.x + _arg1.params.point.x); bubble.y = _arg1.params.point.y; if (_arg1.params.altTip){ bubble.bubble.tip.alpha = 0; bubble.bubble.altTip.alpha = 1; bubble.bubble.altTip.x = 32; bubble.bubble.altTip.y = -53; } else { bubble.assessOrientation(); }; bubble.bubble.tip.scaleY = 1; if (_arg1.params.color){ TweenLite.to(bubble.label, 0, {tint:_arg1.params.color}); } else { TweenLite.to(bubble.label, 0, {tint:0}); }; addChild(bubble); } private function onClickReemusButton(_arg1:Event):void{ switchCharacter(reemus); } private function onShowLeftArrow(_arg1:Event):void{ TweenLite.killTweensOf(leftArrow); leftArrow.alpha = 0; TweenLite.to(leftArrow, 0.5, {autoAlpha:1, delay:0.2}); } private function onRolloverArrow(_arg1:Event):void{ MovieClip(_arg1.currentTarget).gotoAndStop(2); } private function onLevelSelect(_arg1:InfoEvent):void{ travelTo(_arg1.data.id); Character.reemus.goto("bounce"); Character.liam.goto("bounce"); Character.reemus.goto("waiting"); Character.liam.goto("waiting"); setting.addCharacter(liam); setting.addCharacter(reemus); fadeIn(); addChildAt(setting, 0); if (((levelSelect) && (contains(levelSelect)))){ removeChild(levelSelect); }; } public function showResetDialogue():void{ resetDialogue.visible = true; restackUI(); } private function onRolloutArrow(_arg1:Event):void{ MovieClip(_arg1.currentTarget).gotoAndStop(1); } private function onFadeOut(_arg1:Event):void{ fadeOut(); } function frame2(){ } function frame3(){ stop(); if (LevelSelect.returnVisitor){ intro.stop(); gameIntroDialogue.visible = true; }; } function frame4(){ fadeIn(); } function frame7(){ firstEvent = new InfoEvent(LevelSelect.MAKE_SELECTION, {id:"ForestLeft"}); onLevelSelect(firstEvent); initialize(); } private function buildInterface():void{ if (Character.liam == null){ liam = new Liam(); liam.addEventListener(SpeechEvent.SPEAK, onCharacterSpeak); liam.addEventListener(Character.RETURN_IDLE, onIdle); Character.liam = liam; } else { liam = Character.liam; }; if (Character.reemus == null){ reemus = new Reemus(); reemus.addEventListener(SpeechEvent.SPEAK, onCharacterSpeak); reemus.addEventListener(Character.RETURN_IDLE, onIdle); Character.reemus = reemus; } else { reemus = Character.reemus; }; if (clickCatcher == null){ clickCatcher = new Sprite(); clickCatcher.graphics.beginFill(0xFFFF00, (debugMode) ? 0.4 : 0); clickCatcher.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight); clickCatcher.visible = false; clickCatcher.addEventListener(MouseEvent.CLICK, onCaughtClick); addChild(clickCatcher); }; if (blackout == null){ blackout = new Sprite(); blackout.graphics.beginFill(0, 1); blackout.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight); blackout.alpha = 0; blackout.visible = false; addChild(blackout); }; restackUI(); } private function switchCharacter(_arg1:Character):void{ if (_arg1 != setting.activeCharacter){ _arg1.otherCharacter.halt(); _arg1.otherCharacter.triedRelocate = true; _arg1.visible = true; if (setting != _arg1.setting){ removeChild(setting); if (areaKeys.indexOf(Setting(_arg1.parent).id) >= 0){ setting = area[Setting(_arg1.parent).id]; } else { if ((_arg1 is Reemus)){ setting = area[Character.reemusSettingId]; } else { setting = area[Character.liamSettingId]; }; }; leftArrow.visible = false; rightArrow.visible = false; addChildAt(setting, 0); }; setting.activeCharacter = _arg1; setting.refreshDepths(_arg1.point); setting.handleCharacterSwitch(); }; portrait.gotoAndStop(setting.activeCharacter.otherCharacter.properName.toLowerCase()); } function frame13(){ gotoAndStop(14); } private function onIdle(_arg1:Event):void{ var _local2:Character; _local2 = Character(_arg1.currentTarget); if (((bubble) && ((bubbleOwner == _local2.properName.toLowerCase())))){ if (((_local2.spriteIn) && (_local2.spriteIn.mouth))){ _local2.spriteIn.mouth.gotoAndPlay("talk"); }; }; } private function onSwitchCharacter(_arg1:Event):void{ switchCharacter(setting.inactiveCharacter); } function frame9(){ initialize(); buildInterface(); } private function onHidePortrait(_arg1:Event):void{ portrait.show(false); } private function onEndOfDialogue(_arg1:Event):void{ destroyBubble(); if (!lockCatcher){ clickCatcher.visible = false; clickCatcher.buttonMode = false; }; setting.activeCharacter.shush(); setting.activeCharacter.otherCharacter.shush(); } function frame1(){ stop(); stage.showDefaultContextMenu = false; API_Settings = {movie_id:7787, enc_key:"S5upWSwyivIDaarTeFIuaQcdQhAST35h", debug_mode:false, movie_version:""}; newgroundsAPIconnector.initialize(API_Settings); } private function onClickLeft(_arg1:Event):void{ setting.exitLeft(); } function frame8(){ initialize(); buildInterface(); firstRun(); } private function onClickRight(_arg1:Event):void{ setting.exitRight(); } public function fadeIn():void{ TweenLite.to(blackout, 0, {autoAlpha:1}); TweenLite.to(blackout, 1, {autoAlpha:0}); } private function onClickLiamButton(_arg1:Event):void{ switchCharacter(liam); } private function onCompleteArea(_arg1:InfoEvent):void{ if (_arg1.data.proceedTo == undefined){ destroyArea(); } else { if (_arg1.data.atPoint == undefined){ destroyArea(_arg1.data.proceedTo, ""); } else { destroyArea(_arg1.data.proceedTo, _arg1.data.atPoint); }; }; if (_arg1.data.proceedTo != undefined){ if (setting){ setting.addCharacter(liam); setting.addCharacter(reemus); }; fadeIn(); }; } private function onCaughtClick(_arg1:Event):void{ if (bubble){ removeChild(bubble); bubble = null; setting.advanceSpeechTree(); }; } public function get ignoreStageActions():Boolean{ return (!((forcedView == null))); } private function onSpecialOverlay(_arg1:InfoEvent):void{ specialOverlay = _arg1.data.overlay; specialOverlay.addEventListener(Setting.HIDE_OVERLAY, onHideOverlay); if (!_arg1.data.ignoreCatcher){ clickCatcher.visible = true; }; addChildAt(specialOverlay, getChildIndex(portrait)); restackUI(); } private function destroyBubble():void{ if (bubble){ if (contains(bubble)){ removeChild(bubble); }; bubble = null; }; } public function fadeOut():void{ TweenLite.to(blackout, 1, {autoAlpha:1}); } private function travelTo(_arg1:String, _arg2:String="entryPoint"):void{ var _local3:Class; var _local4:Character; leftArrow.visible = false; rightArrow.visible = false; if (setting != null){ _local4 = setting.activeCharacter; setting.removeCharacter(setting.activeCharacter); removeChild(setting); }; if (areaKeys.indexOf(_arg1) >= 0){ setting = area[_arg1]; } else { _local3 = (getDefinitionByName(("asfiles.setting." + _arg1)) as Class); setting = new (_local3); setting.id = _arg1; setting.addEventListener(Setting.TRAVEL, onTravel); area[_arg1] = setting; if (areaKeys.length <= 0){ entrySetting = _arg1; }; areaKeys.push(_arg1); }; setting.addEventListener(Setting.SHOW_LEFT, onShowLeftArrow); setting.addEventListener(Setting.SHOW_RIGHT, onShowRightArrow); setting.addEventListener(Setting.HIDE_LEFT, onHideLeftArrow); setting.addEventListener(Setting.HIDE_RIGHT, onHideRightArrow); setting.addEventListener(Setting.SHOW_CATCHER, onShowCatcher); setting.addEventListener(Setting.HIDE_CATCHER, onHideCatcher); setting.addEventListener(Setting.END_OF_DIALOGUE, onEndOfDialogue); setting.addEventListener(Setting.SPECIAL_OVERLAY, onSpecialOverlay); setting.addEventListener(Setting.SWITCH_VIEW, onSwitchView); setting.addEventListener(Setting.RETURN_VIEW, onReturnView); setting.addEventListener(Setting.FORCE_SWITCH, onSwitchCharacter); setting.addEventListener(Setting.COMPLETE_AREA, onCompleteArea); setting.addEventListener(SpeechEvent.SPEAK, onFeatureSpeak); setting.addEventListener(SHOW_PORTRAIT, onShowPortrait); setting.addEventListener(HIDE_PORTRAIT, onHidePortrait); setting.addEventListener(FADE_IN, onFadeIn); setting.addEventListener(FADE_OUT, onFadeOut); if (_local4 != null){ setting.addCharacter(_local4, _arg2); if (_local4.x < 100){ TweenLite.delayedCall(0.1, setting.moveCharacter, [_local4, new Point((_local4.x + 60), _local4.y)]); } else { if (_local4.x > (stage.stageWidth - 50)){ TweenLite.delayedCall(0.1, setting.moveCharacter, [_local4, new Point((_local4.x - 60), _local4.y)]); }; }; }; addChildAt(setting, 0); addChild(clickCatcher); addChild(blackout); restackUI(); } private function onSwitchView(_arg1:InfoEvent):void{ switchView(_arg1.data.dest); } private function onReturnView(_arg1:Event):void{ returnView(); } private function onShowPortrait(_arg1:Event):void{ portrait.gotoAndStop(setting.activeCharacter.otherCharacter.properName.toLowerCase()); portrait.show(true); } private function onHideOverlay(_arg1:Event):void{ specialOverlay.removeEventListener(Setting.HIDE_OVERLAY, onHideOverlay); clickCatcher.visible = false; setting.exitOverlay(specialOverlay); removeChild(specialOverlay); specialOverlay = null; } private function onHideLeftArrow(_arg1:Event):void{ TweenLite.killTweensOf(leftArrow); leftArrow.visible = false; leftArrow.alpha = 0; } private function restackUI():void{ var _local1:Array; var _local2:int; _local1 = ["musicMuteButton", "soundMuteButton", "refreshButton", "skipButton", "resetDialogue"]; _local2 = 0; while (_local2 < _local1.length) { if (getChildByName(_local1[_local2]) != null){ addChild(getChildByName(_local1[_local2])); }; _local2++; }; if (((specialOverlay) && ((specialOverlay is SkipDialogueOverlay)))){ addChild(specialOverlay); }; } private function onFadeIn(_arg1:Event):void{ fadeIn(); } private function initialize():void{ leftArrow.buttonMode = true; leftArrow.addEventListener(MouseEvent.CLICK, onClickLeft); leftArrow.addEventListener(MouseEvent.ROLL_OVER, onRolloverArrow); leftArrow.addEventListener(MouseEvent.ROLL_OUT, onRolloutArrow); leftArrow.gotoAndStop(1); rightArrow.buttonMode = true; rightArrow.addEventListener(MouseEvent.CLICK, onClickRight); rightArrow.addEventListener(MouseEvent.ROLL_OVER, onRolloverArrow); rightArrow.addEventListener(MouseEvent.ROLL_OUT, onRolloutArrow); rightArrow.gotoAndStop(1); portrait.addEventListener(Portrait.SWITCH_CHARACTER, onSwitchCharacter); } private function onShowCatcher(_arg1:Event):void{ clickCatcher.visible = true; if (!bubble){ clickCatcher.buttonMode = false; }; restackUI(); } private function destroyArea(_arg1:String="", _arg2:String=""):void{ var _local3:Setting; var _local4:int; Setting.stopMusic(); _local4 = 0; while (_local4 < areaKeys.length) { _local3 = area[areaKeys[_local4]]; _local3.removeEventListener(Setting.SHOW_LEFT, onShowLeftArrow); _local3.removeEventListener(Setting.SHOW_RIGHT, onShowRightArrow); _local3.removeEventListener(Setting.HIDE_LEFT, onHideLeftArrow); _local3.removeEventListener(Setting.HIDE_RIGHT, onHideRightArrow); _local3.removeEventListener(Setting.SHOW_CATCHER, onShowCatcher); _local3.removeEventListener(Setting.HIDE_CATCHER, onHideCatcher); _local3.removeEventListener(Setting.END_OF_DIALOGUE, onEndOfDialogue); _local3.removeEventListener(Setting.SPECIAL_OVERLAY, onSpecialOverlay); _local3.removeEventListener(Setting.SWITCH_VIEW, onSwitchView); _local3.removeEventListener(Setting.RETURN_VIEW, onReturnView); _local3.removeEventListener(Setting.TRAVEL, onTravel); _local3.removeEventListener(Setting.FORCE_SWITCH, onSwitchCharacter); _local3.removeEventListener(Setting.COMPLETE_AREA, onCompleteArea); _local3.removeEventListener(SpeechEvent.SPEAK, onFeatureSpeak); _local3.removeEventListener(SHOW_PORTRAIT, onShowPortrait); _local3.removeEventListener(HIDE_PORTRAIT, onHidePortrait); _local3.removeEventListener(FADE_IN, onFadeIn); _local3.removeEventListener(FADE_OUT, onFadeOut); _local3.scaleX = 0.5; _local3.destroy(); if (_local3.contains(liam)){ _local3.removeChild(liam); }; if (_local3.contains(reemus)){ _local3.removeChild(reemus); }; while (_local3.numChildren > 0) { _local3.removeChildAt(0); }; if (contains(_local3)){ removeChild(_local3); }; area[areaKeys[_local4]] = null; _local3 = null; _local4++; }; if (specialOverlay){ if (contains(specialOverlay)){ removeChild(specialOverlay); }; specialOverlay.removeEventListener(Setting.HIDE_OVERLAY, onHideOverlay); specialOverlay = null; }; addChild(liam); removeChild(liam); addChild(reemus); removeChild(reemus); setting = null; areaKeys = []; AudioManager.destroyAllSounds(); if (_arg1 != ""){ travelTo(_arg1, _arg2); }; } private function onHideCatcher(_arg1:Event):void{ if (((!(lockCatcher)) && (!(bubble)))){ clickCatcher.visible = false; clickCatcher.buttonMode = false; }; } private function firstRun():void{ var _local1:InfoEvent; if (Main.debugMode){ gotoAndStop(12); } else { _local1 = new InfoEvent(LevelSelect.MAKE_SELECTION, {id:"VisitorLeft"}); onLevelSelect(_local1); }; } private function onTravel(_arg1:InfoEvent):void{ travelTo(_arg1.data.dest, _arg1.data.entryPoint); } public function selectLevel(_arg1:String):void{ travelTo(_arg1); setting.addCharacter(liam); setting.addCharacter(reemus); fadeIn(); addChildAt(setting, 0); } private function onShowRightArrow(_arg1:Event):void{ TweenLite.killTweensOf(rightArrow); rightArrow.alpha = 0; TweenLite.to(rightArrow, 0.5, {autoAlpha:1, delay:0.2}); } private function onHideRightArrow(_arg1:Event):void{ TweenLite.killTweensOf(rightArrow); rightArrow.visible = false; rightArrow.alpha = 0; } private function onCharacterSpeak(_arg1:SpeechEvent):void{ var _local2:Character; var _local3:uint; _local2 = Character(_arg1.currentTarget); _local3 = ((_local2 is Reemus)) ? 0xDD0000 : 6697881; if (_arg1.speech.length <= 0){ clickCatcher.visible = false; clickCatcher.buttonMode = false; _local2.shush(); destroyBubble(); return; }; clickCatcher.visible = true; clickCatcher.buttonMode = true; _local2.otherCharacter.shush(); bubbleOwner = ((_local2 is Reemus)) ? "reemus" : "liam"; if (((_local2.spriteIn) && (_local2.spriteIn.mouth))){ _local2.spriteIn.mouth.gotoAndPlay("talk"); }; destroyBubble(); bubble = new SpeechBubble(_arg1.speech); bubble.x = (((setting.x + _local2.x) - 20) + (30 * int((_local2.scaleX > 0)))); bubble.y = (_local2.y - (((_local2 is Reemus)) ? Character.REEMUS_HEIGHT : Character.LIAM_HEIGHT * _local2.scaleY)); bubble.assessOrientation(); bubble.bubble.tip.scaleY = (1 / bubble.bubble.scaleY); TweenLite.to(bubble.label, 0, {tint:_local3}); addChild(bubble); } private function returnView():void{ if (((forcedView) && (contains(forcedView)))){ removeChild(forcedView); }; forcedView = null; setting.handleReturnView(); } private function switchView(_arg1:String):void{ if (area[_arg1] == setting){ return; }; if (((forcedView) && (contains(forcedView)))){ removeChild(forcedView); }; forcedView = area[_arg1]; addChild(forcedView); } } }//package asfiles
Section 44
//MiniCredits (asfiles.MiniCredits) package asfiles { import flash.events.*; import flash.display.*; import flash.net.*; public class MiniCredits extends MovieClip { public var mitchButton:MovieClip; public var moreReemusButton:MovieClip; public var negativeButton:MovieClip; public var zeebarfButton:MovieClip; public function MiniCredits(){ zeebarfButton.buttonMode = true; zeebarfButton.addEventListener(MouseEvent.CLICK, onClickZeebarf); negativeButton.buttonMode = true; negativeButton.addEventListener(MouseEvent.CLICK, onClickNegative); mitchButton.buttonMode = true; mitchButton.addEventListener(MouseEvent.CLICK, onClickMitch); moreReemusButton.buttonMode = true; moreReemusButton.addEventListener(MouseEvent.CLICK, onClickReemus); } private function onClickZeebarf(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.zeebarf.com"), "_blank"); } private function onClickNegative(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.negativeflash.com"), "_blank"); } private function onClickMitch(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.myspace.com/mitchellbowden"), "_blank"); } private function onClickReemus(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.newgrounds.com/collection/reemus.html"), "_blank"); } } }//package asfiles
Section 45
//MusicMuteButton (asfiles.MusicMuteButton) package asfiles { import flash.events.*; import flash.display.*; import asfiles.setting.*; public class MusicMuteButton extends MovieClip { public var hitBox:MovieClip; public function MusicMuteButton(){ addFrameScript(0, frame1); trace(("construct " + Setting.musicMuted)); buttonMode = true; gotoAndStop((Setting.musicMuted) ? 2 : 1); hitBox.addEventListener(MouseEvent.CLICK, onClickToggle); } function frame1(){ stop(); } private function onClickToggle(_arg1:Event):void{ trace(("click " + currentFrame)); if (currentFrame == 1){ gotoAndStop(2); Setting.muteMusic(); } else { gotoAndStop(1); Setting.unmuteMusic(); }; } } }//package asfiles
Section 46
//ResetButton (asfiles.ResetButton) package asfiles { import flash.events.*; import flash.display.*; public class ResetButton extends MovieClip { public function ResetButton(){ stop(); buttonMode = true; addEventListener(MouseEvent.CLICK, onClick); } private function onClick(_arg1:Event):void{ if (root){ Main(root).showResetDialogue(); }; } } }//package asfiles
Section 47
//ResetDialogue (asfiles.ResetDialogue) package asfiles { import flash.events.*; import flash.display.*; public class ResetDialogue extends MovieClip { public var noButton:MovieClip; public var yesButton:MovieClip; public function ResetDialogue(){ visible = false; yesButton.addEventListener(MouseEvent.CLICK, onClickYes); yesButton.buttonMode = true; noButton.addEventListener(MouseEvent.CLICK, onClickNo); noButton.buttonMode = true; } private function onClickYes(_arg1:Event):void{ if (root){ Main(root).resetSetting(); }; visible = false; } private function onClickNo(_arg1:Event):void{ visible = false; } } }//package asfiles
Section 48
//SoundMuteButton (asfiles.SoundMuteButton) package asfiles { import flash.events.*; import flash.display.*; import com.relish.managers.*; public class SoundMuteButton extends MovieClip { public var hitBox:MovieClip; public function SoundMuteButton(){ addFrameScript(0, frame1); buttonMode = true; gotoAndStop((AudioManager.isMuted) ? 2 : 1); hitBox.addEventListener(MouseEvent.CLICK, onClickToggle); } function frame1(){ stop(); } private function onClickToggle(_arg1:Event):void{ if (currentFrame == 1){ gotoAndStop(2); AudioManager.toggleMuting(true); if (root){ MovieClip(root).setting.handleMuteState(true); }; } else { gotoAndStop(1); AudioManager.toggleMuting(false); if (root){ MovieClip(root).setting.handleMuteState(false); }; }; } } }//package asfiles
Section 49
//MD5 (com.adobe.crypto.MD5) package com.adobe.crypto { import flash.utils.*; import com.adobe.utils.*; public class MD5 { public static var digest:ByteArray; private static function ff(_arg1:int, _arg2:int, _arg3:int, _arg4:int, _arg5:int, _arg6:int, _arg7:int):int{ return (transform(f, _arg1, _arg2, _arg3, _arg4, _arg5, _arg6, _arg7)); } private static function f(_arg1:int, _arg2:int, _arg3:int):int{ return (((_arg1 & _arg2) | (~(_arg1) & _arg3))); } private static function g(_arg1:int, _arg2:int, _arg3:int):int{ return (((_arg1 & _arg3) | (_arg2 & ~(_arg3)))); } private static function h(_arg1:int, _arg2:int, _arg3:int):int{ return (((_arg1 ^ _arg2) ^ _arg3)); } private static function i(_arg1:int, _arg2:int, _arg3:int):int{ return ((_arg2 ^ (_arg1 | ~(_arg3)))); } private static function transform(_arg1:Function, _arg2:int, _arg3:int, _arg4:int, _arg5:int, _arg6:int, _arg7:int, _arg8:int):int{ var _local9:int; _local9 = (((_arg2 + int(_arg1(_arg3, _arg4, _arg5))) + _arg6) + _arg8); return ((IntUtil.rol(_local9, _arg7) + _arg3)); } private static function hh(_arg1:int, _arg2:int, _arg3:int, _arg4:int, _arg5:int, _arg6:int, _arg7:int):int{ return (transform(h, _arg1, _arg2, _arg3, _arg4, _arg5, _arg6, _arg7)); } public static function hash(_arg1:String):String{ var _local2:ByteArray; _local2 = new ByteArray(); _local2.writeUTFBytes(_arg1); return (hashBinary(_local2)); } private static function createBlocks(_arg1:ByteArray):Array{ var _local2:Array; var _local3:int; var _local4:int; var _local5:int; _local2 = new Array(); _local3 = (_arg1.length * 8); _local4 = 0xFF; _local5 = 0; while (_local5 < _local3) { _local2[int((_local5 >> 5))] = (_local2[int((_local5 >> 5))] | ((_arg1[(_local5 / 8)] & _local4) << (_local5 % 32))); _local5 = (_local5 + 8); }; _local2[int((_local3 >> 5))] = (_local2[int((_local3 >> 5))] | (128 << (_local3 % 32))); _local2[int(((((_local3 + 64) >>> 9) << 4) + 14))] = _local3; return (_local2); } public static function hashBinary(_arg1:ByteArray):String{ var _local2:int; var _local3:int; var _local4:int; var _local5:int; var _local6:int; var _local7:int; var _local8:int; var _local9:int; var _local10:Array; var _local11:int; var _local12:int; _local2 = 1732584193; _local3 = -271733879; _local4 = -1732584194; _local5 = 271733878; _local10 = createBlocks(_arg1); _local11 = _local10.length; _local12 = 0; while (_local12 < _local11) { _local6 = _local2; _local7 = _local3; _local8 = _local4; _local9 = _local5; _local2 = ff(_local2, _local3, _local4, _local5, _local10[int((_local12 + 0))], 7, -680876936); _local5 = ff(_local5, _local2, _local3, _local4, _local10[int((_local12 + 1))], 12, -389564586); _local4 = ff(_local4, _local5, _local2, _local3, _local10[int((_local12 + 2))], 17, 606105819); _local3 = ff(_local3, _local4, _local5, _local2, _local10[int((_local12 + 3))], 22, -1044525330); _local2 = ff(_local2, _local3, _local4, _local5, _local10[int((_local12 + 4))], 7, -176418897); _local5 = ff(_local5, _local2, _local3, _local4, _local10[int((_local12 + 5))], 12, 1200080426); _local4 = ff(_local4, _local5, _local2, _local3, _local10[int((_local12 + 6))], 17, -1473231341); _local3 = ff(_local3, _local4, _local5, _local2, _local10[int((_local12 + 7))], 22, -45705983); _local2 = ff(_local2, _local3, _local4, _local5, _local10[int((_local12 + 8))], 7, 1770035416); _local5 = ff(_local5, _local2, _local3, _local4, _local10[int((_local12 + 9))], 12, -1958414417); _local4 = ff(_local4, _local5, _local2, _local3, _local10[int((_local12 + 10))], 17, -42063); _local3 = ff(_local3, _local4, _local5, _local2, _local10[int((_local12 + 11))], 22, -1990404162); _local2 = ff(_local2, _local3, _local4, _local5, _local10[int((_local12 + 12))], 7, 1804603682); _local5 = ff(_local5, _local2, _local3, _local4, _local10[int((_local12 + 13))], 12, -40341101); _local4 = ff(_local4, _local5, _local2, _local3, _local10[int((_local12 + 14))], 17, -1502002290); _local3 = ff(_local3, _local4, _local5, _local2, _local10[int((_local12 + 15))], 22, 1236535329); _local2 = gg(_local2, _local3, _local4, _local5, _local10[int((_local12 + 1))], 5, -165796510); _local5 = gg(_local5, _local2, _local3, _local4, _local10[int((_local12 + 6))], 9, -1069501632); _local4 = gg(_local4, _local5, _local2, _local3, _local10[int((_local12 + 11))], 14, 643717713); _local3 = gg(_local3, _local4, _local5, _local2, _local10[int((_local12 + 0))], 20, -373897302); _local2 = gg(_local2, _local3, _local4, _local5, _local10[int((_local12 + 5))], 5, -701558691); _local5 = gg(_local5, _local2, _local3, _local4, _local10[int((_local12 + 10))], 9, 38016083); _local4 = gg(_local4, _local5, _local2, _local3, _local10[int((_local12 + 15))], 14, -660478335); _local3 = gg(_local3, _local4, _local5, _local2, _local10[int((_local12 + 4))], 20, -405537848); _local2 = gg(_local2, _local3, _local4, _local5, _local10[int((_local12 + 9))], 5, 568446438); _local5 = gg(_local5, _local2, _local3, _local4, _local10[int((_local12 + 14))], 9, -1019803690); _local4 = gg(_local4, _local5, _local2, _local3, _local10[int((_local12 + 3))], 14, -187363961); _local3 = gg(_local3, _local4, _local5, _local2, _local10[int((_local12 + 8))], 20, 1163531501); _local2 = gg(_local2, _local3, _local4, _local5, _local10[int((_local12 + 13))], 5, -1444681467); _local5 = gg(_local5, _local2, _local3, _local4, _local10[int((_local12 + 2))], 9, -51403784); _local4 = gg(_local4, _local5, _local2, _local3, _local10[int((_local12 + 7))], 14, 1735328473); _local3 = gg(_local3, _local4, _local5, _local2, _local10[int((_local12 + 12))], 20, -1926607734); _local2 = hh(_local2, _local3, _local4, _local5, _local10[int((_local12 + 5))], 4, -378558); _local5 = hh(_local5, _local2, _local3, _local4, _local10[int((_local12 + 8))], 11, -2022574463); _local4 = hh(_local4, _local5, _local2, _local3, _local10[int((_local12 + 11))], 16, 1839030562); _local3 = hh(_local3, _local4, _local5, _local2, _local10[int((_local12 + 14))], 23, -35309556); _local2 = hh(_local2, _local3, _local4, _local5, _local10[int((_local12 + 1))], 4, -1530992060); _local5 = hh(_local5, _local2, _local3, _local4, _local10[int((_local12 + 4))], 11, 1272893353); _local4 = hh(_local4, _local5, _local2, _local3, _local10[int((_local12 + 7))], 16, -155497632); _local3 = hh(_local3, _local4, _local5, _local2, _local10[int((_local12 + 10))], 23, -1094730640); _local2 = hh(_local2, _local3, _local4, _local5, _local10[int((_local12 + 13))], 4, 681279174); _local5 = hh(_local5, _local2, _local3, _local4, _local10[int((_local12 + 0))], 11, -358537222); _local4 = hh(_local4, _local5, _local2, _local3, _local10[int((_local12 + 3))], 16, -722521979); _local3 = hh(_local3, _local4, _local5, _local2, _local10[int((_local12 + 6))], 23, 76029189); _local2 = hh(_local2, _local3, _local4, _local5, _local10[int((_local12 + 9))], 4, -640364487); _local5 = hh(_local5, _local2, _local3, _local4, _local10[int((_local12 + 12))], 11, -421815835); _local4 = hh(_local4, _local5, _local2, _local3, _local10[int((_local12 + 15))], 16, 530742520); _local3 = hh(_local3, _local4, _local5, _local2, _local10[int((_local12 + 2))], 23, -995338651); _local2 = ii(_local2, _local3, _local4, _local5, _local10[int((_local12 + 0))], 6, -198630844); _local5 = ii(_local5, _local2, _local3, _local4, _local10[int((_local12 + 7))], 10, 1126891415); _local4 = ii(_local4, _local5, _local2, _local3, _local10[int((_local12 + 14))], 15, -1416354905); _local3 = ii(_local3, _local4, _local5, _local2, _local10[int((_local12 + 5))], 21, -57434055); _local2 = ii(_local2, _local3, _local4, _local5, _local10[int((_local12 + 12))], 6, 1700485571); _local5 = ii(_local5, _local2, _local3, _local4, _local10[int((_local12 + 3))], 10, -1894986606); _local4 = ii(_local4, _local5, _local2, _local3, _local10[int((_local12 + 10))], 15, -1051523); _local3 = ii(_local3, _local4, _local5, _local2, _local10[int((_local12 + 1))], 21, -2054922799); _local2 = ii(_local2, _local3, _local4, _local5, _local10[int((_local12 + 8))], 6, 1873313359); _local5 = ii(_local5, _local2, _local3, _local4, _local10[int((_local12 + 15))], 10, -30611744); _local4 = ii(_local4, _local5, _local2, _local3, _local10[int((_local12 + 6))], 15, -1560198380); _local3 = ii(_local3, _local4, _local5, _local2, _local10[int((_local12 + 13))], 21, 1309151649); _local2 = ii(_local2, _local3, _local4, _local5, _local10[int((_local12 + 4))], 6, -145523070); _local5 = ii(_local5, _local2, _local3, _local4, _local10[int((_local12 + 11))], 10, -1120210379); _local4 = ii(_local4, _local5, _local2, _local3, _local10[int((_local12 + 2))], 15, 718787259); _local3 = ii(_local3, _local4, _local5, _local2, _local10[int((_local12 + 9))], 21, -343485551); _local2 = (_local2 + _local6); _local3 = (_local3 + _local7); _local4 = (_local4 + _local8); _local5 = (_local5 + _local9); _local12 = (_local12 + 16); }; digest = new ByteArray(); digest.writeInt(_local2); digest.writeInt(_local3); digest.writeInt(_local4); digest.writeInt(_local5); digest.position = 0; return ((((IntUtil.toHex(_local2) + IntUtil.toHex(_local3)) + IntUtil.toHex(_local4)) + IntUtil.toHex(_local5))); } private static function gg(_arg1:int, _arg2:int, _arg3:int, _arg4:int, _arg5:int, _arg6:int, _arg7:int):int{ return (transform(g, _arg1, _arg2, _arg3, _arg4, _arg5, _arg6, _arg7)); } private static function ii(_arg1:int, _arg2:int, _arg3:int, _arg4:int, _arg5:int, _arg6:int, _arg7:int):int{ return (transform(i, _arg1, _arg2, _arg3, _arg4, _arg5, _arg6, _arg7)); } public static function hashBytes(_arg1:ByteArray):String{ return (hashBinary(_arg1)); } } }//package com.adobe.crypto
Section 50
//JSON (com.adobe.serialization.json.JSON) package com.adobe.serialization.json { public class JSON { public static function decode(_arg1:String){ var _local2:JSONDecoder; _local2 = new JSONDecoder(_arg1); return (_local2.getValue()); } public static function encode(_arg1:Object):String{ var _local2:JSONEncoder; _local2 = new JSONEncoder(_arg1); return (_local2.getString()); } } }//package com.adobe.serialization.json
Section 51
//JSONDecoder (com.adobe.serialization.json.JSONDecoder) package com.adobe.serialization.json { public class JSONDecoder { private var value; private var tokenizer:JSONTokenizer; private var token:JSONToken; public function JSONDecoder(_arg1:String){ tokenizer = new JSONTokenizer(_arg1); nextToken(); value = parseValue(); } private function nextToken():JSONToken{ return ((token = tokenizer.getNextToken())); } private function parseObject():Object{ var _local1:Object; var _local2:String; _local1 = new Object(); nextToken(); if (token.type == JSONTokenType.RIGHT_BRACE){ return (_local1); }; while (true) { if (token.type == JSONTokenType.STRING){ _local2 = String(token.value); nextToken(); if (token.type == JSONTokenType.COLON){ nextToken(); _local1[_local2] = parseValue(); nextToken(); if (token.type == JSONTokenType.RIGHT_BRACE){ return (_local1); }; if (token.type == JSONTokenType.COMMA){ nextToken(); } else { tokenizer.parseError(("Expecting } or , but found " + token.value)); }; } else { tokenizer.parseError(("Expecting : but found " + token.value)); }; } else { tokenizer.parseError(("Expecting string but found " + token.value)); }; }; return (null); } private function parseArray():Array{ var _local1:Array; _local1 = new Array(); nextToken(); if (token.type == JSONTokenType.RIGHT_BRACKET){ return (_local1); }; while (true) { _local1.push(parseValue()); nextToken(); if (token.type == JSONTokenType.RIGHT_BRACKET){ return (_local1); }; if (token.type == JSONTokenType.COMMA){ nextToken(); } else { tokenizer.parseError(("Expecting ] or , but found " + token.value)); }; }; return (null); } public function getValue(){ return (value); } private function parseValue():Object{ if (token == null){ tokenizer.parseError("Unexpected end of input"); }; switch (token.type){ case JSONTokenType.LEFT_BRACE: return (parseObject()); case JSONTokenType.LEFT_BRACKET: return (parseArray()); case JSONTokenType.STRING: case JSONTokenType.NUMBER: case JSONTokenType.TRUE: case JSONTokenType.FALSE: case JSONTokenType.NULL: return (token.value); default: tokenizer.parseError(("Unexpected " + token.value)); }; return (null); } } }//package com.adobe.serialization.json
Section 52
//JSONEncoder (com.adobe.serialization.json.JSONEncoder) package com.adobe.serialization.json { import flash.utils.*; public class JSONEncoder { private var jsonString:String; public function JSONEncoder(_arg1){ jsonString = convertToString(_arg1); } private function arrayToString(_arg1:Array):String{ var _local2:String; var _local3:int; _local2 = ""; _local3 = 0; while (_local3 < _arg1.length) { if (_local2.length > 0){ _local2 = (_local2 + ","); }; _local2 = (_local2 + convertToString(_arg1[_local3])); _local3++; }; return ((("[" + _local2) + "]")); } private function convertToString(_arg1):String{ if ((_arg1 is String)){ return (escapeString((_arg1 as String))); }; if ((_arg1 is Number)){ return ((isFinite((_arg1 as Number))) ? _arg1.toString() : "null"); } else { if ((_arg1 is Boolean)){ return ((_arg1) ? "true" : "false"); } else { if ((_arg1 is Array)){ return (arrayToString((_arg1 as Array))); }; if ((((_arg1 is Object)) && (!((_arg1 == null))))){ return (objectToString(_arg1)); }; }; }; return ("null"); } private function escapeString(_arg1:String):String{ var _local2:String; var _local3:String; var _local4:Number; var _local5:int; var _local6:String; var _local7:String; _local2 = ""; _local4 = _arg1.length; _local5 = 0; while (_local5 < _local4) { _local3 = _arg1.charAt(_local5); switch (_local3){ case "\"": _local2 = (_local2 + "\\\""); break; case "\\": _local2 = (_local2 + "\\\\"); break; case "\b": _local2 = (_local2 + "\\b"); break; case "\f": _local2 = (_local2 + "\\f"); break; case "\n": _local2 = (_local2 + "\\n"); break; case "\r": _local2 = (_local2 + "\\r"); break; case "\t": _local2 = (_local2 + "\\t"); break; default: if (_local3 < " "){ _local6 = _local3.charCodeAt(0).toString(16); _local7 = ((_local6.length == 2)) ? "00" : "000"; _local2 = (_local2 + (("\\u" + _local7) + _local6)); } else { _local2 = (_local2 + _local3); }; }; _local5++; }; return ((("\"" + _local2) + "\"")); } private function objectToString(_arg1:Object):String{ var s:String; var classInfo:XML; var value:Object; var key:String; var v:XML; var o = _arg1; s = ""; classInfo = describeType(o); if (classInfo.@name.toString() == "Object"){ for (key in o) { value = o[key]; if ((value is Function)){ } else { if (s.length > 0){ s = (s + ","); }; s = (s + ((escapeString(key) + ":") + convertToString(value))); }; }; } else { for each (v in classInfo..*.(((name() == "variable")) || ((name() == "accessor")))) { if (s.length > 0){ s = (s + ","); }; s = (s + ((escapeString(v.@name.toString()) + ":") + convertToString(o[v.@name]))); }; }; return ((("{" + s) + "}")); } public function getString():String{ return (jsonString); } } }//package com.adobe.serialization.json
Section 53
//JSONParseError (com.adobe.serialization.json.JSONParseError) package com.adobe.serialization.json { public class JSONParseError extends Error { private var _text:String; private var _location:int; public function JSONParseError(_arg1:String="", _arg2:int=0, _arg3:String=""){ super(_arg1); name = "JSONParseError"; _location = _arg2; _text = _arg3; } public function get text():String{ return (_text); } public function get location():int{ return (_location); } } }//package com.adobe.serialization.json
Section 54
//JSONToken (com.adobe.serialization.json.JSONToken) package com.adobe.serialization.json { public class JSONToken { private var _value:Object; private var _type:int; public function JSONToken(_arg1:int=-1, _arg2:Object=null){ _type = _arg1; _value = _arg2; } public function set value(_arg1:Object):void{ _value = _arg1; } public function get value():Object{ return (_value); } public function set type(_arg1:int):void{ _type = _arg1; } public function get type():int{ return (_type); } } }//package com.adobe.serialization.json
Section 55
//JSONTokenizer (com.adobe.serialization.json.JSONTokenizer) package com.adobe.serialization.json { public class JSONTokenizer { private var loc:int; private var ch:String; private var obj:Object; private var jsonString:String; public function JSONTokenizer(_arg1:String){ jsonString = _arg1; loc = 0; nextChar(); } private function skipComments():void{ if (ch == "/"){ nextChar(); switch (ch){ case "/": do { nextChar(); } while (((!((ch == "\n"))) && (!((ch == ""))))); nextChar(); break; case "*": nextChar(); while (true) { if (ch == "*"){ nextChar(); if (ch == "/"){ nextChar(); break; }; } else { nextChar(); }; if (ch == ""){ parseError("Multi-line comment not closed"); }; }; break; default: parseError((("Unexpected " + ch) + " encountered (expecting '/' or '*' )")); }; }; } private function isDigit(_arg1:String):Boolean{ return ((((_arg1 >= "0")) && ((_arg1 <= "9")))); } private function readNumber():JSONToken{ var _local1:JSONToken; var _local2:String; var _local3:Number; _local1 = new JSONToken(); _local1.type = JSONTokenType.NUMBER; _local2 = ""; if (ch == "-"){ _local2 = (_local2 + "-"); nextChar(); }; if (!isDigit(ch)){ parseError("Expecting a digit"); }; if (ch == "0"){ _local2 = (_local2 + ch); nextChar(); if (isDigit(ch)){ parseError("A digit cannot immediately follow 0"); }; } else { while (isDigit(ch)) { _local2 = (_local2 + ch); nextChar(); }; }; if (ch == "."){ _local2 = (_local2 + "."); nextChar(); if (!isDigit(ch)){ parseError("Expecting a digit"); }; while (isDigit(ch)) { _local2 = (_local2 + ch); nextChar(); }; }; if ((((ch == "e")) || ((ch == "E")))){ _local2 = (_local2 + "e"); nextChar(); if ((((ch == "+")) || ((ch == "-")))){ _local2 = (_local2 + ch); nextChar(); }; if (!isDigit(ch)){ parseError("Scientific notation number needs exponent value"); }; while (isDigit(ch)) { _local2 = (_local2 + ch); nextChar(); }; }; _local3 = Number(_local2); if (((isFinite(_local3)) && (!(isNaN(_local3))))){ _local1.value = _local3; return (_local1); }; parseError((("Number " + _local3) + " is not valid!")); return (null); } private function nextChar():String{ return ((ch = jsonString.charAt(loc++))); } public function getNextToken():JSONToken{ var _local1:JSONToken; var _local2:String; var _local3:String; var _local4:String; _local1 = new JSONToken(); skipIgnored(); switch (ch){ case "{": _local1.type = JSONTokenType.LEFT_BRACE; _local1.value = "{"; nextChar(); break; case "}": _local1.type = JSONTokenType.RIGHT_BRACE; _local1.value = "}"; nextChar(); break; case "[": _local1.type = JSONTokenType.LEFT_BRACKET; _local1.value = "["; nextChar(); break; case "]": _local1.type = JSONTokenType.RIGHT_BRACKET; _local1.value = "]"; nextChar(); break; case ",": _local1.type = JSONTokenType.COMMA; _local1.value = ","; nextChar(); break; case ":": _local1.type = JSONTokenType.COLON; _local1.value = ":"; nextChar(); break; case "t": _local2 = ((("t" + nextChar()) + nextChar()) + nextChar()); if (_local2 == "true"){ _local1.type = JSONTokenType.TRUE; _local1.value = true; nextChar(); } else { parseError(("Expecting 'true' but found " + _local2)); }; break; case "f": _local3 = (((("f" + nextChar()) + nextChar()) + nextChar()) + nextChar()); if (_local3 == "false"){ _local1.type = JSONTokenType.FALSE; _local1.value = false; nextChar(); } else { parseError(("Expecting 'false' but found " + _local3)); }; break; case "n": _local4 = ((("n" + nextChar()) + nextChar()) + nextChar()); if (_local4 == "null"){ _local1.type = JSONTokenType.NULL; _local1.value = null; nextChar(); } else { parseError(("Expecting 'null' but found " + _local4)); }; break; case "\"": _local1 = readString(); break; default: if (((isDigit(ch)) || ((ch == "-")))){ _local1 = readNumber(); } else { if (ch == ""){ return (null); }; parseError((("Unexpected " + ch) + " encountered")); }; }; return (_local1); } private function skipWhite():void{ while (isWhiteSpace(ch)) { nextChar(); }; } private function isWhiteSpace(_arg1:String):Boolean{ return ((((((((_arg1 == " ")) || ((_arg1 == "\t")))) || ((_arg1 == "\n")))) || ((_arg1 == "\r")))); } public function parseError(_arg1:String):void{ throw (new JSONParseError(_arg1, loc, jsonString)); } private function skipIgnored():void{ var _local1:int; do { _local1 = loc; skipWhite(); skipComments(); } while (_local1 != loc); } private function isHexDigit(_arg1:String):Boolean{ var _local2:String; _local2 = _arg1.toUpperCase(); return (((isDigit(_arg1)) || ((((_local2 >= "A")) && ((_local2 <= "F")))))); } private function readString():JSONToken{ var _local1:JSONToken; var _local2:String; var _local3:String; var _local4:int; _local1 = new JSONToken(); _local1.type = JSONTokenType.STRING; _local2 = ""; nextChar(); while (((!((ch == "\""))) && (!((ch == ""))))) { if (ch == "\\"){ nextChar(); switch (ch){ case "\"": _local2 = (_local2 + "\""); break; case "/": _local2 = (_local2 + "/"); break; case "\\": _local2 = (_local2 + "\\"); break; case "b": _local2 = (_local2 + "\b"); break; case "f": _local2 = (_local2 + "\f"); break; case "n": _local2 = (_local2 + "\n"); break; case "r": _local2 = (_local2 + "\r"); break; case "t": _local2 = (_local2 + "\t"); break; case "u": _local3 = ""; _local4 = 0; while (_local4 < 4) { if (!isHexDigit(nextChar())){ parseError((" Excepted a hex digit, but found: " + ch)); }; _local3 = (_local3 + ch); _local4++; }; _local2 = (_local2 + String.fromCharCode(parseInt(_local3, 16))); break; default: _local2 = (_local2 + ("\\" + ch)); }; } else { _local2 = (_local2 + ch); }; nextChar(); }; if (ch == ""){ parseError("Unterminated string literal"); }; nextChar(); _local1.value = _local2; return (_local1); } } }//package com.adobe.serialization.json
Section 56
//JSONTokenType (com.adobe.serialization.json.JSONTokenType) package com.adobe.serialization.json { public class JSONTokenType { public static const NUMBER:int = 11; public static const FALSE:int = 8; public static const RIGHT_BRACKET:int = 4; public static const NULL:int = 9; public static const TRUE:int = 7; public static const RIGHT_BRACE:int = 2; public static const UNKNOWN:int = -1; public static const COMMA:int = 0; public static const LEFT_BRACKET:int = 3; public static const STRING:int = 10; public static const LEFT_BRACE:int = 1; public static const COLON:int = 6; } }//package com.adobe.serialization.json
Section 57
//IntUtil (com.adobe.utils.IntUtil) package com.adobe.utils { public class IntUtil { private static var hexChars:String = "0123456789abcdef"; public static function toHex(_arg1:int, _arg2:Boolean=false):String{ var _local3:String; var _local4:int; var _local5:int; _local3 = ""; if (_arg2){ _local4 = 0; while (_local4 < 4) { _local3 = (_local3 + (hexChars.charAt(((_arg1 >> (((3 - _local4) * 8) + 4)) & 15)) + hexChars.charAt(((_arg1 >> ((3 - _local4) * 8)) & 15)))); _local4++; }; } else { _local5 = 0; while (_local5 < 4) { _local3 = (_local3 + (hexChars.charAt(((_arg1 >> ((_local5 * 8) + 4)) & 15)) + hexChars.charAt(((_arg1 >> (_local5 * 8)) & 15)))); _local5++; }; }; return (_local3); } public static function ror(_arg1:int, _arg2:int):uint{ var _local3:int; _local3 = (32 - _arg2); return (((_arg1 << _local3) | (_arg1 >>> (32 - _local3)))); } public static function rol(_arg1:int, _arg2:int):int{ return (((_arg1 << _arg2) | (_arg1 >>> (32 - _arg2)))); } } }//package com.adobe.utils
Section 58
//StringUtil (com.adobe.utils.StringUtil) package com.adobe.utils { public class StringUtil { public static function beginsWith(_arg1:String, _arg2:String):Boolean{ return ((_arg2 == _arg1.substring(0, _arg2.length))); } public static function trim(_arg1:String):String{ return (StringUtil.ltrim(StringUtil.rtrim(_arg1))); } public static function stringsAreEqual(_arg1:String, _arg2:String, _arg3:Boolean):Boolean{ if (_arg3){ return ((_arg1 == _arg2)); }; return ((_arg1.toUpperCase() == _arg2.toUpperCase())); } public static function replace(_arg1:String, _arg2:String, _arg3:String):String{ var _local4:String; var _local5:Boolean; var _local6:Number; var _local7:Number; var _local8:Number; var _local9:Number; _local4 = new String(); _local5 = false; _local6 = _arg1.length; _local7 = _arg2.length; _local8 = 0; while (_local8 < _local6) { if (_arg1.charAt(_local8) == _arg2.charAt(0)){ _local5 = true; _local9 = 0; while (_local9 < _local7) { if (_arg1.charAt((_local8 + _local9)) != _arg2.charAt(_local9)){ _local5 = false; break; }; _local9++; }; //unresolved if _local4 = (_local4 + _arg3); _local8 = (_local8 + (_local7 - 1)); } else { _local4 = (_local4 + _arg1.charAt(_local8)); }; _local8++; }; return (_local4); } public static function rtrim(_arg1:String):String{ var _local2:Number; var _local3:Number; _local2 = _arg1.length; _local3 = _local2; while (_local3 > 0) { if (_arg1.charCodeAt((_local3 - 1)) > 32){ return (_arg1.substring(0, _local3)); }; _local3--; }; return (""); } public static function endsWith(_arg1:String, _arg2:String):Boolean{ return ((_arg2 == _arg1.substring((_arg1.length - _arg2.length)))); } public static function stringHasValue(_arg1:String):Boolean{ return (((!((_arg1 == null))) && ((_arg1.length > 0)))); } public static function remove(_arg1:String, _arg2:String):String{ return (StringUtil.replace(_arg1, _arg2, "")); } public static function ltrim(_arg1:String):String{ var _local2:Number; var _local3:Number; _local2 = _arg1.length; _local3 = 0; while (_local3 < _local2) { if (_arg1.charCodeAt(_local3) > 32){ return (_arg1.substring(_local3)); }; _local3++; }; return (""); } } }//package com.adobe.utils
Section 59
//SWFAddress (com.asual.swfaddress.SWFAddress) package com.asual.swfaddress { import flash.events.*; import flash.utils.*; import flash.net.*; import flash.system.*; import flash.errors.*; import flash.external.*; public class SWFAddress { public static var onInit:Function; private static var _queue:Array = new Array(); private static var _initTimer:Timer = new Timer(10); private static var _initializer:Boolean = _initialize(); private static var _availability:Boolean = ExternalInterface.available; private static var _initChanged:Boolean = false; private static var _dispatcher:EventDispatcher = new EventDispatcher(); private static var _queueTimer:Timer = new Timer(10); private static var _strict:Boolean = true; private static var _init:Boolean = false; private static var _value:String = ""; public static var onChange:Function; private static var _initChange:Boolean = false; public function SWFAddress(){ throw (new IllegalOperationError("SWFAddress cannot be instantiated.")); } private static function _strictCheck(_arg1:String, _arg2:Boolean):String{ if (SWFAddress.getStrict()){ if (_arg2){ if (_arg1.substr(0, 1) != "/"){ _arg1 = ("/" + _arg1); }; } else { if (_arg1 == ""){ _arg1 = "/"; }; }; }; return (_arg1); } public static function getTracker():String{ return ((_availability) ? (ExternalInterface.call("SWFAddress.getTracker") as String) : ""); } public static function setStatus(_arg1:String):void{ _call("SWFAddress.setStatus", encodeURI(decodeURI(_arg1))); } private static function _check(_arg1:TimerEvent):void{ if ((((((typeof(SWFAddress["onInit"]) == "function")) || (_dispatcher.hasEventListener(SWFAddressEvent.INIT)))) && (!(_init)))){ SWFAddress._setValueInit(_getValue()); SWFAddress._init = true; }; if ((((typeof(SWFAddress["onChange"]) == "function")) || (_dispatcher.hasEventListener(SWFAddressEvent.CHANGE)))){ _initTimer.stop(); SWFAddress._init = true; SWFAddress._setValueInit(_getValue()); }; } private static function _setValue(_arg1:String):void{ if ((((_arg1 == "undefined")) || ((_arg1 == null)))){ _arg1 = ""; }; if ((((SWFAddress._value == _arg1)) && (SWFAddress._init))){ return; }; if (!SWFAddress._initChange){ return; }; SWFAddress._value = _arg1; if (!_init){ SWFAddress._init = true; if ((((typeof(SWFAddress["onInit"]) == "function")) || (_dispatcher.hasEventListener(SWFAddressEvent.INIT)))){ _dispatchEvent(SWFAddressEvent.INIT); }; }; _dispatchEvent(SWFAddressEvent.CHANGE); } public static function getStatus():String{ var _local1:String; _local1 = (_availability) ? (ExternalInterface.call("SWFAddress.getStatus") as String) : ""; if ((((_local1 == "undefined")) || ((_local1 == null)))){ _local1 = ""; }; return (decodeURI(_local1)); } private static function _getValue():String{ var _local1:String; var _local2:String; var _local3:Array; _local2 = null; if (_availability){ _local1 = (ExternalInterface.call("SWFAddress.getValue") as String); _local3 = (ExternalInterface.call("SWFAddress.getIds") as Array); if (_local3 != null){ _local2 = _local3.toString(); }; }; if ((((((_local2 == null)) || (!(_availability)))) || (_initChanged))){ _local1 = SWFAddress._value; } else { if ((((_local1 == "undefined")) || ((_local1 == null)))){ _local1 = ""; }; }; return (_strictCheck(((_local1) || ("")), false)); } public static function up():void{ var _local1:String; _local1 = SWFAddress.getPath(); SWFAddress.setValue(_local1.substr(0, (_local1.lastIndexOf("/", (_local1.length - 2)) + ((_local1.substr((_local1.length - 1)) == "/")) ? 1 : 0))); } public static function getParameterNames():Array{ var _local1:String; var _local2:Number; var _local3:Array; var _local4:Array; var _local5:Number; _local1 = SWFAddress.getValue(); _local2 = _local1.indexOf("?"); _local3 = new Array(); if (_local2 != -1){ _local1 = _local1.substr((_local2 + 1)); if (((!((_local1 == ""))) && (!((_local1.indexOf("=") == -1))))){ _local4 = _local1.split("&"); _local5 = 0; while (_local5 < _local4.length) { _local3.push(_local4[_local5].split("=")[0]); _local5++; }; }; }; return (_local3); } public static function setTitle(_arg1:String):void{ _call("SWFAddress.setTitle", encodeURI(decodeURI(_arg1))); } public static function resetStatus():void{ _call("SWFAddress.resetStatus"); } public static function getBaseURL():String{ var _local1:String; _local1 = null; if (_availability){ _local1 = String(ExternalInterface.call("SWFAddress.getBaseURL")); }; return (((((((_local1 == null)) || ((_local1 == "null")))) || (!(_availability)))) ? "" : _local1); } public static function getTitle():String{ var _local1:String; _local1 = (_availability) ? (ExternalInterface.call("SWFAddress.getTitle") as String) : ""; if ((((_local1 == "undefined")) || ((_local1 == null)))){ _local1 = ""; }; return (decodeURI(_local1)); } public static function getPath():String{ var _local1:String; _local1 = SWFAddress.getValue(); if (_local1.indexOf("?") != -1){ return (_local1.split("?")[0]); }; if (_local1.indexOf("#") != -1){ return (_local1.split("#")[0]); }; return (_local1); } public static function href(_arg1:String, _arg2:String="_self"):void{ if (((_availability) && ((Capabilities.playerType == "ActiveX")))){ ExternalInterface.call("SWFAddress.href", _arg1, _arg2); return; }; navigateToURL(new URLRequest(_arg1), _arg2); } private static function _initialize():Boolean{ if (_availability){ try { _availability = (ExternalInterface.call("function() { return (typeof SWFAddress != \"undefined\"); }") as Boolean); ExternalInterface.addCallback("getSWFAddressValue", function ():String{ return (_value); }); ExternalInterface.addCallback("setSWFAddressValue", _setValue); } catch(e:Error) { _availability = false; }; }; _queueTimer.addEventListener(TimerEvent.TIMER, _callQueue); _initTimer.addEventListener(TimerEvent.TIMER, _check); _initTimer.start(); return (true); } public static function popup(_arg1:String, _arg2:String="popup", _arg3:String="""", _arg4:String=""):void{ if (((_availability) && ((((Capabilities.playerType == "ActiveX")) || (ExternalInterface.call("asual.util.Browser.isSafari")))))){ ExternalInterface.call("SWFAddress.popup", _arg1, _arg2, _arg3, _arg4); return; }; navigateToURL(new URLRequest((((((((("javascript:popup=window.open(\"" + _arg1) + "\",\"") + _arg2) + "\",") + _arg3) + ");") + _arg4) + ";void(0);")), "_self"); } public static function setValue(_arg1:String):void{ if ((((_arg1 == "undefined")) || ((_arg1 == null)))){ _arg1 = ""; }; _arg1 = encodeURI(decodeURI(_strictCheck(_arg1, true))); if (SWFAddress._value == _arg1){ return; }; SWFAddress._value = _arg1; _call("SWFAddress.setValue", _arg1); if (SWFAddress._init){ _dispatchEvent(SWFAddressEvent.CHANGE); } else { _initChanged = true; }; } public static function getValue():String{ return (decodeURI(_strictCheck(((_value) || ("")), false))); } private static function _call(_arg1:String, _arg2:Object=""):void{ if (_availability){ if (Capabilities.os.indexOf("Mac") != -1){ if (_queue.length == 0){ _queueTimer.start(); }; _queue.push({fn:_arg1, param:_arg2}); } else { ExternalInterface.call(_arg1, _arg2); }; }; } private static function _setValueInit(_arg1:String):void{ SWFAddress._value = _arg1; if (!_init){ _dispatchEvent(SWFAddressEvent.INIT); } else { _dispatchEvent(SWFAddressEvent.CHANGE); }; _initChange = true; } public static function getStrict():Boolean{ var _local1:String; _local1 = null; if (_availability){ _local1 = (ExternalInterface.call("SWFAddress.getStrict") as String); }; return (((_local1)==null) ? _strict : (_local1 == "true")); } public static function dispatchEvent(_arg1:Event):Boolean{ return (_dispatcher.dispatchEvent(_arg1)); } private static function _dispatchEvent(_arg1:String):void{ if (_dispatcher.hasEventListener(_arg1)){ _dispatcher.dispatchEvent(new SWFAddressEvent(_arg1)); }; _arg1 = (_arg1.substr(0, 1).toUpperCase() + _arg1.substring(1)); if (typeof(SWFAddress[("on" + _arg1)]) == "function"){ var _local2 = SWFAddress; _local2[("on" + _arg1)](); }; } public static function getQueryString():String{ var _local1:String; var _local2:Number; _local1 = SWFAddress.getValue(); _local2 = _local1.indexOf("?"); if (((!((_local2 == -1))) && ((_local2 < _local1.length)))){ return (_local1.substr((_local2 + 1))); }; return (""); } public static function removeEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false):void{ _dispatcher.removeEventListener(_arg1, _arg2, _arg3); } public static function setStrict(_arg1:Boolean):void{ _call("SWFAddress.setStrict", _arg1); _strict = _arg1; } public static function forward():void{ _call("SWFAddress.forward"); } public static function setHistory(_arg1:Boolean):void{ _call("SWFAddress.setHistory", _arg1); } private static function _callQueue(_arg1:TimerEvent):void{ var _local2:String; var _local3:int; var _local4:Object; if (_queue.length != 0){ _local2 = ""; _local3 = 0; while ((_local4 = _queue[_local3])) { if ((_local4.param is String)){ _local4.param = (("\"" + _local4.param) + "\""); }; _local2 = (_local2 + (((_local4.fn + "(") + _local4.param) + ");")); _local3++; }; _queue = new Array(); navigateToURL(new URLRequest((("javascript:" + _local2) + "void(0);")), "_self"); } else { _queueTimer.stop(); }; } public static function addEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false, _arg4:int=0, _arg5:Boolean=false):void{ _dispatcher.addEventListener(_arg1, _arg2, _arg3, _arg4, _arg5); } public static function back():void{ _call("SWFAddress.back"); } public static function getHistory():Boolean{ return ((_availability) ? (ExternalInterface.call("SWFAddress.getHistory") as Boolean) : false); } public static function getParameter(_arg1:String):String{ var _local2:String; var _local3:Number; var _local4:Array; var _local5:Array; var _local6:Number; _local2 = SWFAddress.getValue(); _local3 = _local2.indexOf("?"); if (_local3 != -1){ _local2 = _local2.substr((_local3 + 1)); _local4 = _local2.split("&"); _local6 = _local4.length; while (_local6--) { _local5 = _local4[_local6].split("="); if (_local5[0] == _arg1){ return (_local5[1]); }; }; }; return (""); } public static function go(_arg1:int):void{ _call("SWFAddress.go", _arg1); } public static function hasEventListener(_arg1:String):Boolean{ return (_dispatcher.hasEventListener(_arg1)); } public static function getPathNames():Array{ var _local1:String; var _local2:Array; _local1 = SWFAddress.getPath(); _local2 = _local1.split("/"); if ((((_local1.substr(0, 1) == "/")) || ((_local1.length == 0)))){ _local2.splice(0, 1); }; if (_local1.substr((_local1.length - 1), 1) == "/"){ _local2.splice((_local2.length - 1), 1); }; return (_local2); } public static function setTracker(_arg1:String):void{ _call("SWFAddress.setTracker", _arg1); } } }//package com.asual.swfaddress
Section 60
//SWFAddressEvent (com.asual.swfaddress.SWFAddressEvent) package com.asual.swfaddress { import flash.events.*; public class SWFAddressEvent extends Event { private var _path:String; private var _parameters:Object; private var _pathNames:Array; private var _value:String; private var _parameterNames:Array; public static const INIT:String = "init"; public static const CHANGE:String = "change"; public function SWFAddressEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false){ super(_arg1, _arg2, _arg3); } override public function get target():Object{ return (SWFAddress); } override public function clone():Event{ return (new SWFAddressEvent(type, bubbles, cancelable)); } public function get parameterNames():Array{ if (_parameterNames == null){ _parameterNames = SWFAddress.getParameterNames(); }; return (_parameterNames); } public function get pathNames():Array{ if (_pathNames == null){ _pathNames = SWFAddress.getPathNames(); }; return (_pathNames); } public function get path():String{ if (_path == null){ _path = SWFAddress.getPath(); }; return (_path); } override public function toString():String{ return (formatToString("SWFAddressEvent", "type", "bubbles", "cancelable", "eventPhase", "value", "path", "pathNames", "parameterNames", "parameters")); } override public function get currentTarget():Object{ return (SWFAddress); } public function get value():String{ if (_value == null){ _value = SWFAddress.getValue(); }; return (_value); } public function get parameters():Object{ var _local1:int; if (_parameters == null){ _parameters = new Object(); _local1 = 0; while (_local1 < parameterNames.length) { _parameters[parameterNames[_local1]] = SWFAddress.getParameter(parameterNames[_local1]); _local1++; }; }; return (_parameters); } override public function get type():String{ return (super.type); } } }//package com.asual.swfaddress
Section 61
//KongregateEvent (com.kongregate.as3.client.events.KongregateEvent) package com.kongregate.as3.client.events { import flash.events.*; public class KongregateEvent extends Event { public static const COMPLETE:String = "component_api_available"; public function KongregateEvent(_arg1:String){ super(_arg1); } } }//package com.kongregate.as3.client.events
Section 62
//AbstractShadowService (com.kongregate.as3.client.services.AbstractShadowService) package com.kongregate.as3.client.services { import flash.events.*; public class AbstractShadowService extends EventDispatcher { protected function alert(_arg1:String, _arg2:String, _arg3="", _arg4:String=""):void{ trace(((((((("Kongregate API: " + _arg1) + ".") + _arg2) + "(") + _arg3) + ") ") + _arg4)); } } }//package com.kongregate.as3.client.services
Section 63
//HighScoreServiceShadow (com.kongregate.as3.client.services.HighScoreServiceShadow) package com.kongregate.as3.client.services { public class HighScoreServiceShadow extends AbstractShadowService implements IHighScoreServices { private var mode:String; public function HighScoreServiceShadow(){ mode = ""; } public function submit(_arg1:Number, _arg2:String=null):void{ alert("IHighScoreServices", "submit", arguments); } public function connect():Boolean{ alert("IKongregateServices", "connect"); return (true); } public function requestList(_arg1:Function):void{ alert("IHighScoreServices", "requestList", "", (("[Mode: " + mode) + "]")); _arg1({success:false}); } public function setMode(_arg1:String):void{ alert("IHighScoreServices", "setMode", arguments); this.mode = _arg1; } } }//package com.kongregate.as3.client.services
Section 64
//IHighScoreServices (com.kongregate.as3.client.services.IHighScoreServices) package com.kongregate.as3.client.services { public interface IHighScoreServices { function setMode(_arg1:String):void; function submit(_arg1:Number, _arg2:String=null):void; function requestList(_arg1:Function):void; } }//package com.kongregate.as3.client.services
Section 65
//IKongregateServices (com.kongregate.as3.client.services.IKongregateServices) package com.kongregate.as3.client.services { import flash.events.*; public interface IKongregateServices extends IEventDispatcher { function getPlayerInfo(_arg1:Function):void; function connect(_arg1:Number=-1):Boolean; } }//package com.kongregate.as3.client.services
Section 66
//IStatServices (com.kongregate.as3.client.services.IStatServices) package com.kongregate.as3.client.services { public interface IStatServices { function submitArray(_arg1:Array):void; function submit(_arg1:String, _arg2:Number):void; } }//package com.kongregate.as3.client.services
Section 67
//IUserServices (com.kongregate.as3.client.services.IUserServices) package com.kongregate.as3.client.services { public interface IUserServices { function getName():String; function getPlayerInfo(_arg1:Function):void; } }//package com.kongregate.as3.client.services
Section 68
//KongregateServiceShadow (com.kongregate.as3.client.services.KongregateServiceShadow) package com.kongregate.as3.client.services { public class KongregateServiceShadow extends AbstractShadowService implements IKongregateServices { public function getName():String{ alert("IKongregateServices", "getName"); return ("Guest"); } public function connect(_arg1:Number=-1):Boolean{ alert("IKongregateServices", "connect", arguments); return (true); } public function getPlayerInfo(_arg1:Function):void{ alert("IKongregateServices", "getPlayerInfo"); _arg1(new Object()); } } }//package com.kongregate.as3.client.services
Section 69
//StatServiceShadow (com.kongregate.as3.client.services.StatServiceShadow) package com.kongregate.as3.client.services { public class StatServiceShadow extends AbstractShadowService implements IStatServices { public function submitArray(_arg1:Array):void{ alert("IStatServices", "submitArray", arguments); } public function submit(_arg1:String, _arg2:Number):void{ alert("IStatServices", "submitStat", arguments); } } }//package com.kongregate.as3.client.services
Section 70
//UserServiceShadow (com.kongregate.as3.client.services.UserServiceShadow) package com.kongregate.as3.client.services { public class UserServiceShadow extends AbstractShadowService implements IUserServices { public function getName():String{ alert("UserService", "getName"); return ("Guest"); } public function getPlayerInfo(_arg1:Function):void{ alert("UserService", "getPlayerInfo"); _arg1({isGuest:true, name:"Guest", points:0, level:0, isMode:false, isAdmin:false, isDeveloper:false, avatarPath:"", chatAvatarPath:""}); } } }//package com.kongregate.as3.client.services
Section 71
//IAPIBootstrap (com.kongregate.as3.client.IAPIBootstrap) package com.kongregate.as3.client { import flash.events.*; import flash.display.*; public interface IAPIBootstrap { function init(_arg1:Event=null, _arg2:Stage=null):void; function hideLog():void; function showLog(_arg1:int=0):void; } }//package com.kongregate.as3.client
Section 72
//KongregateAPI (com.kongregate.as3.client.KongregateAPI) package com.kongregate.as3.client { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.net.*; import com.kongregate.as3.client.services.*; import flash.system.*; import com.kongregate.as3.client.events.*; import flash.errors.*; public class KongregateAPI extends Sprite { private const VERSION:Number = 1; private var loader:Loader; private var loadedDomain:ApplicationDomain; private static const CLASS_USER:String = "com.kongregate.as3.client.services.UserServices"; private static const CLASS_STATS:String = "com.kongregate.as3.client.services.StatServices"; private static const CLASS_SERVICES:String = "com.kongregate.as3.client.services.KongregateServices"; private static const CLASS_SCORES:String = "com.kongregate.as3.client.services.HighScoreServices"; private static const DEBUG_API_URL:String = "//Linuxpc/kongregate/public/flash/API_AS3.swf"; private static var _connected:Boolean; private static var kUser:IUserServices; private static var _loaded:Boolean; private static var kServices:IKongregateServices; private static var kScores:IHighScoreServices; private static var mInstance:KongregateAPI; private static var kStats:IStatServices; private static var kAPI:IAPIBootstrap; public function KongregateAPI(){ if (mInstance != null){ throw (new Error("Warning: KongregateAPI has been added to stage more than once or accessed improperly. Use getInstance() or a stage reference to access.")); }; mInstance = this; this.addEventListener(Event.ADDED_TO_STAGE, init, false, 0, true); } public function get loaded():Boolean{ return (_loaded); } public function get connected():Boolean{ return (_connected); } private function alertConnected(_arg1:TimerEvent=null):void{ var _local2:KongregateEvent; var _local3:Boolean; _local2 = new KongregateEvent(KongregateEvent.COMPLETE); _local3 = this.dispatchEvent(_local2); } private function init(_arg1:Event):void{ var _local2:Object; var _local3:String; var _local4:URLRequest; var _local5:LoaderContext; this.removeEventListener(Event.ADDED_TO_STAGE, init); _loaded = false; _connected = false; _local2 = LoaderInfo(root.loaderInfo).parameters; _local3 = _local2.api_path; if (_local3 == null){ trace("Alert: Kongregate API could not be loaded, due to local testing. API will load when the game is uploaded."); createShadowServices(); return; }; Security.allowDomain("*.kongregate.com"); Security.allowDomain("kongregatetrunk.com"); _local4 = new URLRequest(_local3); _local5 = new LoaderContext(false); _local5.applicationDomain = ApplicationDomain.currentDomain; _local5.securityDomain = SecurityDomain.currentDomain; loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadComplete); loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler); loader.load(_local4, _local5); } public function get api():IAPIBootstrap{ return (kAPI); } private function loadComplete(_arg1:Event):void{ getServices(); } public function get scores():IHighScoreServices{ return (kScores); } private function ioErrorHandler(_arg1:IOErrorEvent):void{ throw (new IOError(("API file not found. " + _arg1))); } public function get services():IKongregateServices{ return (kServices); } public function get stats():IStatServices{ return (kStats); } private function createShadowServices():void{ var _local1:Timer; trace(">>> Kongregate Shadow Services instantiated for local development.."); kServices = new KongregateServiceShadow(); kScores = new HighScoreServiceShadow(); kStats = new StatServiceShadow(); kUser = new UserServiceShadow(); _local1 = new Timer(200, 1); _local1.addEventListener(TimerEvent.TIMER_COMPLETE, alertConnected); _local1.start(); _connected = true; } public function get user():IUserServices{ return (kUser); } private function getServices():void{ var _local1:ApplicationDomain; var _local2:*; var _local3:*; var _local4:*; var _local5:*; _local1 = ApplicationDomain.currentDomain; kAPI = IAPIBootstrap(loader.getChildAt(0)); this.addChild(loader); _local2 = _local1.getDefinition(CLASS_SERVICES); trace(_local2); kServices = _local2.getInstance(); _local3 = _local1.getDefinition(CLASS_SCORES); kScores = _local3.getInstance(); _local4 = _local1.getDefinition(CLASS_STATS); kStats = _local4.getInstance(); _local5 = _local1.getDefinition(CLASS_USER); kUser = _local5.getInstance(); kServices.connect(VERSION); _loaded = true; _connected = true; alertConnected(); } public static function getInstance():KongregateAPI{ if (!mInstance){ throw (new IllegalOperationError("You must add the Kongregate API component to the stage before attempting to access it.")); }; return (mInstance); } } }//package com.kongregate.as3.client
Section 73
//BaseN (com.newgrounds.BaseN) package com.newgrounds { import flash.utils.*; public class BaseN { private var _hashIndex:String; private var _base:Number; private var _hashVal:Dictionary; public function BaseN(_arg1:String=null){ var _local2:uint; super(); if (_arg1){ _hashIndex = _arg1; } else { _hashIndex = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ`~@#$%^&*()+|;/"; }; _base = _hashIndex.length; _hashVal = new Dictionary(); _local2 = 0; while (_local2 < _base) { _hashVal[_hashIndex.charAt(_local2)] = _local2; _local2++; }; } private function baseNDecoder(_arg1:String):uint{ var _local2:uint; var _local3:uint; _local2 = 0; _local3 = 0; while (_local3 < _arg1.length) { _local2 = (_local2 * _base); _local2 = (_local2 + _hashVal[_arg1.charAt(_local3)]); _local3++; }; return (_local2); } public function decode(_arg1:String):Number{ var _local2:String; var _local3:Array; _local2 = ""; if (_arg1.charAt(0) == "-"){ _local2 = "-"; _arg1 = _arg1.substring(1); }; _local3 = _arg1.split(".", 2); _local2 = (_local2 + baseNDecoder(_local3[0])); if (_local3.length > 1){ _local2 = (_local2 + "."); _local2 = (_local2 + baseNDecoder(_local3[1])); }; return (Number(_local2)); } public function encode(_arg1:Number, _arg2:uint=1):String{ var _local3:String; var _local4:String; var _local5:Array; _local3 = _arg1.toString(); _local4 = ""; if (_local3.charAt(0) == "-"){ _local4 = "-"; _local3 = _local3.substring(1); }; _local5 = _local3.split(".", 2); _local4 = (_local4 + baseNEncoder(_local5[0], _arg2)); if (_local5.length > 1){ _local4 = (_local4 + ("." + baseNEncoder(_local5[1]))); }; return (_local4); } private function baseNEncoder(_arg1:uint, _arg2:uint=1):String{ var _local3:String; var _local4:uint; _local3 = ""; _local4 = _arg1; while (_local4 != 0) { _local3 = (_hashIndex.charAt((_local4 % _base)) + _local3); _local4 = (_local4 / _base); }; if (_arg2){ while (_local3.length < _arg2) { _local3 = (_hashIndex.charAt(0) + _local3); }; }; return (_local3); } } }//package com.newgrounds
Section 74
//NewgroundsAPI (com.newgrounds.NewgroundsAPI) package com.newgrounds { import flash.events.*; import flash.display.*; import flash.utils.*; import com.adobe.serialization.json.*; import flash.net.*; import flash.system.*; import com.adobe.crypto.*; import flash.text.*; public class NewgroundsAPI extends EventDispatcher { private static const COMMANDS_WIKI_URL:String = "http://www.newgrounds.com/wiki/flashapi/commands/"; public static const events:Object = {MOVIE_CONNECTED:1, ADS_APPROVED:2, AD_ATTACHED:3, HOST_BLOCKED:4, NEW_VERSION_AVAILABLE:5, EVENT_LOGGED:6, SCORE_POSTED:7, SCORES_LOADED:8, MEDAL_UNLOCKED:9, MEDALS_LOADED:10, FILE_PRIVS_LOADED:11, FILE_SAVED:12}; private static const AD_TERMS_URL:String = "http://www.newgrounds.com/wiki/flashads/terms/"; private static const REMOVED_FROM_STAGE:String = "removedFromStage"; private static const GATEWAY_URL:String = "http://www.ngads.com/gateway_v2.php"; private static var connected:Boolean; private static var error_format:TextFormat; private static var user_id:Number; private static var _initialized:Boolean = false; private static var ad_swf_url:String; private static var ad:Loader; private static var user_email:String; private static var ad_reset:Number = 0; private static var publisher_id:Number; private static var listeners:Array = setDefaultListeners(); private static var debug:Boolean; private static var normal_format:TextFormat; private static var do_echo:Boolean = false; private static var ad_url:String; private static var medals:Array = null; private static var session_id:String; private static var timeoutTimer:Timer; public static var errors:Dictionary = NewgroundsAPIError.init_codes(); private static var adURLLoader:URLLoader; private static var tracker_id:uint; private static var user_name:String; private static var movie_id:String; private static var adContainer:Sprite; private static var encryption_key:String; private static var flashAdTarget:DisplayObjectContainer; private static var host:String; private static var loaders:Array = []; private static var compressor:BaseN = new BaseN(compression_radix); private static var period_aliases:Object = {t:{name:"Today", alias:"TODAY"}, p:{name:"Yesterday", alias:"YESTERDAY"}, w:{name:"This Week", alias:"THIS_WEEK"}, m:{name:"This Month", alias:"THIS_MONTH"}, y:{name:"This Year", alias:"THIS_YEAR"}, a:{name:"All-Time", alias:"ALL_TIME"}}; private static var score_page_counts:Object = new Object(); private static var version:String; private static var link_format:TextFormat; public static var periods:Object = getPeriodAliases(); private static var root:DisplayObject; private static var compression_radix:String = "/g8236klvBQ#&|;Zb*7CEA59%s`Oue1wziFp$rDVY@TKxUPWytSaGHJ>dmoMR^<0~4qNLhc(I+fjn)X"; private static var sharedObjects:Object = new Object(); private static var header_format:TextFormat; private static var save_file = null; public static function setMovieVersion(_arg1:String):void{ if (_arg1){ version = String(_arg1); }; } public static function unlockMedal(_arg1:String, _arg2:Boolean=false):void{ var _local3:Object; if (!_arg1){ sendError({command_id:getCommandID("unlockMedal")}, new NewgroundsAPIError("MISSING_PARAM", "missing required medal name")); return; }; _local3 = new Object(); _local3.medal = _arg1; _local3.get_score = _arg2; sendSecureCommand("unlockMedal", _local3); } private static function uncompressHex(_arg1:String):String{ var _local2:uint; var _local3:String; var _local4:uint; var _local5:uint; var _local6:String; var _local7:uint; var _local8:String; _local2 = uint(_arg1.charAt(0)); _local3 = ""; _local5 = 1; while (_local5 < _arg1.length) { _local6 = _arg1.substr(_local5, 4); _local7 = uint(compressor.decode(_local6)); _local8 = _local7.toString(16); if ((_local5 + 4) < _arg1.length){ _local4 = 6; } else { _local4 = _local2; }; while (_local8.length < _local4) { _local8 = ("0" + _local8); }; _local3 = (_local3 + _local8); _local5 = (_local5 + 4); }; return (_local3); } public static function isFlashVersion(_arg1:uint, _arg2:uint=0, _arg3:uint=0, _arg4:uint=0):Boolean{ var _local6:Array; var _local7:Array; var _local8:uint; _local6 = Capabilities.version.split(" ")[1].split(","); _local7 = arguments; _local8 = 0; while (_local8 < _local7.length) { _local6[_local8] = uint(_local6[_local8]); _local8++; }; _local8 = 0; while (_local8 < _local7.length) { if (_local6[_local8] > _local7[_local8]){ return (true); }; if (_local6[_local8] < _local7[_local8]){ return (false); }; _local8++; }; return (true); } public static function loadLocal(_arg1:String){ var _local2:SharedObject; if (!sharedObjects[_arg1]){ sharedObjects[_arg1] = SharedObject.getLocal(((("ng_ap_secure_" + movie_id) + "_") + _arg1)); }; _local2 = sharedObjects[_arg1]; _local2.flush(); if (_local2.data[_arg1]){ return (decodeData(sharedObjects.data[_arg1])); }; return (null); } public static function hasUserEmail():Boolean{ return (((!((user_email == null))) && (!((user_email == ""))))); } private static function getHost():String{ return (host); } public static function getYesterdaysScores(_arg1:String, _arg2:Object):void{ getScores(_arg1, "y", _arg2, "getYesterdaysScores"); } public static function onNewVersionAvailable(_arg1:Object, _arg2:Object):void{ } private static function echo(_arg1:String):void{ if (do_echo){ trace(_arg1); }; } public static function attachFlashAd(_arg1:DisplayObjectContainer):void{ var _local2:URLRequest; Security.allowDomain("http://server.cpmstar.com"); Security.allowDomain("http://www.cpmstar.com"); Security.allowDomain("https://server.cpmstar.com"); Security.allowDomain("https://www.cpmstar.com"); Security.allowInsecureDomain("http://server.cpmstar.com"); Security.allowInsecureDomain("http://www.cpmstar.com"); Security.allowInsecureDomain("https://server.cpmstar.com"); Security.allowInsecureDomain("https://www.cpmstar.com"); flashAdTarget = _arg1; sendMessage("You may get a security sandbox violation from this ad. This is nothing to worry about!"); if (resetAdTimer()){ if (ad_url){ adURLLoader = new URLLoader(); adURLLoader.addEventListener(Event.COMPLETE, adLoaderHandler); adURLLoader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler); if (ad_url.indexOf("?") > -1){ _local2 = new URLRequest(((ad_url + "&random=") + Math.random())); adURLLoader.load(_local2); } else { _local2 = new URLRequest(((ad_url + "?random=") + Math.random())); adURLLoader.load(_local2); }; }; } else { renderAd(_arg1); }; } public static function getThisMonthsScores(_arg1:String, _arg2:Object):void{ getScores(_arg1, "m", _arg2, "getThisMonthsScores"); } public static function getScores(_arg1:String, _arg2:String, _arg3:Object=null, _arg4:String=null):void{ var _local5:String; if (!_arg3){ _arg3 = new Object(); }; if (!hasUserSession()){ callListener(events.SCORES_LOADED, false, new NewgroundsAPIError("SITE_ID_REQUIRED", (("Host '" + getHost()) + "' does not have high scores enabled"))); return; }; _arg3.publisher_id = publisher_id; _arg3.period = _arg2; _arg3.score = _arg1; if (_arg3.user_id){ _local5 = _arg2; } else { _local5 = (_arg2 + "-u"); }; if (score_page_counts[_local5] == undefined){ _arg3.request_page_count = true; }; sendCommand("getScores", _arg3); } public static function sendSecureCommand(_arg1:String, _arg2:Object, _arg3:Object=null, _arg4:Object=null):void{ var _local5:String; var _local6:uint; var _local7:String; var _local8:String; var _local9:String; if (((((!(debug)) && (!(hasUserSession())))) && (!(hasUserEmail())))){ sendError({command_id:getCommandID(_arg1)}, new NewgroundsAPIError("IDENTIFICATION_REQUIRED", (("You must be logged in or provide an e-mail address ( using NewgroundsAPI.setUserEmail(\"name@domain.com\"); ) to use " + _arg1) + "()."))); return; }; if (!_arg1){ fatalError("Missing command", "sendSecureCommand"); }; if (!_arg2){ fatalError("Missing secure_params", "sendSecureCommand"); }; if (!_arg3){ _arg3 = new Object(); }; _local5 = ""; _local6 = 0; while (_local6 < 16) { _local5 = (_local5 + compression_radix.charAt(Math.floor((Math.random() * compression_radix.length)))); _local6++; }; if (debug){ _arg2.session_id = ""; } else { _arg2.session_id = session_id; }; _arg2.as_version = 3; _arg2.user_email = user_email; _arg2.publisher_id = publisher_id; _arg2.seed = _local5; _arg2.command_id = getCommandID(_arg1); _local7 = MD5.hash(_local5); _local8 = RC4.encrypt(JSON.encode(_arg2), encryption_key); _local9 = (_local7 + _local8); _arg3.secure = compressHex(_local9); sendCommand("securePacket", _arg3, false, _arg4); } private static function initTextFormats():void{ if (!error_format){ error_format = new TextFormat(); error_format.font = "Arial Black"; error_format.size = 48; error_format.color = 0xFF0000; }; if (!header_format){ header_format = new TextFormat(); header_format.font = "Arial Black"; header_format.size = 24; header_format.color = 0xFFFFFF; }; if (!normal_format){ normal_format = new TextFormat(); normal_format.font = "Arial"; normal_format.bold = true; normal_format.size = 12; normal_format.color = 0xFFFFFF; }; if (!link_format){ link_format = new TextFormat(); link_format.color = 0xFFFF00; link_format.underline = true; }; } private static function getCommandName(_arg1:String):String{ return (_arg1); } private static function getPeriodAliases():Object{ var _local1:Object; var _local2:String; _local1 = new Object(); for (_local2 in period_aliases) { _local1[period_aliases[_local2].alias] = _local2; }; return (_local1); } public static function removeEventListener(_arg1:uint):void{ delete listeners[_arg1]; } public static function getThisWeeksScores(_arg1:String, _arg2:Object):void{ getScores(_arg1, "w", _arg2, "getThisWeeksScores"); } public static function setUserEmail(_arg1:String):void{ user_email = _arg1; } public static function hasUserSession():Boolean{ return (((((!((session_id == null))) && (!((session_id == ""))))) && (!((publisher_id == 0))))); } public static function getMedals():Array{ return (medals); } public static function addEventListener(_arg1:uint, _arg2:Function, _arg3:Object=null):void{ listeners[_arg1] = {listener:_arg2, params:_arg3}; } private static function callListener(_arg1:uint, _arg2:Boolean, _arg3=undefined, _arg4=undefined):void{ echo(("Fired Event: " + getEventName(_arg1))); if (listeners[_arg1]){ if ((_arg3 is NewgroundsAPIError)){ listeners[_arg1].listener({event:_arg1, success:_arg2, error:_arg3, target:_arg4}, listeners[_arg1].params); } else { listeners[_arg1].listener({event:_arg1, success:_arg2, data:_arg3, target:_arg4}, listeners[_arg1].params); }; }; } private static function compressHex(_arg1:String):String{ var _local2:uint; var _local3:String; var _local4:uint; _local2 = (_arg1.length % 6); _local3 = ""; _local4 = 0; while (_local4 < _arg1.length) { _local3 = (_local3 + compressor.encode(uint(("0x" + _arg1.substr(_local4, 6))), 4)); _local4 = (_local4 + 6); }; return ((_local2.toString() + _local3)); } private static function adLoaderHandler(_arg1:Event):void{ var _local2:URLLoader; _local2 = URLLoader(_arg1.target); if (_local2.data){ ad_swf_url = String(_local2.data); } else { ad_swf_url = null; }; renderAd(flashAdTarget); } public static function checkFilePrivs(_arg1:String, _arg2:String):void{ var _local3:uint; var _local4:Object; if (user_id){ _local3 = user_id; } else { _local3 = 0; }; _local4 = {folder:_arg1, filename:_arg2, user_id:_local3, publisher_id:publisher_id}; sendCommand("checkFilePrivs", _local4); } public static function connectMovie(_arg1:DisplayObject, _arg2:String, _arg3:String, _arg4:Boolean):void{ initialize(_arg1); if (connected){ return; }; timeoutTimer.start(); if (!_arg2){ fatalError("NewgroundsAPI.connectMovie() - missing required movie_id parameter", "connectMovie"); }; movie_id = String(_arg2); tracker_id = uint(movie_id.substring(0, movie_id.indexOf(":"))); encryption_key = _arg3; debug = _arg4; connected = true; sendCommand("connectMovie", {host:getHost(), movie_version:version}); } private static function sendMessage(_arg1:String, _arg2:Boolean=false):String{ var _local3:String; _local3 = ("[NewgroundsAPI] :: " + _arg1); if (_arg2){ return (_local3); }; trace(_local3); return (null); } private static function renderAd(_arg1:DisplayObjectContainer):void{ var _local2:Shape; var _local3:Shape; if (ad){ removeAd(); }; if (ad_swf_url){ _local2 = new Shape(); _local2.graphics.beginFill(0); _local2.graphics.moveTo(0, 0); _local2.graphics.lineTo(300, 0); _local2.graphics.lineTo(300, 250); _local2.graphics.lineTo(0, 250); _local2.graphics.lineTo(0, 0); _local2.graphics.endFill(); _local3 = new Shape(); _local3.graphics.beginFill(0); _local3.graphics.moveTo(0, 0); _local3.graphics.lineTo(300, 0); _local3.graphics.lineTo(300, 250); _local3.graphics.lineTo(0, 250); _local3.graphics.lineTo(0, 0); _local3.graphics.endFill(); ad = new Loader(); adContainer = new Sprite(); adContainer.addChild(_local2); adContainer.addChild(ad); adContainer.addChild(_local3); ad.mask = _local3; _arg1.addChild(adContainer); if (isFlashVersion(9, 0, 28)){ adContainer.addEventListener(REMOVED_FROM_STAGE, removeAdHandler); }; ad.load(new URLRequest(ad_swf_url)); callListener(events.AD_ATTACHED, true, null, _arg1); } else { callListener(events.AD_ATTACHED, false, new NewgroundsAPIError("FLASH_ADS_NOT_APPROVED", "Unable to render ad")); }; } private static function fatalError(_arg1:String, _arg2:String):void{ if (_arg2){ _arg1 = (_arg1 + ((("\n\tSee " + COMMANDS_WIKI_URL) + _arg2.toLowerCase()) + " for additional information.")); }; throw (new Error(("***ERROR*** class=NewgroundsAPI\n\n" + _arg1))); } private static function ioErrorHandler(_arg1:IOErrorEvent):void{ sendWarning(("Ad failed to load:" + _arg1.toString())); } private static function sendError(_arg1:Object, _arg2:NewgroundsAPIError):void{ trace(((((("[NewgroundsAPI ERROR] :: " + getCommandName(_arg1.command_id)) + "() - ") + _arg2.name) + ":\n\t\t\t\t") + _arg2.message)); } public static function connectionTimeOut(_arg1:Event=null):void{ callListener(events.MOVIE_CONNECTED, false, new NewgroundsAPIError("CONNECTION_FAILED", "Connection to NewgroundsAPI gateway timed out.")); } private static function setDefaultListeners():Array{ var _local1:Array; _local1 = new Array(); _local1[events.HOST_BLOCKED] = {listener:doBlockHost}; _local1[events.NEW_VERSION_AVAILABLE] = {listener:onNewVersionAvailable}; return (_local1); } public static function hasPublisher():Boolean{ return (!((publisher_id == 0))); } public static function getEventName(_arg1:uint):String{ var _local2:String; for (_local2 in events) { if (events[_local2] == _arg1){ return (_local2); }; }; return (undefined); } public static function initialize(_arg1:DisplayObject):void{ var _local2:Object; if (_initialized){ return; }; _initialized = true; NewgroundsAPI.root = _arg1; timeoutTimer = new Timer(8000, 1); if (_arg1.loaderInfo){ _local2 = _arg1.loaderInfo.parameters; host = _arg1.loaderInfo.url; }; if (_local2){ user_name = _local2.NewgroundsAPI_UserName; user_id = _local2.NewgroundsAPI_UserID; publisher_id = _local2.NewgroundsAPI_PublisherID; session_id = _local2.NewgroundsAPI_SessionID; } else { publisher_id = 1; session_id = null; user_id = 0; user_name = "Guest"; }; if ((((host.indexOf("http://") > -1)) || ((host.indexOf("https://") > -1)))){ host = host.split("/")[2].toLowerCase(); } else { host = "localhost"; }; } private static function removeAdHandler(_arg1:Event):void{ removeAd(); } private static function resetAdTimer():Boolean{ var _local1:Date; if (!ad_url){ return (false); }; _local1 = new Date(); if (_local1.getTime() >= ad_reset){ ad_reset = (_local1.getTime() + ((1000 * 60) * 5)); return (true); }; return (false); } public static function loadCustomLink(_arg1:String):void{ sendCommand("loadCustomLink", {host:getHost(), link:_arg1}, true); } public static function loadMySite():void{ sendCommand("loadMySite", {host:getHost()}); } public static function saveFile(_arg1:String, _arg2:String, _arg3:Object, _arg4):void{ } public static function getTodaysScores(_arg1:String, _arg2:Object):void{ getScores(_arg1, "t", _arg2, "getTodaysScores"); } private static function doBlockHost(_arg1:Object):void{ } private static function sendCommand(_arg1:String, _arg2:Object, _arg3:Boolean=false, _arg4:Object=null):void{ var _local5:URLVariables; var _local6:String; var _local7:URLRequest; var _local8:String; var _local9:Array; var _local10:String; var _local11:URLLoader; if (((!(connected)) && (!((_arg1 == "connectMovie"))))){ _local8 = (("NewgroundsAPI." + _arg1) + "() - NewgroundsAPI.connectMovie() must be called before this command can be called\n"); fatalError(_local8, "connectMovie"); }; _local5 = new URLVariables(); _local5.command_id = getCommandID(_arg1); _local5.tracker_id = movie_id; if (debug){ _local5.debug = debug; }; if (_arg2){ for (_local6 in _arg2) { _local5[_local6] = _arg2[_local6]; }; }; if (_arg4){ for (_local6 in _arg4) { _local5[_local6] = _arg4[_local6]; }; }; echo((("OUTPUT: \n" + JSON.encode(_local5)) + "\n")); _local7 = new URLRequest(((GATEWAY_URL + "?seed=") + Math.random())); _local7.data = _local5; if (_arg3){ _local7.method = URLRequestMethod.GET; _local7.data = _local5; navigateToURL(_local7, "_blank"); } else { _local9 = new Array(); for (_local10 in _local5) { _local9.push(((_local10 + "=") + escape(_local5[_local10]))); }; echo(((("POST " + GATEWAY_URL) + "?") + _local9.join("&"))); _local7.method = URLRequestMethod.POST; _local11 = new URLLoader(); _local11.addEventListener(Event.COMPLETE, loaderHandler); loaders.push(_local11); _local11.load(_local7); trace(_local7.data); }; } public static function getConfirmation(_arg1:String, _arg2:uint, _arg3:String, _arg4:Object, _arg5:String, _arg6:String):void{ } private static function loaderHandler(_arg1:Event):void{ var _local2:URLLoader; var _local3:uint; var _local4:Object; var _local5:NewgroundsAPIError; _local2 = URLLoader(_arg1.target); echo((("INPUT: \n" + _local2.data) + "\n")); _local3 = 0; while (_local3 < loaders.length) { if (loaders[_local3] == _local2){ loaders.splice(_local3, 1); break; }; _local3++; }; if (_local2.data){ _local4 = JSON.decode(_local2.data); } else { _local4 = {success:false}; }; if (!_local4.success){ _local5 = new NewgroundsAPIError(_local4.error_code, _local4.error_msg); sendError(_local4, _local5); } else { doEvent(_local4); }; } public static function loadNewgrounds():void{ sendCommand("loadNewgrounds", {host:getHost()}, true); } public static function getOfficialVersionURL():String{ var _local1:String; _local1 = ((((((GATEWAY_URL + "?tracker_id=") + movie_id) + "&command_id=") + getCommandID("loadOfficalVersion")) + "&seed=") + Math.random()); if (debug){ _local1 = (_local1 + "&debug=1"); }; return (_local1); } public static function getFiles(_arg1:String, _arg2:Object):void{ } public static function logCustomEvent(_arg1:String):void{ sendCommand("logCustomEvent", {host:getHost(), event:_arg1}); } public static function removeAd():void{ if (adURLLoader){ try { adURLLoader.close(); } catch(e:Error) { }; adURLLoader = null; }; if (ad){ try { ad.close(); } catch(e:Error) { }; try { Object(ad).unloadAndStop(true); trace("uas"); } catch(e:Error) { ad.unload(); }; if (ad.parent){ ad.parent.removeChild(ad); }; }; if (adContainer){ if (isFlashVersion(9, 0, 28, 0)){ adContainer.removeEventListener(REMOVED_FROM_STAGE, removeAdHandler); }; if (adContainer.parent){ adContainer.parent.removeChild(adContainer); }; }; ad = null; adContainer = null; } public static function postScore(_arg1:String, _arg2:Number, _arg3:Boolean):void{ sendSecureCommand("postScore", {score:_arg1, value:_arg2, get_best:_arg3}); } public static function finishFileSave(_arg1:String, _arg2:String, _arg3:String, _arg4:Boolean, _arg5, _arg6):void{ } private static function sendNotice(_arg1:String, _arg2:String=null):void{ if (_arg2){ _arg1 = (_arg1 + ((("\n[NewgroundsAPI NOTICE] :: \tSee " + COMMANDS_WIKI_URL) + _arg2.toLowerCase()) + " for additional information.")); }; trace(("[NewgroundsAPI NOTICE] :: " + _arg1)); } public static function decodeData(_arg1:String){ return (JSON.decode(RC4.decrypt(uncompressHex(_arg1), encryption_key))); } public static function encodeData(_arg1:Object):String{ return (compressHex(RC4.encrypt(JSON.encode(_arg1), encryption_key))); } public static function getThisYearsScores(_arg1:String, _arg2:Object):void{ getScores(_arg1, "y", _arg2, "getThisYearsScores"); } private static function doEvent(_arg1:Object):void{ var _local2:String; var _local3:Object; var _local4:String; var _local5:Boolean; var _local6:String; var _local7:uint; switch (getCommandName(_arg1.command_id)){ case "connectMovie": timeoutTimer.stop(); sendMessage("You have successfully connected to the Newgrounds API Gateway"); sendMessage((("Movie identified as \"" + _arg1.movie_name) + "\"")); callListener(events.MOVIE_CONNECTED, _arg1.success, {movie_name:_arg1.movie_name}); _local5 = false; if (_arg1.ad_status === -1){ _local2 = "This movie was not approved to run Flash Ads."; sendWarning(_local2); sendWarning((("visit " + AD_TERMS_URL) + " to view our approval guidelines")); if (!_arg1.ad_url){ callListener(events.ADS_APPROVED, false, new NewgroundsAPIError("FLASH_ADS_NOT_APPROVED", _local2)); } else { _local5 = true; }; } else { if (_arg1.ad_status === 0){ _local2 = "Flash Ads are currently awaiting approval."; sendNotice(_local2); if (!_arg1.ad_url){ callListener(events.ADS_APPROVED, false, new NewgroundsAPIError("FLASH_ADS_NOT_APPROVED", _local2)); } else { _local5 = true; }; }; }; if (_arg1.ad_url){ ad_url = unescape(_arg1.ad_url); if (!_local5){ sendMessage("This movie has been approved to run Flash Ads!"); }; callListener(events.ADS_APPROVED, true); }; if (_arg1.deny_host){ _local2 = (getHost() + " does not have permission to run this movie!"); sendWarning(_local2); sendWarning(("\tUpdate your API configuration to unblock " + getHost())); callListener(events.HOST_BLOCKED, true, {movie_url:unescape(_arg1.movie_url), redirect_url:getOfficialVersionURL()}); }; if (_arg1.movie_version){ sendWarning("According to your API Configuration, this version is out of date."); if (version){ sendWarning(("\tThe this movie is version " + version)); }; sendWarning(("\tThe most current version is " + _arg1.movie_version)); callListener(events.NEW_VERSION_AVAILABLE, true, {movie_version:_arg1.movie_version, movie_url:unescape(_arg1.movie_url), redirect_url:getOfficialVersionURL()}); }; if (_arg1.request_portal_url){ sendCommand("setPortalID", {portal_url:host}); }; break; case "logCustomEvent": if (_arg1.success){ sendMessage((("Event '" + _arg1.event) + "' was logged.")); }; callListener(events.EVENT_LOGGED, _arg1.success, {event:_arg1.event}); break; case "postScore": if (_arg1.success){ _local4 = "User"; if (user_email){ _local4 = user_email; } else { if (user_name){ _local4 = user_name; }; }; sendMessage((((((_local4 + " posted ") + _arg1.value) + " to '") + _arg1.score) + "'")); _local3 = {score:_arg1.score, value:_arg1.value, username:_local4}; }; callListener(events.SCORE_POSTED, _arg1.success, _local3); break; case "getScores": if (_arg1.user_id){ _local6 = _arg1.period; } else { _local6 = (_arg1.period + "-u"); }; if (_arg1.total_pages){ score_page_counts[_local6] = _arg1.total_pages; }; _local3.user_id = _arg1.user_id; _local3.current_page = _arg1.current_page; _local3.total_pages = score_page_counts[_local6]; _local3.scores = _arg1.scores; _local3.period = getPeriodName(_arg1.period); callListener(events.SCORES_LOADED, _arg1.success, _local3); break; case "unlockMedal": if (medals){ _local7 = 0; while (_local7 < medals.length) { if (medals[_local7].medal_name === _arg1.medal_name){ medals[_local7].medal_unlocked = true; break; }; _local7++; }; }; _local3 = {medal_name:_arg1.medal_name, medal_value:_arg1.medal_value, medal_difficulty:_arg1.medal_difficulty}; callListener(events.MEDAL_UNLOCKED, _arg1.success, _local3); break; case "getMedals": medals = _arg1.medals; _local3 = {medals:_arg1.medals}; callListener(events.MEDALS_LOADED, _arg1.success, _local3); break; case "getFiles": break; case "getSystemFiles": break; case "saveFile": save_file = null; _local3 = {file_id:_arg1.file_id, filename:_arg1.filename, file_url:_arg1.file_url, thumbnail:_arg1.thumbnail, icon:_arg1.icon}; callListener(events.FILE_SAVED, _arg1.success, _local3); break; case "checkFilePrivs": if (save_file){ save_file.checkPrivs(_arg1); } else { _local3 = {filename:_arg1.filename, folder:_arg1.folder, can_read:_arg1.can_read, can_write:_arg1.can_write}; callListener(events.FILE_PRIVS_LOADED, _arg1.success, _local3); }; break; }; } public static function getPeriodAlias(_arg1:String):String{ var _local2:String; for (_local2 in period_aliases) { if (_local2 == _arg1){ return (period_aliases[_local2].alias); }; }; return (null); } public static function loadMedals():void{ var _local1:Object; if (medals){ callListener(events.MEDALS_LOADED, true, {medals:medals}); return; }; _local1 = new Object(); if (hasUserSession()){ _local1.publisher_id = publisher_id; _local1.user_id = user_id; }; sendCommand("getMedals", _local1); } public static function saveLocal(_arg1:String, _arg2, _arg3:uint=0):void{ var _local4:SharedObject; if (!sharedObjects[_arg1]){ sharedObjects[_arg1] = SharedObject.getLocal(((("ng_ap_secure_" + movie_id) + "_") + _arg1)); }; _local4 = sharedObjects[_arg1]; _local4.data[_arg1] = encodeData(_arg2); _local4.flush(); } public static function getPeriodName(_arg1:String):String{ var _local2:String; for (_local2 in period_aliases) { if (_local2 == _arg1){ return (period_aliases[_local2].name); }; }; return (null); } private static function sendWarning(_arg1:String, _arg2:String=null):void{ if (_arg2){ _arg1 = (_arg1 + ((("\n[NewgroundsAPI WARNING] :: \tSee " + COMMANDS_WIKI_URL) + _arg2.toLowerCase()) + " for additional information.")); }; trace(("[NewgroundsAPI WARNING] :: " + _arg1)); } public static function isNewgrounds():Boolean{ return ((((publisher_id == 1)) || ((getHost().toLowerCase().indexOf("ungrounded.net") > -1)))); } private static function getCommandID(_arg1:String):String{ return (_arg1); } public static function getAlltimeScores(_arg1:String, _arg2:Object):void{ getScores(_arg1, "a", _arg2, "getAlltimeScores"); } } }//package com.newgrounds
Section 75
//NewgroundsAPIError (com.newgrounds.NewgroundsAPIError) package com.newgrounds { import flash.utils.*; public class NewgroundsAPIError { public var message:String; public var name:String; public var code:Number;// = 0 public var alias:String; private static const always_caps:Array = new Array("API", "URL", "ID"); public static const error_names:Object = init_names(); public static const aliases:Array = new Array("UNKNOWN_ERROR", "INVALID_API_ID", "MISSING_PARAM", "INVALID_STAT_ID", "INVALID_COMMAND_ID", "FLASH_ADS_NOT_APPROVED", "PERMISSION_DENIED", "IDENTIFICATION_REQUIRED", "INVALID_EMAIL_ADDRESS", "BANNED_USER", "SESSION_EXPIRED", "INVALID_SCORE", "INVALID_MEDAL", "INVALID_FOLDER", "FILE_NOT_FOUND", "SITE_ID_REQUIRED", "UPLOAD_IN_PROGRESS", "USER_CANCELLED", "CONFIRM_REQUEST", "CONNECTION_FAILED"); public static const error_codes:Object = init_codes(); public function NewgroundsAPIError(_arg1, _arg2:String){ code = 0; super(); if ((_arg1 is String)){ _arg1 = error_codes[_arg1]; } else { if (!(_arg1 is uint)){ _arg1 = 0; }; }; trace(_arg1); code = _arg1; message = _arg2; name = error_names[_arg1]; trace(name); alias = aliases[_arg1]; } public function isError():Boolean{ return (true); } private static function init_names():Array{ var _local1:Array; var _local2:uint; var _local3:Array; var _local4:uint; var _local5:String; _local1 = new Array(); _local2 = 0; while (_local2 < aliases.length) { _local3 = aliases[_local2].toLowerCase().split("_"); _local4 = 0; while (_local4 < _local3.length) { _local3[_local4] = (_local3[_local4].substr(0, 1).toUpperCase() + _local3[_local4].substr(1, _local3[_local4].length)); for each (_local5 in always_caps) { if (_local3[_local4].toUpperCase() == _local5){ _local3[_local4] = _local3[_local4].toUpperCase(); }; }; _local4++; }; _local1[_local2] = _local3.join(" "); _local2++; }; return (_local1); } public static function init_codes():Dictionary{ var _local1:Dictionary; var _local2:uint; _local1 = new Dictionary(); _local2 = 0; while (_local2 < aliases.length) { _local1[aliases[_local2]] = _local2; _local2++; }; return (_local1); } } }//package com.newgrounds
Section 76
//RC4 (com.newgrounds.RC4) package com.newgrounds { public class RC4 { private static var mykey:Array = new Array(0xFF); private static var sbox:Array = new Array(0xFF); private static function charsToHex(_arg1:Array):String{ var _local2:String; var _local3:Array; var _local4:uint; _local2 = new String(""); _local3 = new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"); _local4 = 0; while (_local4 < _arg1.length) { _local2 = (_local2 + (_local3[(_arg1[_local4] >> 4)] + _local3[(_arg1[_local4] & 15)])); _local4++; }; return (_local2); } public static function encrypt(_arg1:String, _arg2:String):String{ var _local3:Array; var _local4:Array; var _local5:Array; _local3 = strToChars(_arg1); _local4 = strToChars(_arg2); _local5 = calculate(_local3, _local4); return (charsToHex(_local5)); } private static function hexToChars(_arg1:String):Array{ var _local2:Array; var _local3:uint; _local2 = new Array(); _local3 = ((_arg1.substr(0, 2))=="0x") ? 2 : 0; while (_local3 < _arg1.length) { _local2.push(parseInt(_arg1.substr(_local3, 2), 16)); _local3 = (_local3 + 2); }; return (_local2); } public static function encryptbin(_arg1:String, _arg2:String):Array{ var _local3:Array; var _local4:Array; var _local5:Array; _local3 = strToChars(_arg1); _local4 = strToChars(_arg2); _local5 = calculate(_local3, _local4); return (_local5); } public static function decrypt(_arg1:String, _arg2:String):String{ var _local3:Array; var _local4:Array; var _local5:Array; _local3 = hexToChars(_arg1); _local4 = strToChars(_arg2); _local5 = calculate(_local3, _local4); return (charsToStr(_local5)); } private static function strToChars(_arg1:String):Array{ var _local2:Array; var _local3:uint; _local2 = new Array(); _local3 = 0; while (_local3 < _arg1.length) { _local2.push(_arg1.charCodeAt(_local3)); _local3++; }; return (_local2); } private static function calculate(_arg1:Array, _arg2:Array):Array{ var _local3:uint; var _local4:uint; var _local5:Array; var _local6:uint; var _local7:uint; var _local8:uint; var _local9:uint; var _local10:uint; initialize(_arg2); _local3 = 0; _local4 = 0; _local5 = new Array(); _local9 = 0; while (_local9 < _arg1.length) { _local3 = ((_local3 + 1) % 0x0100); _local4 = ((_local4 + sbox[_local3]) % 0x0100); _local7 = sbox[_local3]; sbox[_local3] = sbox[_local4]; sbox[_local4] = _local7; _local10 = ((sbox[_local3] + sbox[_local4]) % 0x0100); _local6 = sbox[_local10]; _local8 = (_arg1[_local9] ^ _local6); _local5.push(_local8); _local9++; }; return (_local5); } private static function initialize(_arg1:Array):void{ var _local2:uint; var _local3:uint; var _local4:uint; var _local5:uint; _local2 = 0; _local4 = _arg1.length; _local5 = 0; while (_local5 <= 0xFF) { mykey[_local5] = _arg1[(_local5 % _local4)]; sbox[_local5] = _local5; _local5++; }; _local5 = 0; while (_local5 <= 0xFF) { _local2 = (((_local2 + sbox[_local5]) + mykey[_local5]) % 0x0100); _local3 = sbox[_local5]; sbox[_local5] = sbox[_local2]; sbox[_local2] = _local3; _local5++; }; } private static function charsToStr(_arg1:Array):String{ var _local2:String; var _local3:uint; _local2 = new String(""); _local3 = 0; while (_local3 < _arg1.length) { _local2 = (_local2 + String.fromCharCode(_arg1[_local3])); _local3++; }; return (_local2); } } }//package com.newgrounds
Section 77
//ContentLoadEvent (com.relish.events.ContentLoadEvent) package com.relish.events { import flash.events.*; public class ContentLoadEvent extends Event { public var progressObject:Object; public static const CONTENT_PROGRESS:String = "contentProgress"; public function ContentLoadEvent(){ super(CONTENT_PROGRESS); } } }//package com.relish.events
Section 78
//InfoEvent (com.relish.events.InfoEvent) package com.relish.events { import flash.events.*; public class InfoEvent extends Event { public var data:Object; public static const INFO:String = "info"; public function InfoEvent(_arg1:String, _arg2:Object=null, _arg3:Boolean=false, _arg4:Boolean=false){ super(_arg1, _arg3, _arg4); this.data = _arg2; } override public function clone():Event{ return (new InfoEvent(this.type, this.data, this.bubbles, this.cancelable)); } } }//package com.relish.events
Section 79
//AudioManager (com.relish.managers.AudioManager) package com.relish.managers { import flash.events.*; import gs.*; import com.relish.media.*; import flash.utils.*; import com.relish.view.*; import flash.net.*; import flash.media.*; import gs.easing.*; import com.relish.net.*; public class AudioManager { public static var allSounds:Array; private static var cachedSounds:Array; private static var muted:Boolean = false; private static var useCaching:Boolean; public static function killSounds(_arg1:Array):void{ var _local2:int; _local2 = 0; while (_local2 < _arg1.length) { killSound(_arg1[_local2]); _local2++; }; } private static function getCachingId(_arg1:String):String{ return (_arg1.split(".").join("")); } public static function pauseAll():void{ var _local1:int; _local1 = 0; while (_local1 < allSounds.length) { if (allSounds[_local1] != null){ allSounds[_local1].pause(); }; _local1++; }; } public static function init(_arg1:Boolean=true):void{ useCaching = _arg1; cachedSounds = new Array(); allSounds = new Array(); } public static function killSound(_arg1:String):void{ var _local2:String; _local2 = getCachingId(_arg1); if (((!((cachedSounds[_local2] == null))) && (!((cachedSounds[_local2] == undefined))))){ if (cachedSounds[_local2].loadCompleted){ cachedSounds[_local2].stop(); }; }; } private static function onSoundLoaded(_arg1:Event):void{ } public static function toggleMuting(_arg1:Boolean):void{ muted = _arg1; if (muted){ muteAllSounds(); } else { unmuteAllSounds(); }; } public static function loadSoundFromUrl(_arg1:String, _arg2:Object=null):ManagedSound{ var _local3:ManagedSound; var _local4:String; var _local5:String; _local4 = ""; _local5 = ((Sitemap.baseUrl == null)) ? "" : Sitemap.baseUrl; if (((((((useCaching) && ((_arg1.lastIndexOf("/") >= 0)))) && ((_arg1.lastIndexOf(".") >= 0)))) && ((_arg1.lastIndexOf(".") > _arg1.lastIndexOf("/"))))){ _local4 = getCachingId(_arg1); }; if ((((((_local4 == "")) || ((cachedSounds[_local4] == null)))) || ((cachedSounds[_local4] == undefined)))){ _local3 = new ManagedSound(_arg2); _local3.addEventListener(Event.COMPLETE, onSoundLoaded); _local3.load(new URLRequest(((_local5 + _arg1) + BasicSite.version))); allSounds.push(_local3); if (useCaching){ cachedSounds[_local4] = _local3; }; return (ManagedSound(_local3)); } else { if (cachedSounds[_local4].loadCompleted){ cachedSounds[_local4].playCached(_arg2); return (cachedSounds[_local4]); }; }; return (null); } public static function get isMuted():Boolean{ return (muted); } public static function unpauseAll():void{ var _local1:int; _local1 = 0; while (_local1 < allSounds.length) { if (allSounds[_local1] != null){ allSounds[_local1].unpause(); }; _local1++; }; } public static function changeVolume(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false){ var _local5:String; _local5 = getCachingId(_arg1); if (((!((cachedSounds[_local5] == null))) && (!((cachedSounds[_local5] == undefined))))){ cachedSounds[_local5].retainedVol = _arg2; if (!muted){ if (((((!((cachedSounds[_local5] == undefined))) && (!((cachedSounds[_local5] == null))))) && ((cachedSounds[_local5].channel is SoundChannel)))){ if (_arg4){ TweenMax.to(cachedSounds[_local5].channel, _arg3, {volume:_arg2, onComplete:killSound, onCompleteParams:[_arg1]}); } else { TweenMax.to(cachedSounds[_local5].channel, _arg3, {volume:_arg2}); }; }; }; }; } public static function muteAllSounds(_arg1:Boolean=false):void{ var _local2:int; _local2 = 0; while (_local2 < allSounds.length) { if (allSounds[_local2] != null){ if (allSounds[_local2].channel){ if (!_arg1){ allSounds[_local2].channel.stop(); }; TweenMax.to(allSounds[_local2].channel, 0, {volume:0}); }; }; _local2++; }; } public static function batchPreload(_arg1:Array, _arg2:int=10):void{ var _local3:int; _local3 = 0; while ((((_local3 < _arg1.length)) && ((_local3 < _arg2)))) { _local3++; }; } public static function destroyAllSounds():void{ var _local1:int; _local1 = 0; while (_local1 < allSounds.length) { if (allSounds[_local1] != null){ if (allSounds[_local1].channel){ allSounds[_local1].channel.stop(); allSounds[_local1].channel = null; }; if (allSounds[_local1].stop){ allSounds[_local1].stop(); }; allSounds[_local1] = null; }; _local1++; }; allSounds = []; } public static function unmuteAllSounds():void{ var _local1:int; trace("[AudioManager] unmuteAllSounds"); _local1 = 0; while (_local1 < allSounds.length) { if (allSounds[_local1] != null){ if (allSounds[_local1].channel){ if (allSounds[_local1].soundParams.repeat){ allSounds[_local1].channel = allSounds[_local1].play(0, 9999); }; TweenMax.to(allSounds[_local1].channel, 0, {volume:allSounds[_local1].retainedVol}); }; }; _local1++; }; } public static function playSoundFromLibrary(_arg1:String, _arg2:Boolean=false):void{ var _local3:Class; var _local4:SoundChannel; var _local5:*; if (muted){ return; }; _local3 = (getDefinitionByName(_arg1) as Class); _local5 = new (_local3); _local4 = _local5.play(0, (int(_arg2) * 999)); _local4.addEventListener(Event.SOUND_COMPLETE, onSoundCompleted); if ((_local5 is ManagedSound)){ ManagedSound(_local5).channel = _local4; }; allSounds.push(_local5); } private static function onSoundCompleted(_arg1:Event):void{ trace("[AudioManager] onSoundCompleted"); } } }//package com.relish.managers
Section 80
//DialogManager (com.relish.managers.DialogManager) package com.relish.managers { import flash.events.*; import flash.display.*; import gs.*; import flash.utils.*; import com.relish.view.*; import com.relish.util.*; import com.relish.ui.*; import flash.net.*; import com.relish.events.*; import com.relish.net.*; public class DialogManager { public static const DIALOG_TRANSITIONED:String = "dialogTransitioned"; public static const DIALOG_READY:String = "dialogReady"; public static const REMOVE_DIALOG:String = "removeDialog"; public static const DELETE_ALL:String = "deleteAll"; protected static var cachedAssets:Array; protected static var currentSubpageId:String = ""; protected static var dialogData:Array; protected static var reusingDialog:Boolean = false; protected static var dispatcher:EventDispatcher; public static var dialogs:Array; protected static var dialogParams:Object; protected static var packageName:String; protected static var progressDispatcher:EventDispatcher; protected static var dialogLoader:AdvancedLoader; protected static var currentDialogXml:XML; public static var currentDialogId:String; public function DialogManager(){ trace("!----------!----------!"); trace("[DialogManager] DO NOT CREATE AN INSTANCE OF THIS STATIC CLASS - REVISE YOUR CODE"); trace("!----------!----------!"); } protected static function onTransitionDialogXmlLoad(_arg1:Event):void{ if (BasicSite.verbose){ trace("[DialogeManager] onTransitionDialogXmlLoad - dialog transition xml successfully loaded"); }; currentDialogXml = Sitemap.currentDialogXml; dialogData[currentDialogId].dialogXml = currentDialogXml; dialogData[currentDialogId].assetList = new AssetList(XML(currentDialogXml.assets)); if (dialogData[currentDialogId].assetList.length > 0){ TweenLite.delayedCall(0.1, pollDialogProgress, []); } else { dialogs[(dialogs.length - 1)].setAssets(dialogData[currentDialogId].assetList); dialogs[(dialogs.length - 1)].setContent(currentDialogXml); dialogs[(dialogs.length - 1)].transitionIn(); }; } protected static function loadInternalDialog(_arg1:String):void{ var _local2:String; var _local3:Class; var _local4:*; if (BasicSite.verbose){ trace("[DialogManager] loadInternalDialog - Attaching class."); }; _local2 = ((packageName + ".dialogs.") + dialogData[_arg1].loadInfo.@template.split(":")[1]); _local3 = (getDefinitionByName(_local2) as Class); _local4 = new (_local3); presentDialog(PageTemplate(_local4)); } private static function transitionDialog(_arg1:EventDispatcher, _arg2:String):void{ dialogs[(dialogs.length - 1)].setParams(dialogParams); dialogData[_arg2].loadInfo = Sitemap.transitionDialogXml(_arg1, _arg2); } protected static function pollDialogProgress():void{ var contentLoadEvent:ContentLoadEvent; var progressObject:Object; var recentDialogAssets:AssetList; try { recentDialogAssets = dialogData[currentDialogId].assetList; } catch(err:Error) { trace(("[DialogManager] pollDialogProgress - ERROR - could not find an assetList for this dialog - " + err.message)); }; if (recentDialogAssets != null){ try { progressObject = recentDialogAssets.pollProgress(); } catch(err:Error) { trace(("[DialogManager] pollDialogProgress - ERROR in collecting dialog assets - " + err.message)); }; try { if (((!((progressObject == null))) && (!((dialogLoader == null))))){ progressObject.preloadBytes = (progressObject.preloadBytes + dialogLoader.contentLoaderInfo.bytesLoaded); progressObject.primaryTotal = (progressObject.primaryTotal + dialogLoader.contentLoaderInfo.bytesTotal); }; if (((((!((progressObject == null))) && (progressObject.accurateValues))) && (!((progressDispatcher == null))))){ contentLoadEvent = new ContentLoadEvent(); contentLoadEvent.progressObject = progressObject; progressDispatcher.dispatchEvent(contentLoadEvent); }; } catch(err:Error) { trace(("[DialogManager] pollDialogProgress - ERROR in calculating load progress - " + err.message)); }; if ((((((progressObject.currentTier > AssetList.PRELOAD)) && (!((dialogLoader.content == null))))) && ((dialogLoader.contentLoaderInfo.bytesLoaded >= dialogLoader.contentLoaderInfo.bytesTotal)))){ if (!reusingDialog){ PageTemplate(dialogLoader.content).setAssets(recentDialogAssets); presentDialog(PageTemplate(dialogLoader.content)); dispatcher.dispatchEvent(new Event(Sitemap.DIALOG_LOADED)); } else { dialogs[(dialogs.length - 1)].setAssets(recentDialogAssets); dialogs[(dialogs.length - 1)].setContent(XML(currentDialogXml.content)); dialogs[(dialogs.length - 1)].transitionIn(); dispatcher.dispatchEvent(new Event(DIALOG_TRANSITIONED)); }; } else { TweenLite.delayedCall(0.3, pollDialogProgress, []); }; } else { if (progressDispatcher != null){ progressObject = new Object(); progressObject.preloadBytes = dialogLoader.contentLoaderInfo.bytesLoaded; progressObject.primaryTotal = dialogLoader.contentLoaderInfo.bytesTotal; contentLoadEvent = new ContentLoadEvent(); contentLoadEvent.progressObject = progressObject; progressDispatcher.dispatchEvent(contentLoadEvent); if (progressObject.preloadBytes < progressObject.primaryTotal){ TweenLite.delayedCall(0.1, pollDialogProgress, []); }; }; }; } protected static function onDialogLoad(_arg1:Event):void{ if (BasicSite.verbose){ trace("[DialogManager] onDialogLoad - external content successfully loaded"); }; BasicSite.rootRef.setURL(currentDialogId); if (dialogData[currentDialogId].assetList == null){ presentDialog(PageTemplate(_arg1.target.content)); dispatcher.dispatchEvent(new Event(Sitemap.DIALOG_LOADED)); }; } public static function destroyDialog(_arg1:String):void{ var _local2:int; _local2 = 0; while (_local2 < dialogs.length) { if (((!((dialogs[_local2] == undefined))) && ((((dialogs[_local2].id == _arg1)) || ((_arg1 == DELETE_ALL)))))){ dialogData[_arg1] = undefined; dialogs[_local2].dispatchEvent(new Event(REMOVE_DIALOG)); dialogs[_local2] = null; break; }; _local2++; }; cleanGarbage(); } public static function init(_arg1:EventDispatcher):void{ dispatcher = _arg1; dialogs = new Array(); dialogData = new Array(); } public static function loadDialog(_arg1:String, _arg2:Object=null):Boolean{ var _local3:EventDispatcher; var _local4:Object; _local3 = new EventDispatcher(); trace(("[DialogManager] loadDialog - " + _arg1)); if (_arg1.charAt(0) == "/"){ _arg1 = _arg1.slice(1, _arg1.length); }; if (_arg1.indexOf("/") >= 0){ _local4 = ((_arg2 == null)) ? new Object() : _arg2; _local4.subpage = _arg1.split("/")[1]; return (DialogManager.loadDialog(_arg1.split("/")[0], _local4)); }; if (_arg1 == currentDialogId){ trace(("[DialogManager] loadDialog - already on dialog " + currentDialogId)); if ((((_arg2 == null)) || ((_arg2.subpage == null)))){ return (false); }; if (_arg2.subpage == currentSubpageId){ trace(("[DialogManager] loadDialog - already on subpage " + _arg2.subpage)); return (false); }; dialogs[(dialogs.length - 1)].setParams(_arg2); if (_arg2 != null){ dialogData[_arg1].params = _arg2; }; dialogParams = _arg2; currentSubpageId = _arg2.subpage; return (false); }; if (BasicSite.verbose){ trace(("[DialogManager] loadDialog - attempt to load DIALOG " + _arg1)); }; if (((((BasicSite.verbose) && (!((_arg2 == null))))) && (!((_arg2.subpage == null))))){ trace(("[DialogManager] - with subpage " + _arg2.subpage)); }; while (dialogs.indexOf(null) >= 0) { dialogs.splice(dialogs.indexOf(null), 1); }; TweenLite.killDelayedCallsTo(pollDialogProgress); dialogData[_arg1] = new Object(); if (_arg2 != null){ dialogData[_arg1].params = _arg2; }; dialogParams = _arg2; currentSubpageId = ((((_arg2 == null)) || ((_arg2.subpage == null)))) ? "" : _arg2.subpage; if (Sitemap.siblingDialogs(_arg1, currentDialogId)){ trace("[DialogManager] loadDialog - same template - use transition"); reusingDialog = true; currentDialogId = _arg1; _local3.addEventListener(Sitemap.DIALOG_TRANSITIONED, onTransitionDialogXmlLoad); TweenLite.delayedCall(dialogs[(dialogs.length - 1)].transitionOut(), transitionDialog, [_local3, _arg1]); return (false); }; reusingDialog = false; currentDialogId = _arg1; _local3.addEventListener(Sitemap.DIALOG_LOADED, onDialogXmlLoad); dialogData[_arg1].loadInfo = Sitemap.loadDialogXml(_local3, _arg1); return (true); } public static function closeDialog(_arg1:String):void{ var _local2:int; _local2 = 0; while (_local2 < dialogs.length) { if (((((!((dialogs[_local2] == undefined))) && (!((dialogs[_local2] == null))))) && ((((dialogs[_local2].id == _arg1)) || ((_arg1 == DELETE_ALL)))))){ TweenLite.delayedCall(dialogs[_local2].animateOut(), destroyDialog, [_arg1]); }; _local2++; }; if (_arg1 == DELETE_ALL){ currentDialogId = ""; }; } public static function get currentDialog():PageTemplate{ if (dialogs.length <= 0){ return (null); }; return (dialogs[(dialogs.length - 1)]); } protected static function onDialogXmlLoad(_arg1:Event):void{ var _local2:*; if (BasicSite.verbose){ trace("[DialogeManager] onDialogXmlLoad - dialog xml successfully loaded"); }; _local2 = Sitemap.currentDialogXml; dialogData[currentDialogId].dialogXml = Sitemap.currentDialogXml; if (_local2.assets.children().length() > 0){ if (dialogData[currentDialogId].loadInfo.@template.toString().split(":")[0] == "ext"){ createDialog(); }; dialogData[currentDialogId].assetList = new AssetList(XML(_local2.assets)); dispatcher.dispatchEvent(new Event(AssetList.RESUME_LOAD)); } else { createDialog(); }; TweenLite.delayedCall(0.1, pollDialogProgress, []); } protected static function presentDialog(_arg1:PageTemplate):void{ if (BasicSite.verbose){ trace("[DialogManager] presentDialog"); }; _arg1.id = currentDialogId; dialogData[_arg1.id].clip = _arg1; if (dialogs.indexOf(_arg1) < 0){ dialogs.push(_arg1); }; _arg1.setContent(XML(dialogData[_arg1.id].dialogXml.content)); if (dialogParams != null){ _arg1.setParams(dialogParams); }; dispatcher.dispatchEvent(new Event(DIALOG_READY)); } public static function setPackageName(_arg1:String):void{ packageName = _arg1; } public static function cleanGarbage():void{ var _local1:int; _local1 = 0; while (_local1 < dialogs.length) { if ((((dialogs[_local1] == null)) || (!((dialogs[_local1] is PageTemplate))))){ dialogs.splice(_local1, 1); _local1--; }; _local1++; }; if (dialogs.length <= 0){ currentDialogId = ""; }; } public static function addProgressDispatcher(_arg1:EventDispatcher):void{ progressDispatcher = _arg1; } protected static function loadExternalDialog(_arg1:String):void{ var _local2:String; var _local3:String; _local2 = ""; _local3 = ("dialogs/" + dialogData[_arg1].loadInfo.@template.split(":")[1]); _local2 = Sitemap.getDialogPath(currentDialogId); if (BasicSite.verbose){ trace((("[DialogManager] loadExternalDialog - Loading external swf (" + _local3) + ")")); }; dialogLoader = new AdvancedLoader(); dialogLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onDialogLoad); dialogLoader.load(new URLRequest((_local3 + BasicSite.version))); } protected static function createDialog():void{ if (dialogData[currentDialogId].loadInfo.@template.toString().split(":")[0] == "int"){ loadInternalDialog(currentDialogId); } else { loadExternalDialog(currentDialogId); }; } } }//package com.relish.managers
Section 81
//PageManager (com.relish.managers.PageManager) package com.relish.managers { import flash.events.*; import flash.display.*; import gs.*; import flash.utils.*; import com.relish.view.*; import com.relish.util.*; import com.relish.ui.*; import flash.net.*; import com.relish.events.*; import com.asual.swfaddress.*; import com.relish.net.*; public class PageManager { public static const PAGE_READY:String = "pageReady"; public static const PAGE_TRANSITIONED:String = "pageTransitioned"; public static const PAGE_XML_LOADED:String = "pageXmlLoaded"; protected static var pageLoader:AdvancedLoader; public static var cachedXml:Array; public static var queuedSubpageId:String = ""; protected static var offsetX:Number = 0; protected static var dispatcher:EventDispatcher; public static var currentPage:PageTemplate; protected static var offsetY:Number = 0; protected static var assetList:AssetList; protected static var progressDispatcher:EventDispatcher; protected static var loadInfo:XML; public static var cachedAssets:Array; protected static var currentPageXml:XML; public static var currentSubpageId:String = ""; public static var queuedPageId:String = ""; protected static var reusingPage:Boolean = false; public static var currentPageId:String = ""; protected static var packageName:String; protected static var pageParams:Object; public function PageManager(){ trace("!----------!----------!"); trace("[PageManager] DO NOT CREATE AN INSTANCE OF THIS STATIC CLASS - REVISE YOUR CODE"); trace("!----------!----------!"); } protected static function loadExternalPage(_arg1:String):void{ var extUrl:String; var aPageId = _arg1; extUrl = ("pages/" + loadInfo.@template.split(":")[1]); if (BasicSite.verbose){ trace((("[PageManager] loadExternalPage - Loading external swf (" + extUrl) + ")")); }; if (pageLoader != null){ try { pageLoader.close(); } catch(e:Error) { }; pageLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE, onPageLoad); pageLoader = null; }; pageLoader = new AdvancedLoader(); pageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onPageLoad); pageLoader.load(new URLRequest((extUrl + BasicSite.version))); } private static function transitionPage(_arg1:EventDispatcher, _arg2:String):void{ currentPage.setParams(pageParams); loadInfo = Sitemap.transitionPageXml(_arg1, _arg2); } protected static function pollProgress():void{ var contentLoadEvent:ContentLoadEvent; var progressObject:Object; if (assetList != null){ try { progressObject = assetList.pollProgress(); } catch(err:Error) { trace("[PageManager] pollProgress - ERROR in polling asset list"); TweenLite.delayedCall(0.1, pollProgress, []); return; }; try { if (((!((progressObject == null))) && (!((pageLoader == null))))){ progressObject.preloadBytes = (progressObject.preloadBytes + pageLoader.contentLoaderInfo.bytesLoaded); progressObject.primaryTotal = (progressObject.primaryTotal + pageLoader.contentLoaderInfo.bytesTotal); }; if (((((!((progressObject == null))) && (progressObject.accurateValues))) && (!((progressDispatcher == null))))){ contentLoadEvent = new ContentLoadEvent(); contentLoadEvent.progressObject = progressObject; progressDispatcher.dispatchEvent(contentLoadEvent); }; } catch(err:Error) { trace(("[PageManager] pollProgress - ERROR in calculating load progress - " + err.message)); }; if ((((((((progressObject.currentTier > AssetList.PRELOAD)) && (!((pageLoader == null))))) && (!((pageLoader.content == null))))) && ((pageLoader.contentLoaderInfo.bytesLoaded >= pageLoader.contentLoaderInfo.bytesTotal)))){ finalizeLoad(); } else { TweenLite.delayedCall(0.1, pollProgress, []); }; } else { if (progressDispatcher != null){ progressObject = new Object(); progressObject.preloadBytes = pageLoader.contentLoaderInfo.bytesLoaded; progressObject.primaryTotal = pageLoader.contentLoaderInfo.bytesTotal; contentLoadEvent = new ContentLoadEvent(); contentLoadEvent.progressObject = progressObject; progressDispatcher.dispatchEvent(contentLoadEvent); if (progressObject.preloadBytes < progressObject.primaryTotal){ TweenLite.delayedCall(0.1, pollProgress, []); }; }; }; } public static function init(_arg1:EventDispatcher):void{ dispatcher = _arg1; cachedAssets = new Array(); cachedXml = new Array(); } protected static function onPageLoad(_arg1:Event):void{ if (BasicSite.verbose){ trace("[PageManager] onPageLoad - external content successfully loaded"); }; if (assetList == null){ switchPage(PageTemplate(_arg1.target.content)); dispatcher.dispatchEvent(new Event(Sitemap.PAGE_LOADED)); }; } public static function loadPage(_arg1:String, _arg2:Object=null):Boolean{ var _local3:EventDispatcher; var _local4:Object; if (_arg1.charAt(0) == "/"){ _arg1 = _arg1.slice(1, _arg1.length); }; if (_arg1.indexOf("/") >= 0){ _local4 = ((_arg2 == null)) ? new Object() : _arg2; _local4.subpage = _arg1.split("/")[1]; return (PageManager.loadPage(_arg1.split("/")[0], _local4)); }; if (!Sitemap.siblingPages(_arg1, currentPageId)){ if (BasicSite.verbose){ trace((((("[PageManager] loadPage - attempt to load PAGE '" + _arg1) + "' from '") + currentPageId) + "'")); }; if (currentPageId == _arg1){ trace("[PageManager] loadPage - matches current page id"); if (!(((((_arg2 == null)) || ((_arg2.subpage == undefined)))) || ((_arg2.subpage == currentSubpageId)))){ trace((("[PageManager] loadPage - attempt to load SUBPAGE '" + currentSubpageId) + "'")); currentSubpageId = _arg2.subpage; currentPage.setParams(_arg2); } else { if (BasicSite.verbose){ trace(((("[PageManager] loadPage - ignored, already on page " + currentPageId) + " - ") + currentSubpageId)); }; }; return (false); } else { if (currentPage != null){ TweenLite.killDelayedCallsTo(pollProgress); queuedPageId = _arg1; if (((!((_arg2 == null))) && (!((_arg2.subpage == undefined))))){ queuedSubpageId = _arg2.subpage; } else { queuedSubpageId = ""; }; TweenLite.delayedCall(currentPage.animateOut(), replaceCurrentPage, [_arg1, _arg2]); return (true); }; }; }; queuedPageId = _arg1; if (_local3 != null){ _local3.removeEventListener(Sitemap.PAGE_LOADED, onPageXmlLoad); _local3 = null; }; _local3 = new EventDispatcher(); if (Sitemap.siblingPages(_arg1, currentPageId)){ trace("[PageManager] loadPage - same template - use transition"); reusingPage = true; currentPageId = _arg1; _local3.addEventListener(Sitemap.PAGE_TRANSITIONED, onTransitionPageXmlLoad); TweenLite.delayedCall(currentPage.transitionOut(), transitionPage, [_local3, _arg1]); return (false); }; _local3.addEventListener(Sitemap.PAGE_LOADED, onPageXmlLoad); loadInfo = Sitemap.loadPageXml(_local3, _arg1); reusingPage = false; TweenLite.killDelayedCallsTo(pollProgress); if (assetList != null){ assetList.pauseDownload(); cachedAssets[currentPageId] = assetList; assetList = null; }; pageParams = _arg2; return (true); } public static function getAssetPointer():AssetList{ return (assetList); } protected static function finalizeLoad():void{ trace(("[PageManager] finalizeLoad - for " + currentPageId)); if (!reusingPage){ if (assetList != null){ cachedAssets[currentPageId] = assetList; PageTemplate(pageLoader.content).setAssets(assetList); }; switchPage(PageTemplate(pageLoader.content)); dispatcher.dispatchEvent(new Event(Sitemap.PAGE_LOADED)); } else { currentPage.setAssets(assetList); currentPage.setContent(XML(currentPageXml.content)); currentPage.transitionIn(); dispatcher.dispatchEvent(new Event(PAGE_TRANSITIONED)); }; } protected static function createPage():void{ if (loadInfo.@template.toString().split(":")[0] == "int"){ loadInternalPage(currentPageId); } else { loadExternalPage(currentPageId); }; } public static function setPackageName(_arg1:String):void{ packageName = _arg1; } protected static function onPageXmlLoad(_arg1:Event):void{ if (BasicSite.verbose){ trace(("[PageManager] onPageXmlLoad - page xml successfully loaded - " + queuedPageId)); }; currentPageXml = Sitemap.currentPageXml; currentPageId = queuedPageId; currentSubpageId = queuedSubpageId; cachedXml[currentPageId] = currentPageXml; if (currentPageXml.assets.children().length() > 0){ trace("[PageManager] onPageXmlLoad - has assets to load"); if (loadInfo.@template.toString().split(":")[0] == "ext"){ createPage(); }; if (cachedAssets[queuedPageId] == undefined){ assetList = new AssetList(XML(currentPageXml.assets)); dispatcher.dispatchEvent(new Event(AssetList.RESUME_LOAD)); trace("[PageManager] onPageXmlLoad - cachedAssets do not yet exist"); } else { assetList = cachedAssets[queuedPageId]; trace(((("[PageManager] onPageXmlLoad - cachedAssets at " + queuedPageId) + " = ") + assetList)); if (!assetList.isComplete()){ trace("[PageManager] onPageXmlLoad - cachedAssets incomplete"); dispatcher.dispatchEvent(new Event(AssetList.RESUME_LOAD)); assetList.resumeDownload(); }; }; } else { createPage(); }; dispatcher.dispatchEvent(new Event(PAGE_XML_LOADED)); TweenLite.delayedCall(0.1, pollProgress, []); } public static function addProgressDispatcher(_arg1:EventDispatcher):void{ progressDispatcher = _arg1; } public static function offsetPage(_arg1:Number, _arg2:Number):void{ offsetX = _arg1; offsetY = _arg2; if (currentPage != null){ currentPage.x = _arg1; currentPage.y = _arg2; }; } protected static function trueId(_arg1:Object=null):String{ _arg1 = ((_arg1 == null)) ? pageParams : _arg1; if (((((!((_arg1 == null))) && (!((_arg1.subpage == undefined))))) && ((_arg1.subpage.length > 0)))){ return (_arg1.subpage); }; return (currentPageId); } public static function updateSubpage(_arg1:String):void{ currentSubpageId = _arg1; } protected static function replaceCurrentPage(_arg1:String, _arg2:Object=null):void{ if (currentPage != null){ currentPage.destroy(); currentPage = null; }; loadPage(_arg1, _arg2); } public static function getPageRef():PageTemplate{ return (currentPage); } protected static function onTransitionPageXmlLoad(_arg1:Event):void{ if (BasicSite.verbose){ trace("[PageManager] onTransitionPageXmlLoad - page transition xml successfully loaded"); }; currentPageXml = Sitemap.currentPageXml; assetList = new AssetList(XML(currentPageXml.assets)); if (assetList.length > 0){ TweenLite.delayedCall(0.1, pollProgress, []); } else { currentPage.setAssets(assetList); currentPage.setContent(XML(currentPageXml.content)); currentPage.transitionIn(); }; if (!assetList.isComplete()){ dispatcher.dispatchEvent(new Event(AssetList.RESUME_LOAD)); }; } protected static function onPageProgress(_arg1:ProgressEvent):void{ dispatcher.dispatchEvent(_arg1); } protected static function switchPage(_arg1:PageTemplate):void{ var newPage = _arg1; trace(("[PageManager] switchPage - " + newPage)); currentPage = newPage; currentPage.x = offsetX; currentPage.y = offsetY; currentPage.id = queuedPageId; BasicSite.rootRef.setURL((currentPage.id + (((((!((pageParams == null))) && (!((pageParams.subpage == undefined))))) && ((pageParams.subpage.length > 0)))) ? ("/" + pageParams.subpage) : "")); try { currentPage.setContent(XML(currentPageXml.content)); } catch(err:Error) { trace(err.message); trace("Error in drawing content from page XML."); trace("There should be a content node in either the sitemap.pages.page node or the page xml"); }; if (pageParams != null){ currentPage.setParams(pageParams); }; dispatcher.dispatchEvent(new Event(PAGE_READY)); } protected static function loadInternalPage(_arg1:String):void{ var _local2:String; var _local3:Class; var _local4:*; if (BasicSite.verbose){ trace("[PageManager] loadInternalPage - Attaching class."); }; _local2 = ((packageName + ".pages.") + loadInfo.@template.split(":")[1]); _local3 = (getDefinitionByName(_local2) as Class); _local4 = new (_local3); switchPage(PageTemplate(_local4)); } } }//package com.relish.managers
Section 82
//ManagedSound (com.relish.media.ManagedSound) package com.relish.media { import flash.events.*; import gs.*; import flash.net.*; import flash.media.*; import com.relish.managers.*; public class ManagedSound extends Sound { public var channel:SoundChannel; public var loadCompleted:Boolean;// = false public var autoPlay:Boolean;// = true public var loadInitiated:Boolean;// = false public var paused:Boolean;// = false private var pausePosition:Number;// = 0 public var retainedVol:Number;// = 1 public var soundParams:Object; public static const DEFAULT_VOLUME:Number = 1; public static const PLAYBACK_COMPLETE:String = "playbackComplete"; public function ManagedSound(_arg1:Object=null){ paused = false; autoPlay = true; loadInitiated = false; loadCompleted = false; retainedVol = 1; pausePosition = 0; soundParams = ((_arg1)!=null) ? setParams(_arg1) : setParams({volume:DEFAULT_VOLUME, autoplay:true, repeat:false, delay:0}); if (soundParams.autoplay != undefined){ autoPlay = soundParams.autoplay; }; if (soundParams.retainedVol != undefined){ retainedVol = _arg1.retainedVol; }; super(); } public function stop():void{ if (channel != null){ pausePosition = 0; channel.stop(); }; TweenLite.killDelayedCallsTo(startSound); } private function setParams(_arg1:Object=null):Object{ var _local2:Object; _local2 = new Object(); _local2.volume = ((_arg1.volume)!=null) ? _arg1.volume : DEFAULT_VOLUME; _local2.autoplay = ((_arg1.autoplay)==false) ? false : true; _local2.repeat = ((_arg1.repeat)==true) ? true : false; _local2.delay = ((_arg1.delay)>0) ? _arg1.delay : 0; return (_local2); } public function playCached(_arg1:Object=null):SoundChannel{ if (AudioManager.isMuted){ return (channel); }; soundParams = ((_arg1)!=null) ? setParams(_arg1) : setParams({volume:DEFAULT_VOLUME, autoplay:true, repeat:false, delay:0}); if (soundParams.autoplay){ TweenLite.delayedCall(soundParams.delay, startSound, [(soundParams.repeat) ? 9999 : 0]); }; return (channel); } private function onSoundLoaded(_arg1:Event):void{ trace(((("[ManagedSound] onSoundLoaded - " + soundParams.autoplay) + ", ") + soundParams.repeat)); loadCompleted = true; if (((autoPlay) && (!(AudioManager.isMuted)))){ if (soundParams.repeat){ TweenLite.delayedCall(soundParams.delay, startSound, [9999]); } else { TweenLite.delayedCall(soundParams.delay, startSound); }; }; } public function mute(_arg1:Number=0.5):void{ TweenLite.to(channel, _arg1, {volume:0}); } private function onLoopSound(_arg1:Event):void{ channel = play(0, 9999); channel.addEventListener(Event.SOUND_COMPLETE, onLoopSound); } public function unmute(_arg1:Number=0.5):void{ TweenLite.to(channel, _arg1, {volume:soundParams.volume}); } private function onRewindSound(_arg1:Event):void{ dispatchEvent(new Event(PLAYBACK_COMPLETE)); channel.stop(); } public function get playheadPercentage():Number{ if (channel == null){ return (0); }; return (Math.max(0, Math.min(1, (channel.position / Sound(this).length)))); } private function startSound(_arg1:int=0):void{ if (AudioManager.isMuted){ return; }; channel = play(0, _arg1); TweenLite.to(channel, 0, {volume:soundParams.volume}); if (!soundParams.repeat){ channel.addEventListener(Event.SOUND_COMPLETE, onRewindSound); }; } override public function load(_arg1:URLRequest, _arg2:SoundLoaderContext=null):void{ loadInitiated = true; addEventListener(Event.COMPLETE, onSoundLoaded); super.load(_arg1); } public function pause():void{ if (!paused){ paused = true; pausePosition = channel.position; channel.stop(); }; } public function unpause():void{ if (((paused) || ((pausePosition == 0)))){ paused = false; if (!soundParams.repeat){ channel = play(pausePosition); } else { channel = play(pausePosition, 9999); }; }; } } }//package com.relish.media
Section 83
//Sitemap (com.relish.net.Sitemap) package com.relish.net { import flash.events.*; import flash.display.*; import gs.*; import com.relish.view.*; import flash.net.*; import com.relish.managers.*; public class Sitemap { public static const LOADED:String = "loaded"; public static const XML_ONLY_LOADED:String = "xmlOnlyLoaded"; public static const PAGE_LOADED:String = "pageLoaded"; public static const DIALOG_TRANSITIONED:String = "dialogTransitioned"; public static const DIALOG_LOADED:String = "dialogLoaded"; public static const PAGE_TRANSITIONED:String = "pageTransitioned"; protected static var pageLoader:URLLoader; protected static var dialogDispatcher:EventDispatcher; protected static var dialogLoader:URLLoader; protected static var dispatcher:EventDispatcher; protected static var sitemapXml:XML; public static var currentDialogXml:XML; public static var currentPageXml:XML; public static var baseUrl:String; protected static var lang:String = ""; public function Sitemap(){ trace("!----------!----------!"); trace("[Sitemap] DO NOT CREATE AN INSTANCE OF THIS STATIC CLASS - REVISE YOUR CODE"); trace("!----------!----------!"); } public static function getDialogPath(_arg1:String):String{ var curNode:XML; var fullPath:String; var ofId = _arg1; fullPath = ofId; curNode = XML(sitemapXml.sitemap.dialogs..dialog.(@id == ofId)); while (curNode.parent().@id.toString().length > 0) { fullPath = ((curNode.parent().@id.toString() + "/") + fullPath); curNode = XML(curNode.parent()[0]); }; return (fullPath); } public static function siblingDialogs(_arg1:String, _arg2:String):Boolean{ var templateA:String; var templateB:String; var idA = _arg1; var idB = _arg2; templateA = sitemapXml.sitemap.dialogs..dialog.(@id == idA).@template.toString(); templateB = sitemapXml.sitemap.dialogs..dialog.(@id == idB).@template.toString(); return (Boolean(((!((idA == idB))) && ((templateA == templateB))))); } protected static function onPageXmlLoaded(_arg1:Event):void{ var e = _arg1; if (BasicSite.verbose){ trace("[Sitemap] onPageXmlLoaded"); }; try { currentPageXml = new XML(e.target.data); } catch(e:Error) { if (BasicSite.verbose){ trace(("[Sitemap] onSitemapLoaded - error:" + e.message)); }; }; dispatcher.dispatchEvent(new Event(PAGE_LOADED)); } public static function getMenuXml(_arg1:String="main"):XML{ var _local2:int; trace(("[Sitemap] getMenuXml - " + _arg1)); _local2 = 0; while (_local2 < sitemapXml.navigation.children().length()) { if (sitemapXml.navigation.children()[_local2].name() == _arg1){ return (XML(sitemapXml.navigation.children()[_local2])); }; _local2++; }; return (XML(sitemapXml.navigation.main)); } public static function pageExistsWithId(_arg1:String):Boolean{ var of = _arg1; return (Boolean((sitemapXml.sitemap.pages..page.(@id == of).@id.toString().length > 0))); } public static function siblingPages(_arg1:String, _arg2:String):Boolean{ var templateA:String; var templateB:String; var idA = _arg1; var idB = _arg2; templateA = sitemapXml.sitemap.pages..page.(@id == idA).@template.toString(); templateB = sitemapXml.sitemap.pages..page.(@id == idB).@template.toString(); return (Boolean(((!((idA == idB))) && ((templateA == templateB))))); } public static function getContentByTag(_arg1:String):XML{ return (XML(sitemapXml[_arg1])); } public static function loadPageXml(_arg1:EventDispatcher, _arg2:String):XML{ var pagePath:String; var aDisp = _arg1; var aPageId = _arg2; pagePath = getPagePath(aPageId); dispatcher = aDisp; if (pageLoader != null){ try { pageLoader.close(); } catch(e:Error) { if (BasicSite.verbose){ trace("[Sitemap] loadPageXML - no stream to close"); }; }; }; if (sitemapXml.sitemap.pages..page.(@id == aPageId).content.length() >= 1){ currentPageXml = XML(sitemapXml.sitemap.pages..page.(@id == aPageId)); TweenLite.delayedCall(0.1, dispatcher.dispatchEvent, [new Event(PAGE_LOADED)]); } else { trace((((((("[Sitemap] loadPageXML - load " + baseUrl) + "xml/") + lang) + "pages/") + pagePath) + ".xml")); pageLoader = new URLLoader(); pageLoader.addEventListener(Event.COMPLETE, onPageXmlLoaded); pageLoader.load(new URLRequest(((((((baseUrl + "xml/") + lang) + "pages/") + pagePath) + ".xml") + BasicSite.version))); }; return (XML(sitemapXml.sitemap.pages..page.(@id == aPageId))); } public static function getGlobalAssetXml():XML{ if (sitemapXml.assets.length() <= 0){ return (null); }; return (XML(sitemapXml.assets)); } public static function getPagePath(_arg1:String):String{ var curNode:XML; var fullPath:String; var ofId = _arg1; fullPath = ofId; curNode = XML(sitemapXml.sitemap.pages..page.(@id == ofId)); while (curNode.parent().@id.toString().length > 0) { fullPath = ((curNode.parent().@id.toString() + "/") + fullPath); curNode = XML(curNode.parent()[0]); }; return (fullPath); } protected static function onDialogXmlLoaded(_arg1:Event):void{ var e = _arg1; if (BasicSite.verbose){ trace("[Sitemap] onDialogXmlLoaded"); }; try { currentDialogXml = new XML(e.target.data); } catch(e:Error) { if (BasicSite.verbose){ trace(("[Sitemap] onSitemapLoaded - error:" + e.message)); }; }; dialogDispatcher.dispatchEvent(new Event(DIALOG_LOADED)); } public static function getParam(_arg1:String):String{ var paramName = _arg1; return (sitemapXml.params.param.(@name == paramName).@value); } public static function transitionDialogXml(_arg1:EventDispatcher, _arg2:String):XML{ var dialogPath:String; var aDisp = _arg1; var aDialogId = _arg2; dialogPath = getDialogPath(aDialogId); dialogDispatcher = aDisp; if (sitemapXml.sitemap.dialogs..dialog.(@id == aDialogId).children().length() >= 1){ currentDialogXml = XML(sitemapXml.sitemap.dialogs..dialog.(@id == aDialogId)); TweenLite.delayedCall(0.1, dispatcher.dispatchEvent, [new Event(DIALOG_LOADED)]); } else { trace((((((("[Sitemap] loadDialogXML - load " + baseUrl) + "xml/") + lang) + "dialogs/") + dialogPath) + ".xml")); dialogLoader = new URLLoader(); dialogLoader.addEventListener(Event.COMPLETE, onTransitionDialogXmlLoaded); dialogLoader.load(new URLRequest(((((((baseUrl + "xml/") + lang) + "dialogs/") + dialogPath) + ".xml") + BasicSite.version))); }; return (XML(sitemapXml.sitemap.dialogs..dialog.(@id == aDialogId))); } public static function getEntryParams():Array{ var _local1:Array; var _local2:XML; _local1 = new Array(); for each (_local2 in sitemapXml.params.param) { _local1[_local2.@name] = _local2.@value; }; return (_local1); } public static function dialogExistsWithId(_arg1:String):Boolean{ var of = _arg1; return (Boolean((sitemapXml.sitemap.dialogs..dialog.(@id == of).@id.toString().length > 0))); } public static function getEntryPageId():String{ return (sitemapXml.params.param.(@name == "entryPage").@value); } protected static function onTransitionDialogXmlLoaded(_arg1:Event):void{ var e = _arg1; if (BasicSite.verbose){ trace("[Sitemap] onTransitionDialogXmlLoaded"); }; try { currentDialogXml = new XML(e.target.data); } catch(e:Error) { if (BasicSite.verbose){ trace(("[Sitemap] onSitemapLoaded - error:" + e.message)); }; }; dialogDispatcher.dispatchEvent(new Event(DIALOG_TRANSITIONED)); } public static function loadDialogXml(_arg1:EventDispatcher, _arg2:String):XML{ var dialogPath:String; var aDisp = _arg1; var aDialogId = _arg2; dialogDispatcher = aDisp; dialogPath = getDialogPath(aDialogId); if (sitemapXml.sitemap.dialogs..dialog.(@id == aDialogId).children().length() >= 1){ currentDialogXml = XML(sitemapXml.sitemap.dialogs..dialog.(@id == aDialogId)); TweenLite.delayedCall(0.1, dispatcher.dispatchEvent, [new Event(DIALOG_LOADED)]); } else { trace((((((("[Sitemap] loadDialogXML - load " + baseUrl) + "xml/") + lang) + "dialogs/") + dialogPath) + ".xml")); dialogLoader = new URLLoader(); dialogLoader.addEventListener(Event.COMPLETE, onDialogXmlLoaded); dialogLoader.load(new URLRequest(((((((baseUrl + "xml/") + lang) + "dialogs/") + dialogPath) + ".xml") + BasicSite.version))); }; return (XML(sitemapXml.sitemap.dialogs..dialog.(@id == aDialogId))); } public static function loadSitemap(_arg1:EventDispatcher, _arg2:String, _arg3:String=""):void{ var _local4:URLLoader; dispatcher = _arg1; baseUrl = _arg2; lang = (_arg3 + ((_arg3.length > 0)) ? "/" : ""); _local4 = new URLLoader(); _local4.addEventListener(Event.COMPLETE, onSitemapLoaded); _local4.load(new URLRequest((((baseUrl + "xml/") + lang) + "site.xml"))); } public static function transitionPageXml(_arg1:EventDispatcher, _arg2:String):XML{ var pagePath:String; var aDisp = _arg1; var aPageId = _arg2; pagePath = getPagePath(aPageId); dispatcher = aDisp; if (sitemapXml.sitemap.pages..page.(@id == aPageId).children().length() >= 1){ currentPageXml = XML(sitemapXml.sitemap.pages..page.(@id == aPageId)); TweenLite.delayedCall(0.1, dispatcher.dispatchEvent, [new Event(DIALOG_LOADED)]); } else { trace((((((("[Sitemap] loadPageXML - load " + baseUrl) + "xml/") + lang) + "pages/") + pagePath) + ".xml")); pageLoader = new URLLoader(); pageLoader.addEventListener(Event.COMPLETE, onTransitionPageXmlLoaded); pageLoader.load(new URLRequest(((((((baseUrl + "xml/") + lang) + "pages/") + pagePath) + ".xml") + BasicSite.version))); }; return (XML(sitemapXml.sitemap.pages..page.(@id == aPageId))); } protected static function onTransitionPageXmlLoaded(_arg1:Event):void{ var e = _arg1; if (BasicSite.verbose){ trace("[Sitemap] onTransitionPageXmlLoaded"); }; try { currentPageXml = new XML(e.target.data); } catch(e:Error) { if (BasicSite.verbose){ trace(("[Sitemap] onSitemapLoaded - error:" + e.message)); }; }; dispatcher.dispatchEvent(new Event(PAGE_TRANSITIONED)); } protected static function onSitemapLoaded(_arg1:Event):void{ var e = _arg1; if (BasicSite.verbose){ trace("[Sitemap] onSitemapLoaded"); }; try { sitemapXml = new XML(e.target.data); } catch(e:Error) { if (BasicSite.verbose){ trace(("[Sitemap] onSitemapLoaded - error:" + e.message)); }; }; if (getGlobalAssetXml() != null){ dispatcher.dispatchEvent(new Event(XML_ONLY_LOADED)); } else { dispatcher.dispatchEvent(new Event(LOADED)); }; } } }//package com.relish.net
Section 84
//AdvancedLoader (com.relish.ui.AdvancedLoader) package com.relish.ui { import flash.events.*; import flash.display.*; import flash.net.*; import flash.system.*; public class AdvancedLoader extends Loader { public var url:String;// = "" public var params:Object; public static const LOAD_COMPLETE:String = "loadComplete"; public static const PROGRESS:String = "loadProgress"; public static var filePath:String = ""; public function AdvancedLoader(_arg1:Object=null){ url = ""; super(); params = _arg1; initialize(); } private function onAdvancedLoadComplete(_arg1:Event):void{ enableProgressDispatch(false); dispatchEvent(new Event(LOAD_COMPLETE)); } private function onAdvancedLoadProgress(_arg1:Event):void{ dispatchEvent(new Event(PROGRESS)); } public function get bytesLoaded():Number{ return ((this.contentLoaderInfo) ? contentLoaderInfo.bytesLoaded : 0); } public function enableProgressDispatch(_arg1:Boolean=true):void{ if (this.contentLoaderInfo){ if (_arg1){ this.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onAdvancedLoadProgress); } else { this.contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS, onAdvancedLoadProgress); }; }; } private function initialize():void{ if (!params){ params = new Object(); }; if (params.dispatchProgress){ enableProgressDispatch(); }; this.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onCatchIOError); } public function get bytesTotal():Number{ return ((this.contentLoaderInfo) ? contentLoaderInfo.bytesTotal : 1); } override public function load(_arg1:URLRequest, _arg2:LoaderContext=null):void{ var $urlReq = _arg1; var $context = _arg2; if ($context == null){ $context = new LoaderContext(); }; $context.checkPolicyFile = true; $context.applicationDomain = ApplicationDomain.currentDomain; if ((((filePath.length > 0)) && (($urlReq.url.indexOf(filePath) < 0)))){ $urlReq = new URLRequest((filePath + $urlReq.url)); }; try { url = $urlReq.url; super.load($urlReq, $context); contentLoaderInfo.addEventListener(Event.COMPLETE, onAdvancedLoadComplete); } catch($error:Error) { trace((("[AdvancedLoader] load - encountered an error while attempting to load " + url) + ":")); trace($error.message); }; } private function onCatchIOError(_arg1:IOErrorEvent):void{ trace((("[AdvancedLoader] onCatchIOError - encountered an i/o error while loading " + url) + ".")); _arg1.stopImmediatePropagation(); } } }//package com.relish.ui
Section 85
//AnalyticsUtil (com.relish.util.AnalyticsUtil) package com.relish.util { import flash.events.*; import flash.external.*; public class AnalyticsUtil extends EventDispatcher { private var trackers:Array; public static const GA_V1:String = "Google Analytics v1"; public static const GA_V2:String = "Google Analytics v2"; public static const HITBOX:String = "HitBox"; public static const OMNITURE_SC:String = "Omniture Site Catalyst"; public function AnalyticsUtil(){ initialize(); } private function initialize():void{ trackers = new Array(); } public function addTracker(_arg1:String, _arg2:Object=null):void{ trackers.push(_arg1); } public function trackPage(_arg1:String):void{ trace(("[AnalyticsUtil] trackPage - Page hit for /" + _arg1)); if (trackers.indexOf(GA_V2) >= 0){ ExternalInterface.call("pageTracker._trackPageview", ("/" + _arg1)); }; if (trackers.indexOf(HITBOX) >= 0){ ExternalInterface.call("_hbLink", ("/flash/" + _arg1), "left", "0,0,0,0"); }; if (trackers.indexOf(OMNITURE_SC) >= 0){ ExternalInterface.call("scTrack", _arg1); }; } } }//package com.relish.util
Section 86
//AssetList (com.relish.util.AssetList) package com.relish.util { import flash.events.*; import flash.display.*; import com.relish.view.*; import com.relish.ui.*; import flash.net.*; import flash.media.*; import com.relish.net.*; public class AssetList extends EventDispatcher { private var assetKeys:Array; private var infos:Array; private var totalBytes:Number;// = 0 private var assetsXml:XML; private var loadsWithinTier:int;// = 0 private var numSized:int;// = 0 private var completeBytes:Number;// = 0 private var dataKeys:Array; private var numSkippable:int;// = 0 private var assetArray:Array; private var dataArray:Array; private var dataLoaded:int;// = 0 private var urlLoaders:Array; private var batchSize:int;// = 0 private var loaders:Array; private var tieredAssets:Array; private var totalPrimaryBytes:Number;// = 0 private var isCurrent:Boolean;// = false private var skipReady:Boolean;// = false private var currentTier:int;// = 1 public static const POSTLOAD:uint = 2; public static const TYPE_DATA:uint = 3; public static const PRELOAD:uint = 1; public static const REQUEST:uint = 3; public static const TYPE_AUDIO:uint = 2; public static const TYPE_VIDEO:uint = 1; public static const TYPE_SIMPLE:uint = 0; public static var ASSET_READY:String = "assetReady"; public static var RESUME_LOAD:String = "resumeLoad"; public function AssetList(_arg1:XML){ currentTier = 1; dataLoaded = 0; loadsWithinTier = 0; completeBytes = 0; totalBytes = 0; totalPrimaryBytes = 0; numSized = 0; isCurrent = false; batchSize = 0; numSkippable = 0; skipReady = false; super(); assetsXml = _arg1; batchSize = ((int(assetsXml.@buffer) > 0)) ? int(assetsXml.@buffer) : 0; isCurrent = true; initialize(); } public function pollProgress():Object{ var _local1:Object; var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; var _local6:int; _local1 = new Object(); _local2 = 0; _local3 = 0; _local4 = 0; _local5 = 0; _local6 = 0; while (_local6 < assetArray.length) { if (assetArray[_local6].priority.toString() == String(currentTier)){ if (assetArray[_local6].assetType == TYPE_SIMPLE){ _local3 = (_local3 + assetArray[_local6].content.contentLoaderInfo.bytesLoaded); _local4 = (_local4 + assetArray[_local6].content.contentLoaderInfo.bytesTotal); if (assetArray[_local6].priority.toString() == String(PRELOAD)){ _local5 = (_local5 + assetArray[_local6].content.contentLoaderInfo.bytesLoaded); }; } else { if (assetArray[_local6].stream == undefined){ } else { if (assetArray[_local6].skipped){ _local2 = 0; } else { _local2 = (assetArray[_local6].stream.bytesTotal * Number(assetArray[_local6].readyPercent)); }; _local4 = (_local4 + _local2); _local3 = (_local3 + Math.min(assetArray[_local6].stream.bytesLoaded, _local2)); if (assetArray[_local6].priority.toString() == String(PRELOAD)){ _local5 = (_local5 + Math.min(assetArray[_local6].stream.bytesLoaded, _local2)); }; if (((!(assetArray[_local6].loaded)) && ((assetArray[_local6].stream.bytesLoaded >= _local2)))){ trace((((("[AssetList] pollProgress - " + assetArray[_local6].stream.bytesLoaded) + " / ") + _local2) + " is good enough.")); assetArray[_local6].loaded = true; onAssetLoaded(null); }; }; }; }; _local6++; }; _local6 = 0; while (_local6 < dataKeys.length) { if ((((dataArray[dataKeys[_local6]].content.bytesLoaded > 0)) && ((dataArray[dataKeys[_local6]].content.bytesLoaded >= dataArray[dataKeys[_local6]].content.bytesTotal)))){ _local4 = (_local4 + 10); _local3 = (_local3 + 10); _local5 = (_local5 + 10); }; _local6++; }; if ((((((currentTier == PRELOAD)) && ((assetKeys.length <= 0)))) && ((_local5 >= totalPrimaryBytes)))){ currentTier++; }; _local1 = {currentTier:currentTier, localBytes:_local4, loadedBytes:_local3, totalBytes:totalBytes, preloadBytes:_local5, primaryTotal:totalPrimaryBytes}; _local1.accurateValues = Boolean(!((tieredAssets == null))); return (_local1); } private function initialize():void{ var _local1:Object; var _local2:AdvancedLoader; var _local3:Object; var _local4:URLLoader; var _local5:URLLoader; var _local6:XML; var _local7:int; assetKeys = new Array(); assetArray = new Array(); dataKeys = new Array(); dataArray = new Array(); infos = new Array(); loaders = new Array(); urlLoaders = new Array(); _local7 = 0; while (_local7 < assetsXml.children().length()) { _local1 = new Object(); _local6 = assetsXml.children()[_local7]; if ((((_local6.@url.toString().indexOf(".xml") > 0)) || ((_local6.@url.toString().indexOf(".asp") > 0)))){ _local3 = new Object(); _local3.assetType = TYPE_DATA; _local3.id = _local6.@id.toString(); if (_local6.@url.toString().indexOf("http://") >= 0){ _local3.url = _local6.@url; } else { _local3.url = ((Sitemap.baseUrl + _local6.@url) + BasicSite.version); }; totalBytes = (totalBytes + 10); totalPrimaryBytes = (totalPrimaryBytes + 10); dataKeys.push(_local3.id); dataArray[_local3.id] = _local3; _local4 = new URLLoader(); _local4.addEventListener(Event.COMPLETE, onDataLoaded); _local4.load(new URLRequest(_local3.url)); _local3.content = _local4; } else { if (_local6.@canSkip == "y"){ numSkippable++; }; if ((((_local6.@url.toString().indexOf(".flv") < 0)) && ((_local6.@url.toString().indexOf(".f4v") < 0)))){ _local2 = new AdvancedLoader(); if (_local6.@priority.toString() == String(PRELOAD)){ _local2.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onPrimaryByteInfo); }; _local2.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onByteInfo); _local2.name = _local6.@id.toString(); _local2.load(new URLRequest(((Sitemap.baseUrl + _local6.@url) + BasicSite.version))); infos.push(_local2.contentLoaderInfo); loaders.push(_local2); urlLoaders.push(""); _local1.assetType = TYPE_SIMPLE; _local1.content = _local2; } else { _local5 = new URLLoader(); if (_local6.@priority.toString() == String(PRELOAD)){ _local5.addEventListener(ProgressEvent.PROGRESS, onPrimaryByteInfo); }; _local5.addEventListener(ProgressEvent.PROGRESS, onByteInfo); _local5.load(new URLRequest(((Sitemap.baseUrl + _local6.@url) + BasicSite.version))); urlLoaders.push(_local5); infos.push(""); loaders.push(""); _local1.assetType = TYPE_VIDEO; _local1.content = _local5; _local1.readyPercent = ((_local6.@readyPercent.toString().length > 0)) ? _local6.@readyPercent.toString() : "1"; }; _local1.type = _local6.@type.toString(); _local1.id = _local6.@id.toString(); _local1.name = _local6.@name.toString(); _local1.url = _local6.@url.toString(); _local1.fullUrl = (Sitemap.baseUrl + _local6.@url.toString()); _local1.priority = _local6.@priority; _local1.loadInitiated = false; _local1.loaded = false; _local1.canSkip = Boolean((_local6.@canSkip == "y")); assetKeys.push(_local1.id); assetArray.push(_local1); }; _local7++; }; } public function getAssetNameByIndex(_arg1:int):String{ return (assetKeys[_arg1]); } public function getAssetInfo(_arg1:String):Object{ return (assetArray[assetKeys.indexOf(_arg1)]); } private function onPrimaryByteInfo(_arg1:Event):void{ if ((_arg1.currentTarget is LoaderInfo)){ LoaderInfo(_arg1.currentTarget).removeEventListener(ProgressEvent.PROGRESS, onPrimaryByteInfo); totalPrimaryBytes = (totalPrimaryBytes + LoaderInfo(_arg1.currentTarget).bytesTotal); } else { URLLoader(_arg1.currentTarget).removeEventListener(ProgressEvent.PROGRESS, onPrimaryByteInfo); totalPrimaryBytes = (totalPrimaryBytes + (URLLoader(_arg1.currentTarget).bytesTotal * Number(assetArray[urlLoaders.indexOf(_arg1.currentTarget)].readyPercent))); }; } public function isComplete():Boolean{ var _local1:int; trace(("[AssetList] isComplete - " + tieredAssets)); if (tieredAssets == null){ return (false); }; _local1 = 0; while (_local1 < tieredAssets[PRELOAD].length) { if (((((!(tieredAssets[PRELOAD][_local1].loadInitiated)) || ((((tieredAssets[PRELOAD][_local1].assetType == TYPE_SIMPLE)) && ((((tieredAssets[PRELOAD][_local1].content.content == null)) || ((tieredAssets[PRELOAD][_local1].content.contentLoaderInfo.bytesLoaded < tieredAssets[PRELOAD][_local1].content.contentLoaderInfo.bytesTotal)))))))) || ((((tieredAssets[PRELOAD][_local1].assetType == TYPE_VIDEO)) && ((tieredAssets[PRELOAD][_local1].stream == null)))))){ return (false); }; _local1++; }; trace("[AssetList] isComplete - already fully cached, no need to preload"); return (true); } public function getData(_arg1:String){ var _local2:*; if (dataKeys.indexOf(_arg1) < 0){ trace((("[AssetList] getData - ERROR: no data \"" + _arg1) + "\" found")); return (null); }; _local2 = dataArray[_arg1]; if ((((_local2 == null)) || ((_local2 == undefined)))){ trace((("[AssetList] getData - ERROR: data found at \"" + _arg1) + "\" is null")); }; return (dataArray[_arg1].content.data); } public function getAssetByIndex(_arg1:int){ return (getAsset(assetKeys[_arg1])); } protected function secondaryAssetLoaded(_arg1:Event):void{ var _local2:StatusEvent; trace(("[AssetList] secondaryAssetLoaded - " + LoaderInfo(_arg1.target).loader.name)); _local2 = new StatusEvent(ASSET_READY); _local2.code = LoaderInfo(_arg1.target).loader.name; dispatchEvent(_local2); } public function getAssetLoader(_arg1:String, _arg2:Boolean=true):AdvancedLoader{ var _local3:*; _local3 = assetArray[assetKeys.indexOf(_arg1)]; if (((_arg2) && (!(_local3.loadInitiated)))){ _local3.content.load(new URLRequest(((Sitemap.baseUrl + _local3.url) + BasicSite.version))); _local3.loadInitiated = true; }; return (assetArray[assetKeys.indexOf(_arg1)].content); } public function loadAsset(_arg1:String):void{ var _local2:AdvancedLoader; var _local3:StatusEvent; _local3 = new StatusEvent(ASSET_READY); _local3.code = _arg1; if (getAssetLoader(_arg1).content != null){ dispatchEvent(_local3); } else { _local2 = getAssetLoader(_arg1); _local2.contentLoaderInfo.addEventListener(Event.COMPLETE, secondaryAssetLoaded); _local2.name = _arg1; }; } function onVideoMetadata(_arg1):void{ } public function pauseDownload():void{ var i:int; trace("[AssetList] pauseDownload"); isCurrent = false; i = 0; while (i < assetArray.length) { if (((assetArray[i].loadInitiated) && ((assetArray[i].content.contentLoaderInfo.bytesLoaded < assetArray[i].content.contentLoaderInfo.bytesTotal)))){ assetArray[i].loadInitiated = false; assetArray[i].content.contentLoaderInfo.removeEventListener(Event.COMPLETE, onAssetLoaded); try { assetArray[i].content.close(); } catch(e:Error) { }; assetArray[i].content = null; assetArray[i].content = new AdvancedLoader(); assetArray[i].content.name = assetArray[i].id; }; i = (i + 1); }; } public function getLoadedSecondaries():Array{ var _local1:Array; var _local2:int; _local1 = new Array(); if (((tieredAssets) && ((tieredAssets.length > 0)))){ _local2 = 0; while (_local2 < tieredAssets[POSTLOAD].length) { if (((!((tieredAssets[POSTLOAD][_local2] == undefined))) && (!((tieredAssets[POSTLOAD][_local2].content.content == null))))){ _local1.push(tieredAssets[POSTLOAD][_local2].id); }; _local2++; }; }; return (_local1); } public function getAssetLoaderByIndex(_arg1:int, _arg2:Boolean=true):AdvancedLoader{ return (getAssetLoader(assetKeys[_arg1])); } private function initializeTiers():void{ var i:int; var priority:uint; if (BasicSite.verbose){ trace("[AssetList] initializeTiers"); }; i = 0; while (i < assetArray.length) { try { assetArray[i].content.close(); } catch(e:Error) { }; assetArray[i].content = new AdvancedLoader(); assetArray[i].content.name = assetArray[i].id; i = (i + 1); }; tieredAssets = new Array(); tieredAssets[PRELOAD] = new Array(); tieredAssets[POSTLOAD] = new Array(); tieredAssets[REQUEST] = new Array(); i = 0; while (i < assetArray.length) { priority = uint(assetArray[i].priority); tieredAssets[priority].push(assetArray[i]); i = (i + 1); }; loadTier(PRELOAD); } private function onDataLoaded(_arg1:Event):void{ dataLoaded++; } private function onAssetLoaded(_arg1:Event):void{ var _local2:int; var _local3:StatusEvent; var _local4:int; loadsWithinTier++; if (loadsWithinTier >= tieredAssets[currentTier].length){ if (currentTier == PRELOAD){ currentTier = POSTLOAD; loadTier(POSTLOAD); }; } else { if (batchSize > 0){ _local2 = 0; while (_local2 < tieredAssets[currentTier].length) { if (!tieredAssets[currentTier][_local2].loadInitiated){ if (tieredAssets[currentTier][_local2].assetType == TYPE_SIMPLE){ tieredAssets[currentTier][_local2].content.contentLoaderInfo.addEventListener(Event.COMPLETE, onAssetLoaded); tieredAssets[currentTier][_local2].content.load(new URLRequest(((Sitemap.baseUrl + tieredAssets[currentTier][_local2].url) + BasicSite.version))); tieredAssets[currentTier][_local2].loadInitiated = true; } else { if (tieredAssets[currentTier][_local2].assetType == TYPE_VIDEO){ createVideoLoader(currentTier, _local2); }; }; break; }; _local2++; }; }; }; if (assetArray[_local4].priority == POSTLOAD){ _local3 = new StatusEvent(ASSET_READY); if (assetArray[_local4].assetType != TYPE_VIDEO){ _local4 = assetKeys.indexOf(LoaderInfo(_arg1.target).loader.name); LoaderInfo(_arg1.target).loader.name; }; dispatchEvent(_local3); }; } public function getAsset(_arg1:String){ var _local2:*; if (assetKeys.indexOf(_arg1) < 0){ trace((("[AssetList] getAsset - ERROR: no asset \"" + _arg1) + "\" found")); return (null); }; _local2 = assetArray[assetKeys.indexOf(_arg1)]; if ((((_local2 == null)) || ((_local2 == undefined)))){ trace((("[AssetList] getAsset - ERROR: asset found at \"" + _arg1) + "\" is null")); }; if (_local2.assetType == TYPE_VIDEO){ return (assetArray[assetKeys.indexOf(_arg1)].stream); }; return (assetArray[assetKeys.indexOf(_arg1)].content.content); } private function createVideoLoader(_arg1:int, _arg2:int):void{ var nc:NetConnection; var stream:NetStream; var customClient:Object; var id = _arg1; var i = _arg2; nc = new NetConnection(); nc.connect(null); stream = new NetStream(nc); customClient = new Object(); customClient.onCuePoint = function (... _args):void{ }; customClient.onMetaData = onVideoMetadata; customClient.onPlayStatus = function (... _args):void{ }; stream.client = customClient; tieredAssets[id][i].stream = stream; tieredAssets[id][i].stream.addEventListener(NetStatusEvent.NET_STATUS, onVideoNetStatus); tieredAssets[id][i].loadInitiated = true; try { stream.play(((Sitemap.baseUrl + tieredAssets[id][i].url) + BasicSite.version)); } catch(e:SecurityError) { }; } public function resumeDownload():Number{ var _local1:int; var _local2:int; var _local3:int; trace("[AssetList] resumeDownload"); _local1 = 0; _local2 = 0; isCurrent = true; if (currentTier < REQUEST){ _local3 = 0; while (_local3 < tieredAssets[currentTier].length) { if (((((!(tieredAssets[currentTier][_local3].loadInitiated)) && ((((_local2 < batchSize)) || ((batchSize == 0)))))) && ((((tieredAssets[currentTier][_local3].content.contentLoaderInfo.bytesLoaded <= 0)) || ((tieredAssets[currentTier][_local3].content.contentLoaderInfo.bytesLoaded < tieredAssets[currentTier][_local3].content.contentLoaderInfo.bytesTotal)))))){ tieredAssets[currentTier][_local3].loadInitiated = true; tieredAssets[currentTier][_local3].content.contentLoaderInfo.addEventListener(Event.COMPLETE, onAssetLoaded); tieredAssets[currentTier][_local3].content.load(new URLRequest((tieredAssets[currentTier][_local3].url + BasicSite.version))); _local1++; }; _local3++; }; }; return (_local1); } private function onByteInfo(_arg1:Event):void{ if ((_arg1.currentTarget is LoaderInfo)){ LoaderInfo(_arg1.currentTarget).removeEventListener(ProgressEvent.PROGRESS, onByteInfo); totalBytes = (totalBytes + LoaderInfo(_arg1.currentTarget).bytesTotal); loaders[infos.indexOf(LoaderInfo(_arg1.currentTarget))].close(); } else { URLLoader(_arg1.currentTarget).removeEventListener(ProgressEvent.PROGRESS, onByteInfo); totalBytes = (totalBytes + (URLLoader(_arg1.currentTarget).bytesTotal * Number(assetArray[urlLoaders.indexOf(_arg1.currentTarget)].readyPercent))); URLLoader(_arg1.currentTarget).close(); }; numSized++; if (numSized >= assetArray.length){ trace(("[AssetList] onByteInfo - primary bytes: " + totalPrimaryBytes)); initializeTiers(); }; } public function get length():int{ return (assetKeys.length); } private function loadTier(_arg1:int):void{ var _local2:int; trace(("[AssetList] loadTier - " + _arg1)); loadsWithinTier = 0; if (tieredAssets[_arg1].length > 0){ _local2 = 0; while ((((_local2 < tieredAssets[_arg1].length)) && ((((_local2 < batchSize)) || ((batchSize == 0)))))) { if ((((tieredAssets[_arg1][_local2].url.indexOf(".f4v") < 0)) && ((tieredAssets[_arg1][_local2].url.indexOf(".flv") < 0)))){ tieredAssets[_arg1][_local2].content.contentLoaderInfo.addEventListener(Event.COMPLETE, onAssetLoaded); tieredAssets[_arg1][_local2].content.load(new URLRequest(((Sitemap.baseUrl + tieredAssets[_arg1][_local2].url) + BasicSite.version))); tieredAssets[_arg1][_local2].loadInitiated = true; } else { createVideoLoader(_arg1, _local2); }; _local2++; }; } else { if (currentTier == PRELOAD){ currentTier = POSTLOAD; loadTier(POSTLOAD); }; }; } public function skipAssets():void{ var _local1:Array; var _local2:int; _local1 = getSkippable(); _local2 = 0; while (_local2 < _local1.length) { if (_local1[_local2].loaded){ _local1[_local2].skipped = true; } else { if (_local1[_local2].assetType == TYPE_VIDEO){ _local1[_local2].stream.removeEventListener(NetStatusEvent.NET_STATUS, onVideoNetStatus); _local1[_local2].stream.close(); _local1[_local2].skipped = true; } else { if (_local1[_local2].assetType == TYPE_SIMPLE){ }; }; }; _local2++; }; } override public function toString():String{ var _local1:String; var _local2:int; _local1 = ""; _local2 = 0; while ((((_local2 < 3)) && ((_local2 < assetArray.length)))) { _local1 = (_local1 + ((assetArray[_local2].id + (assetArray[_local2].loadInitiated) ? "(y)" : "(n)") + ", ")); _local2++; }; if (_local1.length > 0){ _local1 = _local1.slice(0, (_local1.length - 2)); }; return (_local1); } public function getSkippable():Array{ var _local1:Array; var _local2:int; _local1 = new Array(); _local2 = 0; while (_local2 < tieredAssets[PRELOAD].length) { if (((((tieredAssets[PRELOAD][_local2].canSkip) && ((tieredAssets[PRELOAD][_local2].assetType == TYPE_VIDEO)))) && (!((tieredAssets[PRELOAD][_local2].stream == null))))){ _local1.push(tieredAssets[PRELOAD][_local2]); } else { if (((((((tieredAssets[PRELOAD][_local2].canSkip) && (!((tieredAssets[PRELOAD][_local2].content == null))))) && ((tieredAssets[PRELOAD][_local2].assetType == TYPE_SIMPLE)))) && (!((tieredAssets[PRELOAD][_local2].content.contentLoaderInfo == null))))){ _local1.push(tieredAssets[PRELOAD][_local2]); }; }; _local2++; }; return (_local1); } private function onVideoNetStatus(_arg1:NetStatusEvent):void{ if (_arg1.info.code == "NetStream.Play.Start"){ NetStream(_arg1.currentTarget).pause(); NetStream(_arg1.currentTarget).removeEventListener(NetStatusEvent.NET_STATUS, onVideoNetStatus); }; } public function get canSkip():Boolean{ var _local1:Array; if ((((((tieredAssets == null)) || ((tieredAssets[PRELOAD] == undefined)))) || ((numSkippable <= 0)))){ return (false); }; _local1 = getSkippable(); return (Boolean((_local1.length >= numSkippable))); } } }//package com.relish.util
Section 87
//BasicMenu (com.relish.view.BasicMenu) package com.relish.view { import flash.events.*; import flash.display.*; import flash.net.*; import com.relish.managers.*; public class BasicMenu extends Sprite { public var menuClips:Array; public var id:String;// = "" protected var menuXml:XML; public var menuOptions:Array; public static const FADE_OUT:String = "fadeOutMenu"; public static const ALL_MENUS:String = "allMenus"; public function BasicMenu(){ id = ""; super(); menuClips = new Array(); } protected function clickMenuOption(_arg1:Event):void{ var _local2:int; _local2 = ((_arg1.currentTarget == stage)) ? menuClips.indexOf(_arg1.target) : menuClips.indexOf(_arg1.currentTarget); interpretAction(menuOptions[_local2].action, menuOptions[_local2].id); } public function set clips(_arg1:Array):void{ menuClips = _arg1; } public function get options():Array{ return (menuOptions); } public function setContent(_arg1:XML):void{ var _local2:XML; id = _arg1.name(); if (BasicSite.verbose){ trace("[BasicMenu] setContent"); }; menuOptions = new Array(); for each (_local2 in _arg1.item) { menuOptions.push({title:_local2.@name, id:_local2.@id, action:_local2.@action, fullNode:_local2}); }; refresh(); } protected function interpretAction(_arg1:String, _arg2:String):Boolean{ if (BasicSite.verbose){ trace(("[BasicMenu] interpretAction - " + _arg1)); }; switch (_arg1.split(":")[0]){ case "page": return (PageManager.loadPage(_arg1.split(":")[1])); case "dialog": return (DialogManager.loadDialog(_arg1.split(":")[1])); case "event": dispatchEvent(new Event(_arg1.split(":")[1])); return (true); case "link": navigateToURL(new URLRequest(_arg1.substring((_arg1.indexOf(":") + 1), _arg1.length))); return (true); case "func": var _local3 = this; _local3[_arg1.split(":")[1]](_arg2); return (true); default: trace(("[BasicMenu] interpretAction - unable to interpret " + _arg1)); return (false); }; } public function getClipById(_arg1:String):DisplayObject{ var _local2:int; _local2 = 0; while ((((_local2 < menuOptions.length)) && ((_local2 < menuClips.length)))) { if (menuOptions[_local2].id == _arg1){ return (menuClips[_local2]); }; _local2++; }; return (null); } protected function refresh():void{ } public function updateHighlight(_arg1:String):void{ } } }//package com.relish.view
Section 88
//BasicSite (com.relish.view.BasicSite) package com.relish.view { import flash.events.*; import flash.display.*; import gs.*; import com.relish.util.*; import com.relish.events.*; import com.asual.swfaddress.*; import com.relish.managers.*; import com.relish.net.*; import flash.external.*; public class BasicSite extends Sprite { protected var dialogDispatcher:EventDispatcher; protected var dialogs:Array; protected var menus:Array; protected var tracker:AnalyticsUtil; protected var sitemapDispatcher:EventDispatcher; protected var pageDispatcher:EventDispatcher; protected var page:PageTemplate; public static var verbose:Boolean = true; public static var usePartialCaching:Boolean = true; protected static var initialURL:String = ""; public static var globalAssets:AssetList; public static var rootRef:BasicSite; public static var useCacheBusting:Boolean = true; protected static var ignoreNext:Boolean = true; public static var useDeepLinking:Boolean = false; public static var useAssetCaching:Boolean = true; public static var version:String = ""; public function BasicSite(){ rootRef = this; menus = new Array(); dialogs = new Array(); tracker = new AnalyticsUtil(); addEventListener(Event.ADDED_TO_STAGE, addedToStage); } protected function removeDialog(_arg1:PageTemplate):void{ if (_arg1 != null){ _arg1.destroy(); if (dialogs.indexOf(_arg1) >= 0){ dialogs.splice(dialogs.indexOf(_arg1), 1); }; if (this.contains(_arg1)){ trace("[BasicSite] removeDialog - success"); removeChild(_arg1); _arg1 = null; }; }; } public function getPage():PageTemplate{ return (page); } public function getPackage():String{ return ("com.relish"); } protected function pollProgress():void{ var contentLoadEvent:ContentLoadEvent; var progressObject:Object; try { progressObject = globalAssets.pollProgress(); } catch(err:Error) { trace("[BasicSite] pollProgress - ERROR in polling asset list"); TweenLite.delayedCall(0.1, pollProgress, []); return; }; try { if (((!((progressObject == null))) && (progressObject.accurateValues))){ contentLoadEvent = new ContentLoadEvent(); contentLoadEvent.progressObject = progressObject; }; } catch(err:Error) { trace(("[BasicSite] pollProgress - ERROR in calculating load progress - " + err.message)); }; if ((((((progressObject.currentTier > AssetList.PRELOAD)) || ((((progressObject.preloadBytes > 0)) && ((progressObject.preloadBytes >= progressObject.primaryTotal)))))) && ((progressObject.primaryTotal > 0)))){ onSitemapLoaded(new Event(Sitemap.LOADED)); } else { TweenLite.delayedCall(0.1, pollProgress, []); }; } protected function loadFirstPage():void{ var _local1:String; if (initialURL.length > 0){ _local1 = initialURL.split("/")[0]; } else { _local1 = Sitemap.getEntryPageId(); }; if (_local1.length > 0){ PageManager.loadPage(_local1); }; } protected function handleInvalidNavigation(_arg1:String):void{ trace((("[BasicSite] handleInvalidNavigation - " + _arg1) + "could not be found in the sitemap")); } protected function addedToStage(_arg1:Event):void{ stage.align = StageAlign.TOP_LEFT; stage.scaleMode = StageScaleMode.NO_SCALE; stage.addEventListener(Event.RESIZE, onStageResize); refreshLayout(); } public function getCurrentPageId():String{ return (PageManager.currentPageId); } protected function onPageReady(_arg1:Event):void{ var _local2:int; _local2 = 0; while (_local2 < dialogs.length) { DialogManager.destroyDialog(dialogs[_local2].id); _local2++; }; if (((!((page == null))) && (this.contains(page)))){ removeChild(page); page = null; }; _local2 = 0; while (_local2 < menus.length) { menus[_local2].updateHighlight(PageManager.currentPageId); _local2++; }; page = PageManager.currentPage; page.addEventListener(BasicMenu.FADE_OUT, fadeOutMenu); page.animateIn(); addChild(page); tracker.trackPage(Sitemap.getPagePath(page.id)); refreshLayout(); } protected function loadDialogFromAddressBar(_arg1:String):void{ trace(("[PageManager] loadDialogFromAddressBar - handles " + _arg1)); if (_arg1.indexOf("/") > 0){ DialogManager.loadDialog(_arg1.split("/")[0], {subpage:_arg1.split("/")[1]}); } else { DialogManager.loadDialog(_arg1); }; } protected function onDialogTransitioned(_arg1:Event):void{ trace("[BasicSite] onDialogTransitioned"); tracker.trackPage(Sitemap.getDialogPath(dialogs[(dialogs.length - 1)].id)); refreshLayout(); } protected function handleSWFAddress(_arg1:SWFAddressEvent){ var _local2:String; trace(("[BasicSite] handleSWFAddress - " + ignoreNext)); _local2 = _arg1.value; if ((((_local2.length > 0)) && ((_local2.charAt((_local2.length - 1)) == "/")))){ _local2 = _local2.slice(0, (_local2.length - 1)); }; if ((((_local2.length > 0)) && ((_local2.charAt(0) == "/")))){ _local2 = _local2.slice(1, _local2.length); }; if ((((initialURL == "")) && (!((_local2 == ""))))){ initialURL = _local2; trace(("[BasicSite] handleSWFAddress - Establishes initialURL as " + initialURL)); } else { if (!ignoreNext){ trace(("[BasicSite] handleSWFAddress - handles " + _local2)); if (Sitemap.pageExistsWithId(_local2.split("/")[0])){ loadPageFromAddressBar(_local2); } else { if (Sitemap.dialogExistsWithId(_local2.split("/")[0])){ loadDialogFromAddressBar(_local2); } else { handleInvalidNavigation(_local2.split("/")[0]); }; }; }; }; ignoreNext = false; } protected function onSitemapLoaded(_arg1:Event):void{ trace("[BasicSite] onSitemapLoaded"); sitemapDispatcher.removeEventListener(Sitemap.LOADED, onSitemapLoaded); sitemapDispatcher.removeEventListener(Sitemap.XML_ONLY_LOADED, onSitemapXmlLoaded); sitemapDispatcher = null; if (Sitemap.getEntryParams()["packageName"] != undefined){ PageManager.setPackageName(Sitemap.getEntryParams()["packageName"]); DialogManager.setPackageName(Sitemap.getEntryParams()["packageName"]); }; if (useDeepLinking){ SWFAddress.addEventListener(SWFAddressEvent.CHANGE, handleSWFAddress); }; if (((((useCacheBusting) && ((version == "")))) && ((loaderInfo.url.indexOf("file://") < 0)))){ version = ("?v=" + Sitemap.getParam("version")); }; TweenLite.delayedCall(0.1, loadFirstPage, []); } public function setURL(_arg1:String):void{ if (BasicSite.useDeepLinking){ if (_arg1.length > 0){ while ((((_arg1.length > 0)) && ((_arg1.charAt((_arg1.length - 1)) == "/")))) { _arg1 = _arg1.slice(0, (_arg1.length - 1)); }; } else { _arg1 = Sitemap.getEntryPageId(); }; trace((("[PageManager] setURL - sets deep link '" + _arg1) + "'")); ignoreNext = true; SWFAddress.setValue(_arg1); }; } protected function fadeOutMenu(_arg1:InfoEvent):void{ var _local2:int; _local2 = 0; while (_local2 < menus.length) { if ((((_arg1.data.id == BasicMenu.ALL_MENUS)) || ((menus[_local2].id == _arg1.data.id)))){ TweenLite.to(menus[_local2], 0.3, {autoAlpha:0}); }; _local2++; }; } protected function loadPageFromAddressBar(_arg1:String):void{ trace(("[PageManager] loadPageFromAddressBar - handles " + _arg1)); while (dialogs.length > 0) { removeDialog(dialogs[0]); }; if (_arg1.indexOf("/") > 0){ PageManager.loadPage(_arg1.split("/")[0], {subpage:_arg1.split("/")[1]}); } else { PageManager.loadPage(_arg1); }; } protected function onSitemapXmlLoaded(_arg1:Event):void{ trace("[BasicSite] onSitemapXmlLoaded"); globalAssets = new AssetList(Sitemap.getGlobalAssetXml()); pollProgress(); } protected function deleteDialog(_arg1:Event):void{ var _local2:PageTemplate; trace("[BasicSite] deleteDialog"); _local2 = PageTemplate(_arg1.currentTarget); if (dialogs.indexOf(_local2) >= 0){ dialogs.splice(dialogs.indexOf(_local2), 1); }; TweenLite.delayedCall(_local2.animateOut(), removeDialog, [_local2]); if (dialogs.length > 0){ BasicSite.rootRef.setURL(dialogs[(dialogs.length - 1)].id); } else { BasicSite.rootRef.setURL((PageManager.currentPageId + ((PageManager.currentSubpageId.length > 0)) ? ("/" + PageManager.currentSubpageId) : "")); }; refreshLayout(); } protected function refreshLayout():void{ } protected function onPageTransitioned(_arg1:Event):void{ trace("[BasicSite] onPageTransitioned"); tracker.trackPage(Sitemap.getPagePath(page.id)); refreshLayout(); } protected function onDialogReady(_arg1:Event):void{ var _local2:int; trace("[BasicSite] onDialogReady"); _local2 = 0; while (_local2 < dialogs.length) { TweenLite.delayedCall(dialogs[_local2].animateOut(), DialogManager.destroyDialog, [dialogs[_local2].id]); _local2++; }; dialogs.push(DialogManager.dialogs[(DialogManager.dialogs.length - 1)]); dialogs[(dialogs.length - 1)].addEventListener(DialogManager.REMOVE_DIALOG, deleteDialog); dialogs[(dialogs.length - 1)].addEventListener(BasicMenu.FADE_OUT, fadeOutMenu); dialogs[(dialogs.length - 1)].animateIn(); addChild(dialogs[(dialogs.length - 1)]); tracker.trackPage(Sitemap.getDialogPath(dialogs[(dialogs.length - 1)].id)); refreshLayout(); } protected function loadSitemap(_arg1:String, _arg2:String=""):void{ pageDispatcher = new EventDispatcher(); pageDispatcher.addEventListener(PageManager.PAGE_READY, onPageReady); pageDispatcher.addEventListener(PageManager.PAGE_TRANSITIONED, onPageTransitioned); PageManager.init(pageDispatcher); dialogDispatcher = new EventDispatcher(); dialogDispatcher.addEventListener(DialogManager.DIALOG_READY, onDialogReady); dialogDispatcher.addEventListener(DialogManager.DIALOG_TRANSITIONED, onDialogTransitioned); DialogManager.init(dialogDispatcher); sitemapDispatcher = new EventDispatcher(); sitemapDispatcher.addEventListener(Sitemap.LOADED, onSitemapLoaded); sitemapDispatcher.addEventListener(Sitemap.XML_ONLY_LOADED, onSitemapXmlLoaded); Sitemap.loadSitemap(sitemapDispatcher, _arg1, _arg2); } protected function onStageResize(_arg1:Event):void{ refreshLayout(); } public static function getInitialURL():String{ return (initialURL); } } }//package com.relish.view
Section 89
//PageTemplate (com.relish.view.PageTemplate) package com.relish.view { import flash.events.*; import flash.display.*; import gs.*; import com.relish.util.*; import flash.net.*; import flash.text.*; public class PageTemplate extends MovieClip { public var id:String;// = "" protected var assets:AssetList; public var filePath:String;// = "" public function PageTemplate(){ id = ""; filePath = ""; super(); } public function destroy():void{ } protected function handleSecondaryAsset(_arg1:String):void{ } public function transitionIn():void{ alpha = 0; TweenLite.to(this, 0.3, {autoAlpha:1}); } protected function onSecondaryAssetLoaded(_arg1:StatusEvent):void{ handleSecondaryAsset(_arg1.code); } protected function initialize():void{ } public function setParams(_arg1:Object):void{ if (((!((_arg1 == null))) && (!((_arg1.subpage == null))))){ trace(("[PageTemplate] setParams - params include a subpage: " + _arg1.subpage)); }; trace(("[PageTemplate] setParams - no setParams behaviour found on " + this)); } public function adjustLayout():void{ } public function setAssets(_arg1:AssetList):void{ var _local2:Array; var _local3:int; trace("[PageTemplate] setAssets"); assets = _arg1; assets.addEventListener(AssetList.ASSET_READY, onSecondaryAssetLoaded); if (BasicSite.usePartialCaching){ _local2 = assets.getLoadedSecondaries(); _local3 = 0; while (_local3 < _local2.length) { handleSecondaryAsset(_local2[_local3]); _local3++; }; }; } public function animateOut():Number{ TweenLite.to(this, 0.3, {autoAlpha:0}); return (0.3); } public function setContent(_arg1:XML):void{ trace(("[PageTemplate] setContent - no setContent behaviour found on " + this)); } public function transitionOut():Number{ TweenLite.to(this, 0.3, {autoAlpha:0}); return (0.3); } public function removeChildIfPresent(_arg1:DisplayObject, _arg2:DisplayObjectContainer=null):DisplayObject{ if (_arg2 == null){ _arg2 = this; }; if (_arg2.contains(_arg1)){ trace("[PageTemplate] removeChildIfPresent - removed successfully"); return (_arg2.removeChild(_arg1)); }; trace("[PageTemplate] removeChildIfPresent - could not remove child, it was not present in the specified context"); return (null); } public function animateIn():void{ alpha = 0; TweenLite.to(this, 0.3, {autoAlpha:1}); } } }//package com.relish.view
Section 90
//Linear (gs.easing.Linear) package gs.easing { public class Linear { public static function easeOut(_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 easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } public static function easeNone(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); } } }//package gs.easing
Section 91
//TweenEvent (gs.events.TweenEvent) package gs.events { import flash.events.*; public class TweenEvent extends Event { public var info:Object; public static const UPDATE:String = "update"; public static const START:String = "start"; public static const version:Number = 0.9; public static const COMPLETE:String = "complete"; public function TweenEvent(_arg1:String, _arg2:Object=null, _arg3:Boolean=false, _arg4:Boolean=false){ super(_arg1, _arg3, _arg4); this.info = _arg2; } override public function clone():Event{ return (new TweenEvent(this.type, this.info, this.bubbles, this.cancelable)); } } }//package gs.events
Section 92
//AutoAlphaPlugin (gs.plugins.AutoAlphaPlugin) package gs.plugins { import flash.display.*; import gs.*; public class AutoAlphaPlugin extends TweenPlugin { protected var _tweenVisible:Boolean; protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function AutoAlphaPlugin(){ this.propName = "autoAlpha"; this.overwriteProps = ["alpha", "visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); if (((!((_target.visible == true))) && (_tweenVisible))){ _target.visible = true; }; } public function onCompleteTween():void{ if (((((_tweenVisible) && (!((_tween.vars.runBackwards == true))))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(!((_arg2 == 0))); _tweenVisible = true; addTween(_arg1, "alpha", _arg1.alpha, _arg2, "alpha"); return (true); } override public function killProps(_arg1:Object):void{ super.killProps(_arg1); _tweenVisible = !(Boolean(("visible" in _arg1))); } } }//package gs.plugins
Section 93
//BevelFilterPlugin (gs.plugins.BevelFilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; public class BevelFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function BevelFilterPlugin(){ this.propName = "bevelFilter"; this.overwriteProps = ["bevelFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = BevelFilter; initFilter(_arg2, new BevelFilter(0, 0, 0xFFFFFF, 0.5, 0, 0.5, 2, 2, 0, ((_arg2.quality) || (2)))); return (true); } } }//package gs.plugins
Section 94
//BezierPlugin (gs.plugins.BezierPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class BezierPlugin extends TweenPlugin { protected var _future:Object; protected var _orient:Boolean; protected var _orientData:Array; protected var _beziers:Object; protected var _target:Object; protected static const _RAD2DEG:Number = 57.2957795130823; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function BezierPlugin(){ _future = {}; super(); this.propName = "bezier"; this.overwriteProps = []; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:String; var _local4:Object; var _local5:Number; var _local6:uint; var _local7:Number; var _local8:int; var _local9:Object; var _local10:Boolean; var _local11:Number; var _local12:Number; var _local13:Array; var _local14:Number; if (_arg1 == 1){ for (_local3 in _beziers) { _local2 = (_beziers[_local3].length - 1); _target[_local3] = _beziers[_local3][_local2][2]; }; } else { for (_local3 in _beziers) { _local6 = _beziers[_local3].length; if (_arg1 < 0){ _local2 = 0; } else { if (_arg1 >= 1){ _local2 = (_local6 - 1); } else { _local2 = int((_local6 * _arg1)); }; }; _local5 = ((_arg1 - (_local2 * (1 / _local6))) * _local6); _local4 = _beziers[_local3][_local2]; if (this.round){ _local7 = (_local4[0] + (_local5 * (((2 * (1 - _local5)) * (_local4[1] - _local4[0])) + (_local5 * (_local4[2] - _local4[0]))))); _local8 = ((_local7)<0) ? -1 : 1; _target[_local3] = ((((_local7 % 1) * _local8))>0.5) ? (int(_local7) + _local8) : int(_local7); } else { _target[_local3] = (_local4[0] + (_local5 * (((2 * (1 - _local5)) * (_local4[1] - _local4[0])) + (_local5 * (_local4[2] - _local4[0]))))); }; }; }; if (_orient){ _local9 = _target; _local10 = this.round; _target = _future; this.round = false; _orient = false; this.changeFactor = (_arg1 + 0.01); _target = _local9; this.round = _local10; _orient = true; _local2 = 0; while (_local2 < _orientData.length) { _local13 = _orientData[_local2]; _local14 = ((_local13[3]) || (0)); _local11 = (_future[_local13[0]] - _target[_local13[0]]); _local12 = (_future[_local13[1]] - _target[_local13[1]]); _target[_local13[2]] = ((Math.atan2(_local12, _local11) * _RAD2DEG) + _local14); _local2++; }; }; } protected function init(_arg1:TweenLite, _arg2:Array, _arg3:Boolean):void{ var _local4:Object; var _local5:int; var _local6:String; _target = _arg1.target; if (_arg1.exposedVars.orientToBezier == true){ _orientData = [["x", "y", "rotation", 0]]; _orient = true; } else { if ((_arg1.exposedVars.orientToBezier is Array)){ _orientData = _arg1.exposedVars.orientToBezier; _orient = true; }; }; _local4 = {}; _local5 = 0; while (_local5 < _arg2.length) { for (_local6 in _arg2[_local5]) { if (_local4[_local6] == undefined){ _local4[_local6] = [_arg1.target[_local6]]; }; if (typeof(_arg2[_local5][_local6]) == "number"){ _local4[_local6].push(_arg2[_local5][_local6]); } else { _local4[_local6].push((_arg1.target[_local6] + Number(_arg2[_local5][_local6]))); }; }; _local5++; }; for (_local6 in _local4) { this.overwriteProps[this.overwriteProps.length] = _local6; if (_arg1.exposedVars[_local6] != undefined){ if (typeof(_arg1.exposedVars[_local6]) == "number"){ _local4[_local6].push(_arg1.exposedVars[_local6]); } else { _local4[_local6].push((_arg1.target[_local6] + Number(_arg1.exposedVars[_local6]))); }; delete _arg1.exposedVars[_local6]; _local5 = (_arg1.tweens.length - 1); while (_local5 > -1) { if (_arg1.tweens[_local5].name == _local6){ _arg1.tweens.splice(_local5, 1); }; _local5--; }; }; }; _beziers = parseBeziers(_local4, _arg3); } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (!(_arg2 is Array)){ return (false); }; init(_arg3, (_arg2 as Array), false); return (true); } override public function killProps(_arg1:Object):void{ var _local2:String; for (_local2 in _beziers) { if ((_local2 in _arg1)){ delete _beziers[_local2]; }; }; super.killProps(_arg1); } public static function parseBeziers(_arg1:Object, _arg2:Boolean=false):Object{ var _local3:int; var _local4:Array; var _local5:Object; var _local6:String; var _local7:Object; _local7 = {}; if (_arg2){ for (_local6 in _arg1) { _local4 = _arg1[_local6]; _local5 = []; _local7[_local6] = _local5; if (_local4.length > 2){ _local5[_local5.length] = [_local4[0], (_local4[1] - ((_local4[2] - _local4[0]) / 4)), _local4[1]]; _local3 = 1; while (_local3 < (_local4.length - 1)) { _local5[_local5.length] = [_local4[_local3], (_local4[_local3] + (_local4[_local3] - _local5[(_local3 - 1)][1])), _local4[(_local3 + 1)]]; _local3++; }; } else { _local5[_local5.length] = [_local4[0], ((_local4[0] + _local4[1]) / 2), _local4[1]]; }; }; } else { for (_local6 in _arg1) { _local4 = _arg1[_local6]; _local5 = []; _local7[_local6] = _local5; if (_local4.length > 3){ _local5[_local5.length] = [_local4[0], _local4[1], ((_local4[1] + _local4[2]) / 2)]; _local3 = 2; while (_local3 < (_local4.length - 2)) { _local5[_local5.length] = [_local5[(_local3 - 2)][2], _local4[_local3], ((_local4[_local3] + _local4[(_local3 + 1)]) / 2)]; _local3++; }; _local5[_local5.length] = [_local5[(_local5.length - 1)][2], _local4[(_local4.length - 2)], _local4[(_local4.length - 1)]]; } else { if (_local4.length == 3){ _local5[_local5.length] = [_local4[0], _local4[1], _local4[2]]; } else { if (_local4.length == 2){ _local5[_local5.length] = [_local4[0], ((_local4[0] + _local4[1]) / 2), _local4[1]]; }; }; }; }; }; return (_local7); } } }//package gs.plugins
Section 95
//BezierThroughPlugin (gs.plugins.BezierThroughPlugin) package gs.plugins { import gs.*; public class BezierThroughPlugin extends BezierPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function BezierThroughPlugin(){ this.propName = "bezierThrough"; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (!(_arg2 is Array)){ return (false); }; init(_arg3, (_arg2 as Array), true); return (true); } } }//package gs.plugins
Section 96
//BlurFilterPlugin (gs.plugins.BlurFilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; public class BlurFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function BlurFilterPlugin(){ this.propName = "blurFilter"; this.overwriteProps = ["blurFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = BlurFilter; initFilter(_arg2, new BlurFilter(0, 0, ((_arg2.quality) || (2)))); return (true); } } }//package gs.plugins
Section 97
//ColorMatrixFilterPlugin (gs.plugins.ColorMatrixFilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; public class ColorMatrixFilterPlugin extends FilterPlugin { protected var _matrix:Array; protected var _matrixTween:EndArrayPlugin; public static const API:Number = 1; public static const VERSION:Number = 1.01; protected static var _lumG:Number = 0.71516; protected static var _lumR:Number = 0.212671; protected static var _idMatrix:Array = [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]; protected static var _lumB:Number = 0.072169; public function ColorMatrixFilterPlugin(){ this.propName = "colorMatrixFilter"; this.overwriteProps = ["colorMatrixFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:Object; var _local5:Array; _target = _arg1; _type = ColorMatrixFilter; _local4 = _arg2; initFilter({}, new ColorMatrixFilter(_idMatrix.slice())); _matrix = ColorMatrixFilter(_filter).matrix; _local5 = []; if (((!((_local4.matrix == null))) && ((_local4.matrix is Array)))){ _local5 = _local4.matrix; } else { if (_local4.relative == true){ _local5 = _matrix.slice(); } else { _local5 = _idMatrix.slice(); }; _local5 = setBrightness(_local5, _local4.brightness); _local5 = setContrast(_local5, _local4.contrast); _local5 = setHue(_local5, _local4.hue); _local5 = setSaturation(_local5, _local4.saturation); _local5 = setThreshold(_local5, _local4.threshold); if (!isNaN(_local4.colorize)){ _local5 = colorize(_local5, _local4.colorize, _local4.amount); }; }; _matrixTween = new EndArrayPlugin(); _matrixTween.init(_matrix, _local5); return (true); } override public function set changeFactor(_arg1:Number):void{ _matrixTween.changeFactor = _arg1; ColorMatrixFilter(_filter).matrix = _matrix; super.changeFactor = _arg1; } public static function setSaturation(_arg1:Array, _arg2:Number):Array{ var _local3:Number; var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Array; if (isNaN(_arg2)){ return (_arg1); }; _local3 = (1 - _arg2); _local4 = (_local3 * _lumR); _local5 = (_local3 * _lumG); _local6 = (_local3 * _lumB); _local7 = [(_local4 + _arg2), _local5, _local6, 0, 0, _local4, (_local5 + _arg2), _local6, 0, 0, _local4, _local5, (_local6 + _arg2), 0, 0, 0, 0, 0, 1, 0]; return (applyMatrix(_local7, _arg1)); } public static function setHue(_arg1:Array, _arg2:Number):Array{ var _local3:Number; var _local4:Number; var _local5:Array; if (isNaN(_arg2)){ return (_arg1); }; _arg2 = (_arg2 * (Math.PI / 180)); _local3 = Math.cos(_arg2); _local4 = Math.sin(_arg2); _local5 = [((_lumR + (_local3 * (1 - _lumR))) + (_local4 * -(_lumR))), ((_lumG + (_local3 * -(_lumG))) + (_local4 * -(_lumG))), ((_lumB + (_local3 * -(_lumB))) + (_local4 * (1 - _lumB))), 0, 0, ((_lumR + (_local3 * -(_lumR))) + (_local4 * 0.143)), ((_lumG + (_local3 * (1 - _lumG))) + (_local4 * 0.14)), ((_lumB + (_local3 * -(_lumB))) + (_local4 * -0.283)), 0, 0, ((_lumR + (_local3 * -(_lumR))) + (_local4 * -((1 - _lumR)))), ((_lumG + (_local3 * -(_lumG))) + (_local4 * _lumG)), ((_lumB + (_local3 * (1 - _lumB))) + (_local4 * _lumB)), 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1]; return (applyMatrix(_local5, _arg1)); } public static function setThreshold(_arg1:Array, _arg2:Number):Array{ var _local3:Array; if (isNaN(_arg2)){ return (_arg1); }; _local3 = [(_lumR * 0x0100), (_lumG * 0x0100), (_lumB * 0x0100), 0, (-256 * _arg2), (_lumR * 0x0100), (_lumG * 0x0100), (_lumB * 0x0100), 0, (-256 * _arg2), (_lumR * 0x0100), (_lumG * 0x0100), (_lumB * 0x0100), 0, (-256 * _arg2), 0, 0, 0, 1, 0]; return (applyMatrix(_local3, _arg1)); } public static function applyMatrix(_arg1:Array, _arg2:Array):Array{ var _local3:Array; var _local4:int; var _local5:int; var _local6:int; var _local7:int; if (((!((_arg1 is Array))) || (!((_arg2 is Array))))){ return (_arg2); }; _local3 = []; _local4 = 0; _local5 = 0; _local6 = 0; while (_local6 < 4) { _local7 = 0; while (_local7 < 5) { if (_local7 == 4){ _local5 = _arg1[(_local4 + 4)]; } else { _local5 = 0; }; _local3[(_local4 + _local7)] = (((((_arg1[_local4] * _arg2[_local7]) + (_arg1[(_local4 + 1)] * _arg2[(_local7 + 5)])) + (_arg1[(_local4 + 2)] * _arg2[(_local7 + 10)])) + (_arg1[(_local4 + 3)] * _arg2[(_local7 + 15)])) + _local5); _local7++; }; _local4 = (_local4 + 5); _local6++; }; return (_local3); } public static function colorize(_arg1:Array, _arg2:Number, _arg3:Number=1):Array{ var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Array; if (isNaN(_arg2)){ return (_arg1); }; if (isNaN(_arg3)){ _arg3 = 1; }; _local4 = (((_arg2 >> 16) & 0xFF) / 0xFF); _local5 = (((_arg2 >> 8) & 0xFF) / 0xFF); _local6 = ((_arg2 & 0xFF) / 0xFF); _local7 = (1 - _arg3); _local8 = [(_local7 + ((_arg3 * _local4) * _lumR)), ((_arg3 * _local4) * _lumG), ((_arg3 * _local4) * _lumB), 0, 0, ((_arg3 * _local5) * _lumR), (_local7 + ((_arg3 * _local5) * _lumG)), ((_arg3 * _local5) * _lumB), 0, 0, ((_arg3 * _local6) * _lumR), ((_arg3 * _local6) * _lumG), (_local7 + ((_arg3 * _local6) * _lumB)), 0, 0, 0, 0, 0, 1, 0]; return (applyMatrix(_local8, _arg1)); } public static function setBrightness(_arg1:Array, _arg2:Number):Array{ if (isNaN(_arg2)){ return (_arg1); }; _arg2 = ((_arg2 * 100) - 100); return (applyMatrix([1, 0, 0, 0, _arg2, 0, 1, 0, 0, _arg2, 0, 0, 1, 0, _arg2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1], _arg1)); } public static function setContrast(_arg1:Array, _arg2:Number):Array{ var _local3:Array; if (isNaN(_arg2)){ return (_arg1); }; _arg2 = (_arg2 + 0.01); _local3 = [_arg2, 0, 0, 0, (128 * (1 - _arg2)), 0, _arg2, 0, 0, (128 * (1 - _arg2)), 0, 0, _arg2, 0, (128 * (1 - _arg2)), 0, 0, 0, 1, 0]; return (applyMatrix(_local3, _arg1)); } } }//package gs.plugins
Section 98
//DropShadowFilterPlugin (gs.plugins.DropShadowFilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; public class DropShadowFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function DropShadowFilterPlugin(){ this.propName = "dropShadowFilter"; this.overwriteProps = ["dropShadowFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = DropShadowFilter; initFilter(_arg2, new DropShadowFilter(0, 45, 0, 0, 0, 0, 1, ((_arg2.quality) || (2)), _arg2.inner, _arg2.knockout, _arg2.hideObject)); return (true); } } }//package gs.plugins
Section 99
//EndArrayPlugin (gs.plugins.EndArrayPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class EndArrayPlugin extends TweenPlugin { protected var _info:Array; protected var _a:Array; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function EndArrayPlugin(){ _info = []; super(); this.propName = "endArray"; this.overwriteProps = ["endArray"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:ArrayTweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _a[_local3.index] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _a[_local3.index] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function init(_arg1:Array, _arg2:Array):void{ var _local3:int; _a = _arg1; _local3 = (_arg2.length - 1); while (_local3 > -1) { if (((!((_arg1[_local3] == _arg2[_local3]))) && (!((_arg1[_local3] == null))))){ _info[_info.length] = new ArrayTweenInfo(_local3, _a[_local3], (_arg2[_local3] - _a[_local3])); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is Array))) || (!((_arg2 is Array))))){ return (false); }; init((_arg1 as Array), _arg2); return (true); } } }//package gs.plugins
Section 100
//FilterPlugin (gs.plugins.FilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; import gs.utils.tween.*; public class FilterPlugin extends TweenPlugin { protected var _index:int; protected var _filter:BitmapFilter; protected var _type:Class; protected var _remove:Boolean; protected var _target:Object; public static const VERSION:Number = 1.03; public static const API:Number = 1; override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:TweenInfo; var _local4:Array; _local4 = _target.filters; _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local3.target[_local3.property] = (_local3.start + (_local3.change * _arg1)); _local2--; }; if (!(_local4[_index] is _type)){ _index = (_local4.length - 1); _local2 = (_local4.length - 1); while (_local2 > -1) { if ((_local4[_local2] is _type)){ _index = _local2; break; }; _local2--; }; }; _local4[_index] = _filter; _target.filters = _local4; } public function onCompleteTween():void{ var _local1:int; var _local2:Array; if (_remove){ _local2 = _target.filters; if (!(_local2[_index] is _type)){ _local1 = (_local2.length - 1); while (_local1 > -1) { if ((_local2[_local1] is _type)){ _local2.splice(_local1, 1); break; }; _local1--; }; } else { _local2.splice(_index, 1); }; _target.filters = _local2; }; } protected function initFilter(_arg1:Object, _arg2:BitmapFilter):void{ var _local3:Array; var _local4:String; var _local5:int; var _local6:HexColorsPlugin; var _local7:Object; _local3 = _target.filters; _index = -1; if (_arg1.index != null){ _index = _arg1.index; } else { _local5 = (_local3.length - 1); while (_local5 > -1) { if ((_local3[_local5] is _type)){ _index = _local5; break; }; _local5--; }; }; if ((((((_index == -1)) || ((_local3[_index] == null)))) || ((_arg1.addFilter == true)))){ _index = ((_arg1.index)!=null) ? _arg1.index : _local3.length; _local3[_index] = _arg2; _target.filters = _local3; }; _filter = _local3[_index]; _remove = Boolean((_arg1.remove == true)); if (_remove){ this.onComplete = onCompleteTween; }; _local7 = ((_arg1.isTV)==true) ? _arg1.exposedVars : _arg1; for (_local4 in _local7) { if (((((((((!((_local4 in _filter))) || ((_filter[_local4] == _local7[_local4])))) || ((_local4 == "remove")))) || ((_local4 == "index")))) || ((_local4 == "addFilter")))){ } else { if ((((((_local4 == "color")) || ((_local4 == "highlightColor")))) || ((_local4 == "shadowColor")))){ _local6 = new HexColorsPlugin(); _local6.initColor(_filter, _local4, _filter[_local4], _local7[_local4]); _tweens[_tweens.length] = new TweenInfo(_local6, "changeFactor", 0, 1, _local4, false); } else { if ((((((((_local4 == "quality")) || ((_local4 == "inner")))) || ((_local4 == "knockout")))) || ((_local4 == "hideObject")))){ _filter[_local4] = _local7[_local4]; } else { addTween(_filter, _local4, _filter[_local4], _local7[_local4], _local4); }; }; }; }; } } }//package gs.plugins
Section 101
//FramePlugin (gs.plugins.FramePlugin) package gs.plugins { import flash.display.*; import gs.*; public class FramePlugin extends TweenPlugin { public var frame:int; protected var _target:MovieClip; public static const VERSION:Number = 1; public static const API:Number = 1; public function FramePlugin(){ this.propName = "frame"; this.overwriteProps = ["frame"]; this.round = true; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.gotoAndStop(this.frame); } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is MovieClip))) || (isNaN(_arg2)))){ return (false); }; _target = (_arg1 as MovieClip); addTween(this, "frame", _target.currentFrame, _arg2, "frame"); return (true); } } }//package gs.plugins
Section 102
//GlowFilterPlugin (gs.plugins.GlowFilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; public class GlowFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function GlowFilterPlugin(){ this.propName = "glowFilter"; this.overwriteProps = ["glowFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = GlowFilter; initFilter(_arg2, new GlowFilter(0xFFFFFF, 0, 0, 0, ((_arg2.strength) || (1)), ((_arg2.quality) || (2)), _arg2.inner, _arg2.knockout)); return (true); } } }//package gs.plugins
Section 103
//HexColorsPlugin (gs.plugins.HexColorsPlugin) package gs.plugins { import gs.*; public class HexColorsPlugin extends TweenPlugin { protected var _colors:Array; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function HexColorsPlugin(){ this.propName = "hexColors"; this.overwriteProps = []; _colors = []; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:Array; _local2 = (_colors.length - 1); while (_local2 > -1) { _local3 = _colors[_local2]; _local3[0][_local3[1]] = ((((_local3[2] + (_arg1 * _local3[3])) << 16) | ((_local3[4] + (_arg1 * _local3[5])) << 8)) | (_local3[6] + (_arg1 * _local3[7]))); _local2--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:String; for (_local4 in _arg2) { initColor(_arg1, _local4, uint(_arg1[_local4]), uint(_arg2[_local4])); }; return (true); } override public function killProps(_arg1:Object):void{ var _local2:int; _local2 = (_colors.length - 1); while (_local2 > -1) { if (_arg1[_colors[_local2][1]] != undefined){ _colors.splice(_local2, 1); }; _local2--; }; super.killProps(_arg1); } public function initColor(_arg1:Object, _arg2:String, _arg3:uint, _arg4:uint):void{ var _local5:Number; var _local6:Number; var _local7:Number; if (_arg3 != _arg4){ _local5 = (_arg3 >> 16); _local6 = ((_arg3 >> 8) & 0xFF); _local7 = (_arg3 & 0xFF); _colors[_colors.length] = [_arg1, _arg2, _local5, ((_arg4 >> 16) - _local5), _local6, (((_arg4 >> 8) & 0xFF) - _local6), _local7, ((_arg4 & 0xFF) - _local7)]; this.overwriteProps[this.overwriteProps.length] = _arg2; }; } } }//package gs.plugins
Section 104
//RemoveTintPlugin (gs.plugins.RemoveTintPlugin) package gs.plugins { public class RemoveTintPlugin extends TintPlugin { public static const VERSION:Number = 1.01; public static const API:Number = 1; public function RemoveTintPlugin(){ this.propName = "removeTint"; } } }//package gs.plugins
Section 105
//RoundPropsPlugin (gs.plugins.RoundPropsPlugin) package gs.plugins { public class RoundPropsPlugin extends TweenPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function RoundPropsPlugin(){ this.propName = "roundProps"; this.overwriteProps = []; this.round = true; } public function add(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number):void{ addTween(_arg1, _arg2, _arg3, (_arg3 + _arg4), _arg2); this.overwriteProps[this.overwriteProps.length] = _arg2; } } }//package gs.plugins
Section 106
//ShortRotationPlugin (gs.plugins.ShortRotationPlugin) package gs.plugins { import gs.*; public class ShortRotationPlugin extends TweenPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function ShortRotationPlugin(){ this.propName = "shortRotation"; this.overwriteProps = []; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:String; if (typeof(_arg2) == "number"){ trace("WARNING: You appear to be using the old shortRotation syntax. Instead of passing a number, please pass an object with properties that correspond to the rotations values For example, TweenMax.to(mc, 2, {shortRotation:{rotationX:-170, rotationY:25}})"); return (false); }; for (_local4 in _arg2) { initRotation(_arg1, _local4, _arg1[_local4], _arg2[_local4]); }; return (true); } public function initRotation(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number):void{ var _local5:Number; _local5 = ((_arg4 - _arg3) % 360); if (((_arg4 - _arg3) % 360) != (_local5 % 180)){ _local5 = ((_local5)<0) ? (_local5 + 360) : (_local5 - 360); }; addTween(_arg1, _arg2, _arg3, (_arg3 + _local5), _arg2); this.overwriteProps[this.overwriteProps.length] = _arg2; } } }//package gs.plugins
Section 107
//TintPlugin (gs.plugins.TintPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.geom.*; import gs.utils.tween.*; public class TintPlugin extends TweenPlugin { protected var _ct:ColorTransform; protected var _target:DisplayObject; public static const VERSION:Number = 1.01; public static const API:Number = 1; protected static var _props:Array = ["redMultiplier", "greenMultiplier", "blueMultiplier", "alphaMultiplier", "redOffset", "greenOffset", "blueOffset", "alphaOffset"]; public function TintPlugin(){ this.propName = "tint"; this.overwriteProps = ["tint"]; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.transform.colorTransform = _ct; } public function init(_arg1:DisplayObject, _arg2:ColorTransform):void{ var _local3:int; var _local4:String; _target = _arg1; _ct = _target.transform.colorTransform; _local3 = (_props.length - 1); while (_local3 > -1) { _local4 = _props[_local3]; if (_ct[_local4] != _arg2[_local4]){ _tweens[_tweens.length] = new TweenInfo(_ct, _local4, _ct[_local4], (_arg2[_local4] - _ct[_local4]), "tint", false); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:ColorTransform; if (!(_arg1 is DisplayObject)){ return (false); }; _local4 = new ColorTransform(); if (((!((_arg2 == null))) && (!((_arg3.exposedVars.removeTint == true))))){ _local4.color = uint(_arg2); }; if (((!((_arg3.exposedVars.alpha == undefined))) || (!((_arg3.exposedVars.autoAlpha == undefined))))){ _local4.alphaMultiplier = ((_arg3.exposedVars.alpha)!=undefined) ? _arg3.exposedVars.alpha : _arg3.exposedVars.autoAlpha; _arg3.killVars({alpha:1, autoAlpha:1}); } else { _local4.alphaMultiplier = _arg1.alpha; }; init((_arg1 as DisplayObject), _local4); return (true); } } }//package gs.plugins
Section 108
//TweenPlugin (gs.plugins.TweenPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class TweenPlugin { public var overwriteProps:Array; protected var _tweens:Array; public var round:Boolean; public var onComplete:Function; public var propName:String; protected var _changeFactor:Number;// = 0 public static const VERSION:Number = 1.03; public static const API:Number = 1; public function TweenPlugin(){ _tweens = []; _changeFactor = 0; super(); } protected function updateTweens(_arg1:Number):void{ var _local2:int; var _local3:TweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _local3.target[_local3.property] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local3.target[_local3.property] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _changeFactor = _arg1; } protected function addTween(_arg1:Object, _arg2:String, _arg3:Number, _arg4, _arg5:String=null):void{ var _local6:Number; if (_arg4 != null){ _local6 = ((typeof(_arg4))=="number") ? (_arg4 - _arg3) : Number(_arg4); if (_local6 != 0){ _tweens[_tweens.length] = new TweenInfo(_arg1, _arg2, _arg3, _local6, ((_arg5) || (_arg2)), false); }; }; } public function killProps(_arg1:Object):void{ var _local2:int; _local2 = (this.overwriteProps.length - 1); while (_local2 > -1) { if ((this.overwriteProps[_local2] in _arg1)){ this.overwriteProps.splice(_local2, 1); }; _local2--; }; _local2 = (_tweens.length - 1); while (_local2 > -1) { if ((_tweens[_local2].name in _arg1)){ _tweens.splice(_local2, 1); }; _local2--; }; } public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ addTween(_arg1, this.propName, _arg1[this.propName], _arg2, this.propName); return (true); } public function get changeFactor():Number{ return (_changeFactor); } public static function activate(_arg1:Array):Boolean{ var _local2:int; var _local3:Object; _local2 = (_arg1.length - 1); while (_local2 > -1) { _local3 = new (_arg1[_local2]); TweenLite.plugins[_local3.propName] = _arg1[_local2]; _local2--; }; return (true); } } }//package gs.plugins
Section 109
//VisiblePlugin (gs.plugins.VisiblePlugin) package gs.plugins { import flash.display.*; import gs.*; public class VisiblePlugin extends TweenPlugin { protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function VisiblePlugin(){ this.propName = "visible"; this.overwriteProps = ["visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ if (_target.visible != true){ _target.visible = true; }; } public function onCompleteTween():void{ if (((!((_tween.vars.runBackwards == true))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(_arg2); return (true); } } }//package gs.plugins
Section 110
//VolumePlugin (gs.plugins.VolumePlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.media.*; public class VolumePlugin extends TweenPlugin { protected var _st:SoundTransform; protected var _target:Object; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function VolumePlugin(){ this.propName = "volume"; this.overwriteProps = ["volume"]; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.soundTransform = _st; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((isNaN(_arg2)) || (!(_arg1.hasOwnProperty("soundTransform"))))){ return (false); }; _target = _arg1; _st = _target.soundTransform; addTween(_st, "volume", _st.volume, _arg2, "volume"); return (true); } } }//package gs.plugins
Section 111
//ArrayTweenInfo (gs.utils.tween.ArrayTweenInfo) package gs.utils.tween { public class ArrayTweenInfo { public var change:Number; public var index:uint; public var start:Number; public function ArrayTweenInfo(_arg1:uint, _arg2:Number, _arg3:Number){ this.index = _arg1; this.start = _arg2; this.change = _arg3; } } }//package gs.utils.tween
Section 112
//TweenInfo (gs.utils.tween.TweenInfo) package gs.utils.tween { public class TweenInfo { public var start:Number; public var name:String; public var change:Number; public var target:Object; public var property:String; public var isPlugin:Boolean; public function TweenInfo(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number, _arg5:String, _arg6:Boolean){ this.target = _arg1; this.property = _arg2; this.start = _arg3; this.change = _arg4; this.name = _arg5; this.isPlugin = _arg6; } } }//package gs.utils.tween
Section 113
//OverwriteManager (gs.OverwriteManager) package gs { import flash.utils.*; import gs.utils.tween.*; import flash.errors.*; public class OverwriteManager { public static const ALL:int = 1; public static const NONE:int = 0; public static const AUTO:int = 2; public static const CONCURRENT:int = 3; public static const version:Number = 3.12; public static var mode:int; public static var enabled:Boolean; public static function killVars(_arg1:Object, _arg2:Object, _arg3:Array):void{ var _local4:int; var _local5:String; var _local6:TweenInfo; _local4 = (_arg3.length - 1); while (_local4 > -1) { _local6 = _arg3[_local4]; if ((_local6.name in _arg1)){ _arg3.splice(_local4, 1); } else { if (((_local6.isPlugin) && ((_local6.name == "_MULTIPLE_")))){ _local6.target.killProps(_arg1); if (_local6.target.overwriteProps.length == 0){ _arg3.splice(_local4, 1); }; }; }; _local4--; }; for (_local5 in _arg1) { delete _arg2[_local5]; }; } public static function manageOverwrites(_arg1:TweenLite, _arg2:Array):void{ var _local3:Object; var _local4:int; var _local5:Number; var _local6:Array; var _local7:int; var _local8:TweenLite; var _local9:int; var _local10:Array; var _local11:Object; var _local12:int; var _local13:TweenInfo; var _local14:Array; _local3 = _arg1.vars; _local4 = ((_local3.overwrite)==undefined) ? mode : int(_local3.overwrite); if ((((_local4 < 2)) || ((_arg2 == null)))){ return; }; _local5 = _arg1.startTime; _local6 = []; _local9 = -1; _local7 = (_arg2.length - 1); while (_local7 > -1) { _local8 = _arg2[_local7]; if (_local8 == _arg1){ _local9 = _local7; } else { if ((((((_local7 < _local9)) && ((_local8.startTime <= _local5)))) && (((_local8.startTime + ((_local8.duration * 1000) / _local8.combinedTimeScale)) > _local5)))){ _local6[_local6.length] = _local8; }; }; _local7--; }; if ((((_local6.length == 0)) || ((_arg1.tweens.length == 0)))){ return; }; if (_local4 == AUTO){ _local10 = _arg1.tweens; _local11 = {}; _local7 = (_local10.length - 1); while (_local7 > -1) { _local13 = _local10[_local7]; if (_local13.isPlugin){ if (_local13.name == "_MULTIPLE_"){ _local14 = _local13.target.overwriteProps; _local12 = (_local14.length - 1); while (_local12 > -1) { _local11[_local14[_local12]] = true; _local12--; }; } else { _local11[_local13.name] = true; }; _local11[_local13.target.propName] = true; } else { _local11[_local13.name] = true; }; _local7--; }; _local7 = (_local6.length - 1); while (_local7 > -1) { killVars(_local11, _local6[_local7].exposedVars, _local6[_local7].tweens); _local7--; }; } else { _local7 = (_local6.length - 1); while (_local7 > -1) { _local6[_local7].enabled = false; _local7--; }; }; } public static function init(_arg1:int=2):int{ if (TweenLite.version < 10.09){ trace("TweenLite warning: Your TweenLite class needs to be updated to work with OverwriteManager (or you may need to clear your ASO files). Please download and install the latest version from http://www.tweenlite.com."); }; TweenLite.overwriteManager = OverwriteManager; mode = _arg1; enabled = true; return (mode); } } }//package gs
Section 114
//TweenLite (gs.TweenLite) package gs { import flash.events.*; import flash.display.*; import flash.utils.*; import gs.utils.tween.*; import gs.plugins.*; public class TweenLite { public var delay:Number; protected var _hasUpdate:Boolean; protected var _hasPlugins:Boolean; public var started:Boolean; public var initted:Boolean; public var active:Boolean; public var startTime:Number; public var target:Object; public var duration:Number; public var gc:Boolean; public var vars:Object; public var ease:Function; public var tweens:Array; public var exposedVars:Object; public var combinedTimeScale:Number; public var initTime:Number; public static const version:Number = 10.09; private static var _timer:Timer = new Timer(2000); public static var defaultEase:Function = TweenLite.easeOut; public static var plugins:Object = {}; public static var currentTime:uint; public static var masterList:Dictionary = new Dictionary(false); protected static var _reservedProps:Object = {ease:1, delay:1, overwrite:1, onComplete:1, onCompleteParams:1, runBackwards:1, startAt:1, onUpdate:1, onUpdateParams:1, roundProps:1, onStart:1, onStartParams:1, persist:1, renderOnStart:1, proxiedEase:1, easeParams:1, yoyo:1, loop:1, onCompleteListener:1, onUpdateListener:1, onStartListener:1, orientToBezier:1, timeScale:1}; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; public static var timingSprite:Sprite = new Sprite(); public static var overwriteManager:Object; private static var _tlInitted:Boolean; public function TweenLite(_arg1:Object, _arg2:Number, _arg3:Object){ var _local4:int; super(); if (_arg1 == null){ return; }; if (!_tlInitted){ TweenPlugin.activate([TintPlugin, RemoveTintPlugin, FramePlugin, AutoAlphaPlugin, VisiblePlugin, VolumePlugin, EndArrayPlugin]); currentTime = getTimer(); timingSprite.addEventListener(Event.ENTER_FRAME, updateAll, false, 0, true); if (overwriteManager == null){ overwriteManager = {mode:1, enabled:false}; }; _timer.addEventListener("timer", killGarbage, false, 0, true); _timer.start(); _tlInitted = true; }; this.vars = _arg3; this.duration = ((_arg2) || (0.001)); this.delay = ((_arg3.delay) || (0)); this.combinedTimeScale = ((_arg3.timeScale) || (1)); this.active = Boolean((((_arg2 == 0)) && ((this.delay == 0)))); this.target = _arg1; if (typeof(this.vars.ease) != "function"){ this.vars.ease = defaultEase; }; if (this.vars.easeParams != null){ this.vars.proxiedEase = this.vars.ease; this.vars.ease = easeProxy; }; this.ease = this.vars.ease; this.exposedVars = ((this.vars.isTV)==true) ? this.vars.exposedVars : this.vars; this.tweens = []; this.initTime = currentTime; this.startTime = (this.initTime + (this.delay * 1000)); _local4 = ((((_arg3.overwrite == undefined)) || (((!(overwriteManager.enabled)) && ((_arg3.overwrite > 1)))))) ? overwriteManager.mode : int(_arg3.overwrite); if (((!((_arg1 in masterList))) || ((_local4 == 1)))){ masterList[_arg1] = [this]; } else { masterList[_arg1].push(this); }; if ((((((this.vars.runBackwards == true)) && (!((this.vars.renderOnStart == true))))) || (this.active))){ initTweenVals(); if (this.active){ render((this.startTime + 1)); } else { render(this.startTime); }; if (((((!((this.exposedVars.visible == null))) && ((this.vars.runBackwards == true)))) && ((this.target is DisplayObject)))){ this.target.visible = this.exposedVars.visible; }; }; } public function set enabled(_arg1:Boolean):void{ var _local2:Array; var _local3:Boolean; var _local4:int; if (_arg1){ if (!(this.target in masterList)){ masterList[this.target] = [this]; } else { _local2 = masterList[this.target]; _local4 = (_local2.length - 1); while (_local4 > -1) { if (_local2[_local4] == this){ _local3 = true; break; }; _local4--; }; if (!_local3){ _local2[_local2.length] = this; }; }; }; this.gc = (_arg1) ? false : true; if (this.gc){ this.active = false; } else { this.active = this.started; }; } public function clear():void{ this.tweens = []; this.vars = (this.exposedVars = {ease:this.vars.ease}); _hasUpdate = false; } public function render(_arg1:uint):void{ var _local2:Number; var _local3:Number; var _local4:TweenInfo; var _local5:int; _local2 = ((_arg1 - this.startTime) * 0.001); if (_local2 >= this.duration){ _local2 = this.duration; _local3 = ((((this.ease == this.vars.ease)) || ((this.duration == 0.001)))) ? 1 : 0; } else { _local3 = this.ease(_local2, 0, 1, this.duration); }; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local4 = this.tweens[_local5]; _local4.target[_local4.property] = (_local4.start + (_local3 * _local4.change)); _local5--; }; if (_hasUpdate){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (_local2 == this.duration){ complete(true); }; } public function activate():void{ this.started = (this.active = true); if (!this.initted){ initTweenVals(); }; if (this.vars.onStart != null){ this.vars.onStart.apply(null, this.vars.onStartParams); }; if (this.duration == 0.001){ this.startTime = (this.startTime - 1); }; } public function get enabled():Boolean{ return ((this.gc) ? false : true); } public function initTweenVals():void{ var _local1:String; var _local2:int; var _local3:*; var _local4:TweenInfo; if (((!((this.exposedVars.timeScale == undefined))) && ((this.target is TweenLite)))){ this.tweens[this.tweens.length] = new TweenInfo(this.target, "timeScale", this.target.timeScale, (this.exposedVars.timeScale - this.target.timeScale), "timeScale", false); }; for (_local1 in this.exposedVars) { if ((_local1 in _reservedProps)){ } else { if ((_local1 in plugins)){ _local3 = new (plugins[_local1]); if (_local3.onInitTween(this.target, this.exposedVars[_local1], this) == false){ this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); } else { this.tweens[this.tweens.length] = new TweenInfo(_local3, "changeFactor", 0, 1, ((_local3.overwriteProps.length)==1) ? _local3.overwriteProps[0] : "_MULTIPLE_", true); _hasPlugins = true; }; } else { this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); }; }; }; if (this.vars.runBackwards == true){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { _local4 = this.tweens[_local2]; this.tweens[_local2].start = (_local4.start + _local4.change); _local4.change = -(_local4.change); _local2--; }; }; if (this.vars.onUpdate != null){ _hasUpdate = true; }; if (((TweenLite.overwriteManager.enabled) && ((this.target in masterList)))){ overwriteManager.manageOverwrites(this, masterList[this.target]); }; this.initted = true; } protected function easeProxy(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams))); } public function killVars(_arg1:Object):void{ if (overwriteManager.enabled){ overwriteManager.killVars(_arg1, this.exposedVars, this.tweens); }; } public function complete(_arg1:Boolean=false):void{ var _local2:int; if (!_arg1){ if (!this.initted){ initTweenVals(); }; this.startTime = (currentTime - ((this.duration * 1000) / this.combinedTimeScale)); render(currentTime); return; }; if (_hasPlugins){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { if (((this.tweens[_local2].isPlugin) && (!((this.tweens[_local2].target.onComplete == null))))){ this.tweens[_local2].target.onComplete(); }; _local2--; }; }; if (this.vars.persist != true){ this.enabled = false; }; if (this.vars.onComplete != null){ this.vars.onComplete.apply(null, this.vars.onCompleteParams); }; } public static function updateAll(_arg1:Event=null):void{ var _local2:uint; var _local3:Dictionary; var _local4:Array; var _local5:int; var _local6:TweenLite; _local2 = (currentTime = getTimer()); _local3 = masterList; for each (_local4 in _local3) { _local5 = (_local4.length - 1); while (_local5 > -1) { _local6 = _local4[_local5]; if (_local6.active){ _local6.render(_local2); } else { if (_local6.gc){ _local4.splice(_local5, 1); } else { if (_local2 >= _local6.startTime){ _local6.activate(); _local6.render(_local2); }; }; }; _local5--; }; }; } public static function removeTween(_arg1:TweenLite, _arg2:Boolean=true):void{ if (_arg1 != null){ if (_arg2){ _arg1.clear(); }; _arg1.enabled = false; }; } public static function killTweensOf(_arg1:Object=null, _arg2:Boolean=false):void{ var _local3:Array; var _local4:int; var _local5:TweenLite; if (((!((_arg1 == null))) && ((_arg1 in masterList)))){ _local3 = masterList[_arg1]; _local4 = (_local3.length - 1); while (_local4 > -1) { _local5 = _local3[_local4]; if (((_arg2) && (!(_local5.gc)))){ _local5.complete(false); }; _local5.clear(); _local4--; }; delete masterList[_arg1]; }; } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ _arg3.runBackwards = true; return (new TweenLite(_arg1, _arg2, _arg3)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } protected static function killGarbage(_arg1:TimerEvent):void{ var _local2:Dictionary; var _local3:Object; _local2 = masterList; for (_local3 in _local2) { if (_local2[_local3].length == 0){ delete _local2[_local3]; }; }; } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null):TweenLite{ return (new TweenLite(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, overwrite:0})); } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ return (new TweenLite(_arg1, _arg2, _arg3)); } } }//package gs
Section 115
//TweenMax (gs.TweenMax) package gs { import flash.events.*; import flash.utils.*; import gs.utils.tween.*; import gs.plugins.*; import gs.events.*; public class TweenMax extends TweenLite implements IEventDispatcher { protected var _dispatcher:EventDispatcher; protected var _callbacks:Object; public var pauseTime:Number; protected var _repeatCount:Number; protected var _timeScale:Number; public static const version:Number = 10.1; public static var removeTween:Function = TweenLite.removeTween; private static var _overwriteMode:int = (OverwriteManager.enabled) ? OverwriteManager.mode : OverwriteManager.init(); ; protected static var _pausedTweens:Dictionary = new Dictionary(false); protected static var _globalTimeScale:Number = 1; public static var killTweensOf:Function = TweenLite.killTweensOf; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; private static var _activatedPlugins:Boolean = TweenPlugin.activate([TintPlugin, RemoveTintPlugin, FramePlugin, AutoAlphaPlugin, VisiblePlugin, VolumePlugin, EndArrayPlugin, HexColorsPlugin, BlurFilterPlugin, ColorMatrixFilterPlugin, BevelFilterPlugin, DropShadowFilterPlugin, GlowFilterPlugin, RoundPropsPlugin, BezierPlugin, BezierThroughPlugin, ShortRotationPlugin]); public function TweenMax(_arg1:Object, _arg2:Number, _arg3:Object){ super(_arg1, _arg2, _arg3); if (TweenLite.version < 10.09){ trace("TweenMax error! Please update your TweenLite class or try deleting your ASO files. TweenMax requires a more recent version. Download updates at http://www.TweenMax.com."); }; if (((!((this.combinedTimeScale == 1))) && ((this.target is TweenMax)))){ _timeScale = 1; this.combinedTimeScale = _globalTimeScale; } else { _timeScale = this.combinedTimeScale; this.combinedTimeScale = (this.combinedTimeScale * _globalTimeScale); }; if (((!((this.combinedTimeScale == 1))) && (!((this.delay == 0))))){ this.startTime = (this.initTime + (this.delay * (1000 / this.combinedTimeScale))); }; if (((((!((this.vars.onCompleteListener == null))) || (!((this.vars.onUpdateListener == null))))) || (!((this.vars.onStartListener == null))))){ initDispatcher(); if ((((_arg2 == 0)) && ((this.delay == 0)))){ onUpdateDispatcher(); onCompleteDispatcher(); }; }; _repeatCount = 0; if (((!(isNaN(this.vars.yoyo))) || (!(isNaN(this.vars.loop))))){ this.vars.persist = true; }; } override public function set enabled(_arg1:Boolean):void{ if (!_arg1){ _pausedTweens[this] = null; delete _pausedTweens[this]; }; super.enabled = _arg1; if (_arg1){ this.combinedTimeScale = (_timeScale * _globalTimeScale); }; } public function set reversed(_arg1:Boolean):void{ if (this.reversed != _arg1){ reverse(); }; } override public function render(_arg1:uint):void{ var _local2:Number; var _local3:Number; var _local4:TweenInfo; var _local5:int; _local2 = (((_arg1 - this.startTime) * 0.001) * this.combinedTimeScale); if (_local2 >= this.duration){ _local2 = this.duration; _local3 = ((((this.ease == this.vars.ease)) || ((this.duration == 0.001)))) ? 1 : 0; } else { _local3 = this.ease(_local2, 0, 1, this.duration); }; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local4 = this.tweens[_local5]; _local4.target[_local4.property] = (_local4.start + (_local3 * _local4.change)); _local5--; }; if (_hasUpdate){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (_local2 == this.duration){ complete(true); }; } protected function adjustStartValues():void{ var _local1:Number; var _local2:Number; var _local3:Number; var _local4:Number; var _local5:TweenInfo; var _local6:int; _local1 = this.progress; if (_local1 != 0){ _local2 = this.ease(_local1, 0, 1, 1); _local3 = (1 / (1 - _local2)); _local6 = (this.tweens.length - 1); while (_local6 > -1) { _local5 = this.tweens[_local6]; _local4 = (_local5.start + _local5.change); if (_local5.isPlugin){ _local5.change = ((_local4 - _local2) * _local3); } else { _local5.change = ((_local4 - _local5.target[_local5.property]) * _local3); }; _local5.start = (_local4 - _local5.change); _local6--; }; }; } public function get timeScale():Number{ return (_timeScale); } public function restart(_arg1:Boolean=false):void{ if (_arg1){ this.initTime = currentTime; this.startTime = (currentTime + (this.delay * (1000 / this.combinedTimeScale))); } else { this.startTime = currentTime; this.initTime = (currentTime - (this.delay * (1000 / this.combinedTimeScale))); }; _repeatCount = 0; if (this.target != this.vars.onComplete){ render(this.startTime); }; this.pauseTime = NaN; _pausedTweens[this] = null; delete _pausedTweens[this]; this.enabled = true; } public function get paused():Boolean{ return (!(isNaN(this.pauseTime))); } public function killProperties(_arg1:Array):void{ var _local2:Object; var _local3:int; _local2 = {}; _local3 = (_arg1.length - 1); while (_local3 > -1) { _local2[_arg1[_local3]] = true; _local3--; }; killVars(_local2); } public function resume():void{ this.enabled = true; if (!isNaN(this.pauseTime)){ this.initTime = (this.initTime + (currentTime - this.pauseTime)); this.startTime = (this.initTime + (this.delay * (1000 / this.combinedTimeScale))); this.pauseTime = NaN; if (((!(this.started)) && ((currentTime >= this.startTime)))){ activate(); } else { this.active = this.started; }; _pausedTweens[this] = null; delete _pausedTweens[this]; }; } override public function complete(_arg1:Boolean=false):void{ if (((((!(isNaN(this.vars.yoyo))) && ((((_repeatCount < this.vars.yoyo)) || ((this.vars.yoyo == 0)))))) || (((!(isNaN(this.vars.loop))) && ((((_repeatCount < this.vars.loop)) || ((this.vars.loop == 0)))))))){ _repeatCount++; if (!isNaN(this.vars.yoyo)){ this.ease = ((this.vars.ease)==this.ease) ? reverseEase : this.vars.ease; }; this.startTime = (_arg1) ? (this.startTime + (this.duration * (1000 / this.combinedTimeScale))) : currentTime; this.initTime = (this.startTime - (this.delay * (1000 / this.combinedTimeScale))); } else { if (this.vars.persist == true){ pause(); }; }; super.complete(_arg1); } public function invalidate(_arg1:Boolean=true):void{ var _local2:Number; if (this.initted){ _local2 = this.progress; if (((!(_arg1)) && (!((_local2 == 0))))){ this.progress = 0; }; this.tweens = []; _hasPlugins = false; this.exposedVars = ((this.vars.isTV)==true) ? this.vars.exposedProps : this.vars; initTweenVals(); _timeScale = ((this.vars.timeScale) || (1)); this.combinedTimeScale = (_timeScale * _globalTimeScale); this.delay = ((this.vars.delay) || (0)); if (isNaN(this.pauseTime)){ this.startTime = (this.initTime + ((this.delay * 1000) / this.combinedTimeScale)); }; if (((((!((this.vars.onCompleteListener == null))) || (!((this.vars.onUpdateListener == null))))) || (!((this.vars.onStartListener == null))))){ if (_dispatcher != null){ this.vars.onStart = _callbacks.onStart; this.vars.onUpdate = _callbacks.onUpdate; this.vars.onComplete = _callbacks.onComplete; _dispatcher = null; }; initDispatcher(); }; if (_local2 != 0){ if (_arg1){ adjustStartValues(); } else { this.progress = _local2; }; }; }; } public function get progress():Number{ var _local1:Number; var _local2:Number; _local1 = (isNaN(this.pauseTime)) ? currentTime : this.pauseTime; _local2 = (((((_local1 - this.initTime) * 0.001) - (this.delay / this.combinedTimeScale)) / this.duration) * this.combinedTimeScale); if (_local2 > 1){ return (1); }; if (_local2 < 0){ return (0); }; return (_local2); } public function willTrigger(_arg1:String):Boolean{ if (_dispatcher == null){ return (false); }; return (_dispatcher.willTrigger(_arg1)); } public function dispatchEvent(_arg1:Event):Boolean{ if (_dispatcher == null){ return (false); }; return (_dispatcher.dispatchEvent(_arg1)); } public function get reversed():Boolean{ return ((this.ease == reverseEase)); } protected function onStartDispatcher(... _args):void{ if (_callbacks.onStart != null){ _callbacks.onStart.apply(null, this.vars.onStartParams); }; _dispatcher.dispatchEvent(new TweenEvent(TweenEvent.START)); } public function setDestination(_arg1:String, _arg2, _arg3:Boolean=true):void{ var _local4:Number; var _local5:int; var _local6:Object; var _local7:Array; var _local8:Boolean; var _local9:Array; var _local10:Object; var _local11:int; var _local12:Array; _local4 = this.progress; if (this.initted){ if (((!(_arg3)) && (!((_local4 == 0))))){ _local5 = (this.tweens.length - 1); while (_local5 > -1) { if (this.tweens[_local5].name == _arg1){ this.tweens[_local5].target[this.tweens[_local5].property] = this.tweens[_local5].start; }; _local5--; }; }; _local6 = this.vars; _local7 = this.tweens; _local8 = _hasPlugins; this.tweens = []; this.vars = (this.exposedVars = {}); this.vars[_arg1] = _arg2; initTweenVals(); if (((!((this.ease == reverseEase))) && ((_local6.ease is Function)))){ this.ease = _local6.ease; }; if (((_arg3) && (!((_local4 == 0))))){ adjustStartValues(); }; _local9 = this.tweens; this.vars = _local6; this.tweens = _local7; _local10 = {}; _local5 = (_local9.length - 1); while (_local5 > -1) { if (_local9[_local5].name == "_MULTIPLE_"){ _local12 = _local9[_local5].target.overwriteProps; _local11 = (_local12.length - 1); while (_local11 > -1) { _local10[_local12[_local11]] = true; _local11--; }; } else { _local10[_local9[_local5].name] = true; }; _local5--; }; killVars(_local10); this.tweens = this.tweens.concat(_local9); _hasPlugins = Boolean(((_local8) || (_hasPlugins))); }; this.vars[_arg1] = _arg2; } public function set timeScale(_arg1:Number):void{ if (_arg1 < 1E-5){ _arg1 = (_timeScale = 1E-5); } else { _timeScale = _arg1; _arg1 = (_arg1 * _globalTimeScale); }; this.initTime = ((currentTime - ((((currentTime - this.initTime) - (this.delay * (1000 / this.combinedTimeScale))) * this.combinedTimeScale) * (1 / _arg1))) - (this.delay * (1000 / _arg1))); if (this.startTime != 999999999999999){ this.startTime = (this.initTime + (this.delay * (1000 / _arg1))); }; this.combinedTimeScale = _arg1; } public function removeEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false):void{ if (_dispatcher != null){ _dispatcher.removeEventListener(_arg1, _arg2, _arg3); }; } override public function initTweenVals():void{ var _local1:int; var _local2:int; var _local3:String; var _local4:String; var _local5:Array; var _local6:Object; var _local7:TweenInfo; if (this.exposedVars.startAt != null){ this.exposedVars.startAt.overwrite = 0; new TweenMax(this.target, 0, this.exposedVars.startAt); }; super.initTweenVals(); if ((((this.exposedVars.roundProps is Array)) && (!((TweenLite.plugins.roundProps == null))))){ _local5 = this.exposedVars.roundProps; _local1 = (_local5.length - 1); while (_local1 > -1) { _local3 = _local5[_local1]; _local2 = (this.tweens.length - 1); while (_local2 > -1) { _local7 = this.tweens[_local2]; if (_local7.name == _local3){ if (_local7.isPlugin){ _local7.target.round = true; } else { if (_local6 == null){ _local6 = new TweenLite.plugins.roundProps(); _local6.add(_local7.target, _local3, _local7.start, _local7.change); _hasPlugins = true; this.tweens[_local2] = new TweenInfo(_local6, "changeFactor", 0, 1, _local3, true); } else { _local6.add(_local7.target, _local3, _local7.start, _local7.change); this.tweens.splice(_local2, 1); }; }; } else { if (((((_local7.isPlugin) && ((_local7.name == "_MULTIPLE_")))) && (!(_local7.target.round)))){ _local4 = ((" " + _local7.target.overwriteProps.join(" ")) + " "); if (_local4.indexOf(((" " + _local3) + " ")) != -1){ _local7.target.round = true; }; }; }; _local2--; }; _local1--; }; }; } protected function initDispatcher():void{ var _local1:Object; var _local2:String; if (_dispatcher == null){ _dispatcher = new EventDispatcher(this); _callbacks = {onStart:this.vars.onStart, onUpdate:this.vars.onUpdate, onComplete:this.vars.onComplete}; if (this.vars.isTV == true){ this.vars = this.vars.clone(); } else { _local1 = {}; for (_local2 in this.vars) { _local1[_local2] = this.vars[_local2]; }; this.vars = _local1; }; this.vars.onStart = onStartDispatcher; this.vars.onComplete = onCompleteDispatcher; if ((this.vars.onStartListener is Function)){ _dispatcher.addEventListener(TweenEvent.START, this.vars.onStartListener, false, 0, true); }; if ((this.vars.onUpdateListener is Function)){ _dispatcher.addEventListener(TweenEvent.UPDATE, this.vars.onUpdateListener, false, 0, true); this.vars.onUpdate = onUpdateDispatcher; _hasUpdate = true; }; if ((this.vars.onCompleteListener is Function)){ _dispatcher.addEventListener(TweenEvent.COMPLETE, this.vars.onCompleteListener, false, 0, true); }; }; } protected function onUpdateDispatcher(... _args):void{ if (_callbacks.onUpdate != null){ _callbacks.onUpdate.apply(null, this.vars.onUpdateParams); }; _dispatcher.dispatchEvent(new TweenEvent(TweenEvent.UPDATE)); } public function set progress(_arg1:Number):void{ this.startTime = (currentTime - ((this.duration * _arg1) * 1000)); this.initTime = (this.startTime - (this.delay * (1000 / this.combinedTimeScale))); if (!this.started){ activate(); }; render(currentTime); if (!isNaN(this.pauseTime)){ this.pauseTime = currentTime; this.startTime = 999999999999999; this.active = false; }; } public function reverse(_arg1:Boolean=true, _arg2:Boolean=true):void{ var _local3:Number; this.ease = ((this.vars.ease)==this.ease) ? reverseEase : this.vars.ease; _local3 = this.progress; if (((_arg1) && ((_local3 > 0)))){ this.startTime = (currentTime - ((((1 - _local3) * this.duration) * 1000) / this.combinedTimeScale)); this.initTime = (this.startTime - (this.delay * (1000 / this.combinedTimeScale))); }; if (_arg2 != false){ if (_local3 < 1){ resume(); } else { restart(); }; }; } public function addEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false, _arg4:int=0, _arg5:Boolean=false):void{ if (_dispatcher == null){ initDispatcher(); }; if ((((_arg1 == TweenEvent.UPDATE)) && (!((this.vars.onUpdate == onUpdateDispatcher))))){ this.vars.onUpdate = onUpdateDispatcher; _hasUpdate = true; }; _dispatcher.addEventListener(_arg1, _arg2, _arg3, _arg4, _arg5); } public function set paused(_arg1:Boolean):void{ if (_arg1){ pause(); } else { resume(); }; } public function hasEventListener(_arg1:String):Boolean{ if (_dispatcher == null){ return (false); }; return (_dispatcher.hasEventListener(_arg1)); } public function pause():void{ if (isNaN(this.pauseTime)){ this.pauseTime = currentTime; this.startTime = 999999999999999; this.enabled = false; _pausedTweens[this] = this; }; } public function reverseEase(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (this.vars.ease((_arg4 - _arg1), _arg2, _arg3, _arg4)); } protected function onCompleteDispatcher(... _args):void{ if (_callbacks.onComplete != null){ _callbacks.onComplete.apply(null, this.vars.onCompleteParams); }; _dispatcher.dispatchEvent(new TweenEvent(TweenEvent.COMPLETE)); } public static function set globalTimeScale(_arg1:Number):void{ setGlobalTimeScale(_arg1); } public static function pauseAll(_arg1:Boolean=true, _arg2:Boolean=false):void{ changePause(true, _arg1, _arg2); } public static function killAllDelayedCalls(_arg1:Boolean=false):void{ killAll(_arg1, false, true); } public static function setGlobalTimeScale(_arg1:Number):void{ var _local2:Dictionary; var _local3:int; var _local4:Array; if (_arg1 < 1E-5){ _arg1 = 1E-5; }; _local2 = masterList; _globalTimeScale = _arg1; for each (_local4 in _local2) { _local3 = (_local4.length - 1); while (_local3 > -1) { if ((_local4[_local3] is TweenMax)){ _local4[_local3].timeScale = (_local4[_local3].timeScale * 1); }; _local3--; }; }; } public static function get globalTimeScale():Number{ return (_globalTimeScale); } public static function getTweensOf(_arg1:Object):Array{ var _local2:Array; var _local3:Array; var _local4:TweenLite; var _local5:int; _local2 = masterList[_arg1]; _local3 = []; if (_local2 != null){ _local5 = (_local2.length - 1); while (_local5 > -1) { if (!_local2[_local5].gc){ _local3[_local3.length] = _local2[_local5]; }; _local5--; }; }; for each (_local4 in _pausedTweens) { if (_local4.target == _arg1){ _local3[_local3.length] = _local4; }; }; return (_local3); } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null, _arg4:Boolean=false):TweenMax{ return (new TweenMax(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, persist:_arg4, overwrite:0})); } public static function isTweening(_arg1:Object):Boolean{ var _local2:Array; var _local3:int; _local2 = getTweensOf(_arg1); _local3 = (_local2.length - 1); while (_local3 > -1) { if (((((_local2[_local3].active) || ((_local2[_local3].startTime == currentTime)))) && (!(_local2[_local3].gc)))){ return (true); }; _local3--; }; return (false); } public static function changePause(_arg1:Boolean, _arg2:Boolean=true, _arg3:Boolean=false):void{ var _local4:Array; var _local5:Boolean; var _local6:int; _local4 = getAllTweens(); _local6 = (_local4.length - 1); while (_local6 > -1) { _local5 = (_local4[_local6].target == _local4[_local6].vars.onComplete); if ((((_local4[_local6] is TweenMax)) && ((((_local5 == _arg3)) || (!((_local5 == _arg2))))))){ _local4[_local6].paused = _arg1; }; _local6--; }; } public static function killAllTweens(_arg1:Boolean=false):void{ killAll(_arg1, true, false); } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenMax{ _arg3.runBackwards = true; return (new TweenMax(_arg1, _arg2, _arg3)); } public static function killAll(_arg1:Boolean=false, _arg2:Boolean=true, _arg3:Boolean=true):void{ var _local4:Array; var _local5:Boolean; var _local6:int; _local4 = getAllTweens(); _local6 = (_local4.length - 1); while (_local6 > -1) { _local5 = (_local4[_local6].target == _local4[_local6].vars.onComplete); if ((((_local5 == _arg3)) || (!((_local5 == _arg2))))){ if (_arg1){ _local4[_local6].complete(false); _local4[_local6].clear(); } else { TweenLite.removeTween(_local4[_local6], true); }; }; _local6--; }; } public static function getAllTweens():Array{ var _local1:Dictionary; var _local2:Array; var _local3:Array; var _local4:int; var _local5:TweenLite; _local1 = masterList; _local2 = []; for each (_local3 in _local1) { _local4 = (_local3.length - 1); while (_local4 > -1) { if (!_local3[_local4].gc){ _local2[_local2.length] = _local3[_local4]; }; _local4--; }; }; for each (_local5 in _pausedTweens) { _local2[_local2.length] = _local5; }; return (_local2); } public static function resumeAll(_arg1:Boolean=true, _arg2:Boolean=false):void{ changePause(false, _arg1, _arg2); } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenMax{ return (new TweenMax(_arg1, _arg2, _arg3)); } } }//package gs
Section 116
//3_151 (reemus3_fla.3_151) package reemus3_fla { import flash.display.*; public dynamic class 3_151 extends MovieClip { public function 3_151(){ addFrameScript(0, frame1, 14, frame15, 24, frame25, 34, frame35, 43, frame44, 54, frame55, 94, frame95, 125, frame126); } function frame95(){ gotoAndPlay("talk"); } function frame15(){ stop(); } function frame1(){ stop(); } function frame25(){ stop(); } function frame35(){ stop(); } function frame126(){ gotoAndPlay("talk"); } function frame44(){ stop(); } function frame55(){ stop(); } } }//package reemus3_fla
Section 117
//Action_4 (reemus3_fla.Action_4) package reemus3_fla { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.geom.*; import flash.filters.*; import flash.net.*; import flash.media.*; import flash.system.*; import flash.text.*; import flash.errors.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.printing.*; import flash.ui.*; import flash.xml.*; public dynamic class Action_4 extends MovieClip { public function Action_4(){ addFrameScript(0, frame1); } public function onComplete(_arg1:Event):void{ MovieClip(parent).gotoAndPlay("loaded"); } public function progressHandler(_arg1:ProgressEvent):void{ var _local2:int; _local2 = Math.round(((_arg1.target.bytesLoaded / _arg1.target.bytesTotal) * 100)); MovieClip(parent).gotoAndStop(_local2); } function frame1(){ MovieClip(root).stop(); if (root.loaderInfo.bytesLoaded == root.loaderInfo.bytesTotal){ MovieClip(parent).gotoAndPlay("loaded"); }; root.loaderInfo.addEventListener(ProgressEvent.PROGRESS, progressHandler); root.loaderInfo.addEventListener(Event.COMPLETE, onComplete); } } }//package reemus3_fla
Section 118
//alien_364 (reemus3_fla.alien_364) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class alien_364 extends MovieClip { public var bird:MovieClip; public var spriteIn:MovieClip; public function alien_364(){ addFrameScript(10, frame11); } function frame11(){ AudioManager.playSoundFromLibrary("HissSound"); } } }//package reemus3_fla
Section 119
//alieneye_413 (reemus3_fla.alieneye_413) package reemus3_fla { import flash.display.*; public dynamic class alieneye_413 extends MovieClip { public function alieneye_413(){ addFrameScript(125, frame126, 162, frame163); } function frame163(){ stop(); } function frame126(){ gotoAndPlay(1); } } }//package reemus3_fla
Section 120
//alienresubmerge_401 (reemus3_fla.alienresubmerge_401) package reemus3_fla { import flash.events.*; import flash.display.*; public dynamic class alienresubmerge_401 extends MovieClip { public function alienresubmerge_401(){ addFrameScript(15, frame16); } function frame16(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 121
//attackfrogmiss_429 (reemus3_fla.attackfrogmiss_429) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class attackfrogmiss_429 extends MovieClip { public function attackfrogmiss_429(){ addFrameScript(18, frame19, 23, frame24, 52, frame53); } function frame19(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame24(){ AudioManager.playSoundFromLibrary("Splash2Sound"); } function frame53(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 122
//barkingmonster_264 (reemus3_fla.barkingmonster_264) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class barkingmonster_264 extends MovieClip { public function barkingmonster_264(){ addFrameScript(0, frame1, 16, frame17); } function frame1(){ AudioManager.playSoundFromLibrary("SnarlSound"); } function frame17(){ stop(); } } }//package reemus3_fla
Section 123
//beesflying_59 (reemus3_fla.beesflying_59) package reemus3_fla { import flash.display.*; import asfiles.setting.features.*; public dynamic class beesflying_59 extends MovieClip { public var dud2:Bee; public var dud1:Bee; public var bee1:Bee; public var bee3:Bee; public var bee4:Bee; public var bee2:Bee; } }//package reemus3_fla
Section 124
//beesmokeshrinkdown_55 (reemus3_fla.beesmokeshrinkdown_55) package reemus3_fla { import flash.display.*; public dynamic class beesmokeshrinkdown_55 extends MovieClip { public function beesmokeshrinkdown_55(){ addFrameScript(9, frame10); } function frame10(){ if (currentFrame == 10){ MovieClip(parent).gotoAndStop(1); }; } } }//package reemus3_fla
Section 125
//beesprotect_62 (reemus3_fla.beesprotect_62) package reemus3_fla { import flash.display.*; import asfiles.setting.features.*; public dynamic class beesprotect_62 extends MovieClip { public var dud2:Bee; public var dud1:Bee; public var bee1:Bee; public var bee3:Bee; public var bee4:Bee; public var bee2:Bee; public function beesprotect_62(){ addFrameScript(1, frame2, 13, frame14, 50, frame51); } function frame14(){ stop(); } function frame2(){ } function frame51(){ if (currentFrame == 51){ MovieClip(parent).gotoAndStop(1); }; } } }//package reemus3_fla
Section 126
//beesrildup_58 (reemus3_fla.beesrildup_58) package reemus3_fla { import flash.display.*; public dynamic class beesrildup_58 extends MovieClip { public var spriteIn:MovieClip; } }//package reemus3_fla
Section 127
//BELL_310 (reemus3_fla.BELL_310) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class BELL_310 extends MovieClip { public function BELL_310(){ addFrameScript(0, frame1, 16, frame17); } function frame1(){ stop(); } function frame17(){ AudioManager.playSoundFromLibrary("RingBellSound"); } } }//package reemus3_fla
Section 128
//bendingdownliam_99 (reemus3_fla.bendingdownliam_99) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class bendingdownliam_99 extends MovieClip { public var mouth:MovieClip; public function bendingdownliam_99(){ addFrameScript(33, frame34); } function frame34(){ AudioManager.playSoundFromLibrary("PopSound"); } } }//package reemus3_fla
Section 129
//bendytree_219 (reemus3_fla.bendytree_219) package reemus3_fla { import flash.display.*; public dynamic class bendytree_219 extends MovieClip { public var inner:MovieClip; } }//package reemus3_fla
Section 130
//bigcave_242 (reemus3_fla.bigcave_242) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class bigcave_242 extends MovieClip { public function bigcave_242(){ addFrameScript(4, frame5, 39, frame40); } function frame5(){ AudioManager.playSoundFromLibrary("TombOpenSound"); } function frame40(){ stop(); } } }//package reemus3_fla
Section 131
//birdexplode_378 (reemus3_fla.birdexplode_378) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class birdexplode_378 extends MovieClip { public function birdexplode_378(){ addFrameScript(0, frame1, 19, frame20); } function frame1(){ AudioManager.playSoundFromLibrary("SplatSound"); } function frame20(){ MovieClip(parent).dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 132
//blocktreeholereemus_177 (reemus3_fla.blocktreeholereemus_177) package reemus3_fla { import flash.display.*; public dynamic class blocktreeholereemus_177 extends MovieClip { public var reemusmouth:MovieClip; public function blocktreeholereemus_177(){ addFrameScript(14, frame15); } function frame15(){ stop(); } } }//package reemus3_fla
Section 133
//blocktreeholewithrock_196 (reemus3_fla.blocktreeholewithrock_196) package reemus3_fla { import flash.display.*; public dynamic class blocktreeholewithrock_196 extends MovieClip { public var reemusmouth:MovieClip; public function blocktreeholewithrock_196(){ addFrameScript(14, frame15); } function frame15(){ stop(); } } }//package reemus3_fla
Section 134
//bluefill_85 (reemus3_fla.bluefill_85) package reemus3_fla { import flash.display.*; public dynamic class bluefill_85 extends MovieClip { public function bluefill_85(){ addFrameScript(14, frame15); } function frame15(){ stop(); } } }//package reemus3_fla
Section 135
//bluefungusblowout_52 (reemus3_fla.bluefungusblowout_52) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class bluefungusblowout_52 extends MovieClip { public function bluefungusblowout_52(){ addFrameScript(1, frame2, 11, frame12); } function frame12(){ stop(); } function frame2(){ AudioManager.playSoundFromLibrary("WhooshSound"); } } }//package reemus3_fla
Section 136
//bluefunguspopup_54 (reemus3_fla.bluefunguspopup_54) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class bluefunguspopup_54 extends MovieClip { public function bluefunguspopup_54(){ addFrameScript(1, frame2, 15, frame16); } function frame16(){ if (currentFrame == 16){ MovieClip(parent).gotoAndStop(1); }; } function frame2(){ AudioManager.playSoundFromLibrary("Spring3Sound"); } } }//package reemus3_fla
Section 137
//blueliquid_91 (reemus3_fla.blueliquid_91) package reemus3_fla { import flash.display.*; public dynamic class blueliquid_91 extends MovieClip { public function blueliquid_91(){ addFrameScript(23, frame24); } function frame24(){ stop(); } } }//package reemus3_fla
Section 138
//bluetreeclimb_371 (reemus3_fla.bluetreeclimb_371) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class bluetreeclimb_371 extends MovieClip { public function bluetreeclimb_371(){ addFrameScript(69, frame70, 82, frame83); } function frame70(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame83(){ MovieClip(parent).dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 139
//boatguard_210 (reemus3_fla.boatguard_210) package reemus3_fla { import flash.display.*; public dynamic class boatguard_210 extends MovieClip { public function boatguard_210(){ addFrameScript(0, frame1, 88, frame89, 103, frame104, 124, frame125); } function frame89(){ gotoAndPlay("laugh"); } function frame1(){ stop(); } function frame104(){ gotoAndPlay("laugh"); } function frame125(){ gotoAndPlay("laugh"); } } }//package reemus3_fla
Section 140
//branchsplinters_30 (reemus3_fla.branchsplinters_30) package reemus3_fla { import flash.display.*; public dynamic class branchsplinters_30 extends MovieClip { public function branchsplinters_30(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package reemus3_fla
Section 141
//breakjuststick_193 (reemus3_fla.breakjuststick_193) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class breakjuststick_193 extends MovieClip { public var reemustalk:MovieClip; public var reemusmouth:MovieClip; public function breakjuststick_193(){ addFrameScript(2, frame3, 5, frame6, 30, frame31); } function frame3(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame6(){ AudioManager.playSoundFromLibrary("WoodFallSound"); } function frame31(){ stop(); } } }//package reemus3_fla
Section 142
//bubble_539 (reemus3_fla.bubble_539) package reemus3_fla { import flash.display.*; public dynamic class bubble_539 extends MovieClip { public var altTip:MovieClip; public var tip:MovieClip; } }//package reemus3_fla
Section 143
//bustaxe_185 (reemus3_fla.bustaxe_185) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class bustaxe_185 extends MovieClip { public var reemustalk:MovieClip; public var reemusmouth:MovieClip; public function bustaxe_185(){ addFrameScript(2, frame3, 5, frame6); } function frame3(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame6(){ AudioManager.playSoundFromLibrary("WoodFallSound"); } } }//package reemus3_fla
Section 144
//cabinet_267 (reemus3_fla.cabinet_267) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class cabinet_267 extends MovieClip { public function cabinet_267(){ addFrameScript(1, frame2); } function frame2(){ AudioManager.playSoundFromLibrary("DoorOpenSound"); } } }//package reemus3_fla
Section 145
//carriagehovers_40 (reemus3_fla.carriagehovers_40) package reemus3_fla { import flash.display.*; public dynamic class carriagehovers_40 extends MovieClip { public var seat:MovieClip; public var bee1:MovieClip; public var bee3:MovieClip; public var bee4:MovieClip; public var bee2:MovieClip; } }//package reemus3_fla
Section 146
//castrod_410 (reemus3_fla.castrod_410) package reemus3_fla { import flash.display.*; public dynamic class castrod_410 extends MovieClip { public var monstermouth3:MovieClip; } }//package reemus3_fla
Section 147
//CaveDoor_251 (reemus3_fla.CaveDoor_251) package reemus3_fla { import flash.display.*; public dynamic class CaveDoor_251 extends MovieClip { public var foreground:MovieClip; } }//package reemus3_fla
Section 148
//CAVEPANBG_257 (reemus3_fla.CAVEPANBG_257) package reemus3_fla { import flash.display.*; public dynamic class CAVEPANBG_257 extends MovieClip { public var pond:MovieClip; } }//package reemus3_fla
Section 149
//circle_247 (reemus3_fla.circle_247) package reemus3_fla { import flash.display.*; public dynamic class circle_247 extends MovieClip { public function circle_247(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 150
//CliffLeft_280 (reemus3_fla.CliffLeft_280) package reemus3_fla { import flash.display.*; public dynamic class CliffLeft_280 extends MovieClip { public var leftExit:MovieClip; } }//package reemus3_fla
Section 151
//climblog_369 (reemus3_fla.climblog_369) package reemus3_fla { import flash.events.*; import flash.display.*; public dynamic class climblog_369 extends MovieClip { public function climblog_369(){ addFrameScript(84, frame85); } function frame85(){ MovieClip(parent).dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 152
//climbtreespider_374 (reemus3_fla.climbtreespider_374) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class climbtreespider_374 extends MovieClip { public var bird:MovieClip; public function climbtreespider_374(){ addFrameScript(139, frame140, 171, frame172); } function frame172(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } function frame140(){ AudioManager.playSoundFromLibrary("GulpSound"); } } }//package reemus3_fla
Section 153
//colouredpipes2_339 (reemus3_fla.colouredpipes2_339) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class colouredpipes2_339 extends MovieClip { public function colouredpipes2_339(){ addFrameScript(0, frame1, 1, frame2, 9, frame10); } function frame10(){ stop(); } function frame1(){ stop(); } function frame2(){ AudioManager.playSoundFromLibrary("BubblingSound"); } } }//package reemus3_fla
Section 154
//colourpipes1_338 (reemus3_fla.colourpipes1_338) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class colourpipes1_338 extends MovieClip { public function colourpipes1_338(){ addFrameScript(0, frame1, 1, frame2, 9, frame10); } function frame10(){ stop(); } function frame1(){ stop(); } function frame2(){ AudioManager.playSoundFromLibrary("BubblingSound"); } } }//package reemus3_fla
Section 155
//drain_354 (reemus3_fla.drain_354) package reemus3_fla { import flash.display.*; public dynamic class drain_354 extends MovieClip { public var inner:MovieClip; } }//package reemus3_fla
Section 156
//drainblue_358 (reemus3_fla.drainblue_358) package reemus3_fla { import flash.display.*; public dynamic class drainblue_358 extends MovieClip { public function drainblue_358(){ addFrameScript(10, frame11); } function frame11(){ stop(); } } }//package reemus3_fla
Section 157
//draingreen_360 (reemus3_fla.draingreen_360) package reemus3_fla { import flash.display.*; public dynamic class draingreen_360 extends MovieClip { public function draingreen_360(){ addFrameScript(10, frame11); } function frame11(){ stop(); } } }//package reemus3_fla
Section 158
//drainorange_356 (reemus3_fla.drainorange_356) package reemus3_fla { import flash.display.*; public dynamic class drainorange_356 extends MovieClip { public function drainorange_356(){ addFrameScript(10, frame11); } function frame11(){ stop(); } } }//package reemus3_fla
Section 159
//drainpurple_359 (reemus3_fla.drainpurple_359) package reemus3_fla { import flash.display.*; public dynamic class drainpurple_359 extends MovieClip { public function drainpurple_359(){ addFrameScript(10, frame11); } function frame11(){ stop(); } } }//package reemus3_fla
Section 160
//drainred_357 (reemus3_fla.drainred_357) package reemus3_fla { import flash.display.*; public dynamic class drainred_357 extends MovieClip { public function drainred_357(){ addFrameScript(10, frame11); } function frame11(){ stop(); } } }//package reemus3_fla
Section 161
//drainyellow_355 (reemus3_fla.drainyellow_355) package reemus3_fla { import flash.display.*; public dynamic class drainyellow_355 extends MovieClip { public function drainyellow_355(){ addFrameScript(10, frame11); } function frame11(){ stop(); } } }//package reemus3_fla
Section 162
//dropaxe_186 (reemus3_fla.dropaxe_186) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class dropaxe_186 extends MovieClip { public var reemusmouth:MovieClip; public function dropaxe_186(){ addFrameScript(10, frame11, 134, frame135); } function frame11(){ AudioManager.playSoundFromLibrary("WoodFallSound"); } function frame135(){ stop(); } } }//package reemus3_fla
Section 163
//droppedrock_229 (reemus3_fla.droppedrock_229) package reemus3_fla { import flash.display.*; public dynamic class droppedrock_229 extends MovieClip { public function droppedrock_229(){ addFrameScript(17, frame18); } function frame18(){ stop(); } } }//package reemus3_fla
Section 164
//emergealienspider_373 (reemus3_fla.emergealienspider_373) package reemus3_fla { import flash.events.*; import flash.display.*; public dynamic class emergealienspider_373 extends MovieClip { public function emergealienspider_373(){ addFrameScript(27, frame28); } function frame28(){ MovieClip(parent).dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 165
//endliam_521 (reemus3_fla.endliam_521) package reemus3_fla { import flash.display.*; public dynamic class endliam_521 extends MovieClip { public var mouth:MovieClip; public function endliam_521(){ addFrameScript(27, frame28); } function frame28(){ stop(); } } }//package reemus3_fla
Section 166
//endreemus_520 (reemus3_fla.endreemus_520) package reemus3_fla { import flash.display.*; public dynamic class endreemus_520 extends MovieClip { public var spriteIn:MovieClip; public function endreemus_520(){ addFrameScript(36, frame37); } function frame37(){ stop(); } } }//package reemus3_fla
Section 167
//enterhole_388 (reemus3_fla.enterhole_388) package reemus3_fla { import flash.events.*; import flash.display.*; public dynamic class enterhole_388 extends MovieClip { public function enterhole_388(){ addFrameScript(31, frame32); } function frame32(){ MovieClip(parent).dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 168
//feedfuzzy_265 (reemus3_fla.feedfuzzy_265) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class feedfuzzy_265 extends MovieClip { public function feedfuzzy_265(){ addFrameScript(0, frame1, 41, frame42); } function frame1(){ AudioManager.playSoundFromLibrary("GrowlSound"); } function frame42(){ if (currentFrame == 42){ MovieClip(parent).gotoAndStop("sleep"); }; } } }//package reemus3_fla
Section 169
//fillliquid_131 (reemus3_fla.fillliquid_131) package reemus3_fla { import flash.display.*; import asfiles.setting.features.*; import com.relish.managers.*; public dynamic class fillliquid_131 extends MovieClip { public var vase:Vase; public var mouth:MovieClip; public function fillliquid_131(){ addFrameScript(9, frame10); } function frame10(){ AudioManager.playSoundFromLibrary("PourSound2"); } } }//package reemus3_fla
Section 170
//firepit_420 (reemus3_fla.firepit_420) package reemus3_fla { import flash.display.*; public dynamic class firepit_420 extends MovieClip { public function firepit_420(){ addFrameScript(1, frame2); } function frame2(){ } } }//package reemus3_fla
Section 171
//fishdie_424 (reemus3_fla.fishdie_424) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class fishdie_424 extends MovieClip { public function fishdie_424(){ addFrameScript(4, frame5, 25, frame26); } function frame26(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } function frame5(){ AudioManager.playSoundFromLibrary("BubblingSound"); } } }//package reemus3_fla
Section 172
//fishitmonster_417 (reemus3_fla.fishitmonster_417) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class fishitmonster_417 extends MovieClip { public var monstermouth3:MovieClip; public function fishitmonster_417(){ addFrameScript(0, frame1, 16, frame17, 22, frame23, 28, frame29, 41, frame42, 57, frame58); } function frame1(){ AudioManager.playSoundFromLibrary("Splash1Sound"); } function frame17(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame29(){ AudioManager.playSoundFromLibrary("Splash2Sound"); } function frame23(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame42(){ AudioManager.playSoundFromLibrary("Splash1Sound"); } function frame58(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 173
//fishitmonster2_418 (reemus3_fla.fishitmonster2_418) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class fishitmonster2_418 extends MovieClip { public var monstermouth3:MovieClip; public function fishitmonster2_418(){ addFrameScript(0, frame1, 16, frame17, 22, frame23, 28, frame29, 39, frame40, 62, frame63); } function frame1(){ AudioManager.playSoundFromLibrary("Splash1Sound"); } function frame17(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame29(){ AudioManager.playSoundFromLibrary("Splash2Sound"); } function frame23(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame40(){ AudioManager.playSoundFromLibrary("Splash1Sound"); } function frame63(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 174
//fishy_422 (reemus3_fla.fishy_422) package reemus3_fla { import flash.display.*; public dynamic class fishy_422 extends MovieClip { public function fishy_422(){ addFrameScript(95, frame96); } function frame96(){ if (MovieClip(parent).currentFrame == 2){ MovieClip(parent).gotoAndStop(3); }; } } }//package reemus3_fla
Section 175
//flagfall_308 (reemus3_fla.flagfall_308) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class flagfall_308 extends MovieClip { public function flagfall_308(){ addFrameScript(0, frame1, 2, frame3, 10, frame11); } function frame3(){ AudioManager.playSoundFromLibrary("FlutterSound"); } function frame1(){ stop(); } function frame11(){ stop(); } } }//package reemus3_fla
Section 176
//flagstencil_305 (reemus3_fla.flagstencil_305) package reemus3_fla { import flash.display.*; public dynamic class flagstencil_305 extends MovieClip { public var flag:MovieClip; public var overSplatter:MovieClip; public var splatter:MovieClip; public var circle:MovieClip; } }//package reemus3_fla
Section 177
//flyfruittree_405 (reemus3_fla.flyfruittree_405) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class flyfruittree_405 extends MovieClip { public function flyfruittree_405(){ addFrameScript(18, frame19, 30, frame31, 39, frame40, 69, frame70); } function frame70(){ stop(); } function frame19(){ AudioManager.playSoundFromLibrary("WhipSound"); } function frame31(){ AudioManager.playSoundFromLibrary("SquirtSound"); } function frame40(){ AudioManager.playSoundFromLibrary("FlySound"); } } }//package reemus3_fla
Section 178
//flyintomiddle_381 (reemus3_fla.flyintomiddle_381) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class flyintomiddle_381 extends MovieClip { public function flyintomiddle_381(){ addFrameScript(0, frame1, 24, frame25); } function frame1(){ AudioManager.playSoundFromLibrary("FlappingSound"); } function frame25(){ MovieClip(parent).dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 179
//flytobush_386 (reemus3_fla.flytobush_386) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class flytobush_386 extends MovieClip { public function flytobush_386(){ addFrameScript(0, frame1, 29, frame30, 78, frame79, 176, frame177); } function frame79(){ AudioManager.playSoundFromLibrary("SplatSound"); } function frame177(){ MovieClip(parent).dispatchEvent(new Event("endOfClip")); stop(); } function frame1(){ AudioManager.playSoundFromLibrary("FlappingSound"); } function frame30(){ AudioManager.playSoundFromLibrary("SnakeAttackSound"); } } }//package reemus3_fla
Section 180
//flytogopher_384 (reemus3_fla.flytogopher_384) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class flytogopher_384 extends MovieClip { public function flytogopher_384(){ addFrameScript(0, frame1, 44, frame45, 125, frame126, 178, frame179); } function frame1(){ AudioManager.playSoundFromLibrary("FlappingSound"); } function frame179(){ MovieClip(parent).dispatchEvent(new Event("endOfClip")); stop(); } function frame126(){ AudioManager.playSoundFromLibrary("FlappingSound"); } function frame45(){ AudioManager.playSoundFromLibrary("HissSound"); } } }//package reemus3_fla
Section 181
//frog2_428 (reemus3_fla.frog2_428) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class frog2_428 extends MovieClip { public function frog2_428(){ addFrameScript(1, frame2, 30, frame31, 45, frame46, 46, frame47, 53, frame54, 70, frame71); } function frame71(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } function frame2(){ AudioManager.playSoundFromLibrary("CroakSound"); } function frame31(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame46(){ AudioManager.playSoundFromLibrary("CroakSound"); } function frame47(){ AudioManager.playSoundFromLibrary("WhipSound"); } function frame54(){ AudioManager.playSoundFromLibrary("GulpSound"); } } }//package reemus3_fla
Section 182
//frogbeastjumpup_404 (reemus3_fla.frogbeastjumpup_404) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class frogbeastjumpup_404 extends MovieClip { public function frogbeastjumpup_404(){ addFrameScript(1, frame2, 29, frame30, 35, frame36, 54, frame55, 60, frame61, 90, frame91, 116, frame117, 124, frame125, 127, frame128, 140, frame141, 142, frame143, 145, frame146, 153, frame154, 155, frame156, 158, frame159, 165, frame166); } function frame143(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame159(){ AudioManager.playSoundFromLibrary("Splash2Sound"); } function frame154(){ dispatchEvent(new Event("endOfClip")); stop(); } function frame166(){ dispatchEvent(new Event("endOfClip")); stop(); } function frame156(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame91(){ dispatchEvent(new Event("endOfClip")); stop(); } function frame2(){ AudioManager.playSoundFromLibrary("Splash2Sound"); } function frame30(){ dispatchEvent(new Event("endOfClip")); stop(); } function frame36(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame117(){ dispatchEvent(new Event("endOfClip")); stop(); } function frame125(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame128(){ AudioManager.playSoundFromLibrary("Splash2Sound"); } function frame55(){ dispatchEvent(new Event("endOfClip")); stop(); } function frame141(){ dispatchEvent(new Event("endOfClip")); stop(); } function frame146(){ AudioManager.playSoundFromLibrary("Splash2Sound"); } function frame61(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } } }//package reemus3_fla
Section 183
//froggylookeyes_427 (reemus3_fla.froggylookeyes_427) package reemus3_fla { import flash.display.*; public dynamic class froggylookeyes_427 extends MovieClip { public function froggylookeyes_427(){ addFrameScript(53, frame54); } function frame54(){ stop(); } } }//package reemus3_fla
Section 184
//fruitfall_408 (reemus3_fla.fruitfall_408) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class fruitfall_408 extends MovieClip { public function fruitfall_408(){ addFrameScript(11, frame12, 19, frame20, 26, frame27, 34, frame35, 42, frame43, 49, frame50); } function frame12(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame20(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame27(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame35(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame43(){ AudioManager.playSoundFromLibrary("Splash1Sound"); } function frame50(){ stop(); } } }//package reemus3_fla
Section 185
//fuzzywuzzy_260 (reemus3_fla.fuzzywuzzy_260) package reemus3_fla { import flash.display.*; public dynamic class fuzzywuzzy_260 extends MovieClip { public var spriteIn:MovieClip; } }//package reemus3_fla
Section 186
//getwax_111 (reemus3_fla.getwax_111) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class getwax_111 extends MovieClip { public function getwax_111(){ addFrameScript(6, frame7, 7, frame8); } function frame7(){ stop(); } function frame8(){ AudioManager.playSoundFromLibrary("SquirtSound"); } } }//package reemus3_fla
Section 187
//giantexplosion_528 (reemus3_fla.giantexplosion_528) package reemus3_fla { import flash.display.*; public dynamic class giantexplosion_528 extends MovieClip { public function giantexplosion_528(){ addFrameScript(37, frame38); } function frame38(){ stop(); } } }//package reemus3_fla
Section 188
//glueaxe_163 (reemus3_fla.glueaxe_163) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class glueaxe_163 extends MovieClip { public var reemusmouth:MovieClip; public function glueaxe_163(){ addFrameScript(12, frame13); } function frame13(){ AudioManager.playSoundFromLibrary("Squirt2Sound"); } } }//package reemus3_fla
Section 189
//gluestickbreak_194 (reemus3_fla.gluestickbreak_194) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class gluestickbreak_194 extends MovieClip { public var reemustalk:MovieClip; public var reemusmouth:MovieClip; public function gluestickbreak_194(){ addFrameScript(2, frame3, 5, frame6); } function frame3(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame6(){ AudioManager.playSoundFromLibrary("WoodFallSound"); } } }//package reemus3_fla
Section 190
//gluestickhittree_195 (reemus3_fla.gluestickhittree_195) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class gluestickhittree_195 extends MovieClip { public var reemustalk:MovieClip; public var reemusmouth:MovieClip; public function gluestickhittree_195(){ addFrameScript(2, frame3, 37, frame38); } function frame3(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame38(){ stop(); } } }//package reemus3_fla
Section 191
//grabflag_104 (reemus3_fla.grabflag_104) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class grabflag_104 extends MovieClip { public function grabflag_104(){ addFrameScript(12, frame13); } function frame13(){ AudioManager.playSoundFromLibrary("RipSound"); } } }//package reemus3_fla
Section 192
//grabgelatin_127 (reemus3_fla.grabgelatin_127) package reemus3_fla { import flash.display.*; public dynamic class grabgelatin_127 extends MovieClip { public var mouth:MovieClip; } }//package reemus3_fla
Section 193
//grabnutliam_117 (reemus3_fla.grabnutliam_117) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class grabnutliam_117 extends MovieClip { public function grabnutliam_117(){ addFrameScript(8, frame9); } function frame9(){ AudioManager.playSoundFromLibrary("PopSound"); } } }//package reemus3_fla
Section 194
//grabsquirrel_178 (reemus3_fla.grabsquirrel_178) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class grabsquirrel_178 extends MovieClip { public var reemusmouth:MovieClip; public function grabsquirrel_178(){ addFrameScript(14, frame15, 19, frame20); } function frame15(){ stop(); } function frame20(){ AudioManager.playSoundFromLibrary("SquirrelDistressSound"); } } }//package reemus3_fla
Section 195
//grabvineliam_125 (reemus3_fla.grabvineliam_125) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class grabvineliam_125 extends MovieClip { public function grabvineliam_125(){ addFrameScript(12, frame13); } function frame13(){ AudioManager.playSoundFromLibrary("FlutterSound"); } } }//package reemus3_fla
Section 196
//greenfill_87 (reemus3_fla.greenfill_87) package reemus3_fla { import flash.display.*; public dynamic class greenfill_87 extends MovieClip { public function greenfill_87(){ addFrameScript(14, frame15); } function frame15(){ stop(); } } }//package reemus3_fla
Section 197
//greenliquid_93 (reemus3_fla.greenliquid_93) package reemus3_fla { import flash.display.*; public dynamic class greenliquid_93 extends MovieClip { public function greenliquid_93(){ addFrameScript(23, frame24); } function frame24(){ stop(); } } }//package reemus3_fla
Section 198
//HANDROLLOVER_175 (reemus3_fla.HANDROLLOVER_175) package reemus3_fla { import flash.display.*; public dynamic class HANDROLLOVER_175 extends MovieClip { public function HANDROLLOVER_175(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 199
//heshufflesoff_481 (reemus3_fla.heshufflesoff_481) package reemus3_fla { import flash.display.*; public dynamic class heshufflesoff_481 extends MovieClip { public function heshufflesoff_481(){ addFrameScript(73, frame74); } function frame74(){ stop(); } } }//package reemus3_fla
Section 200
//introbox_440 (reemus3_fla.introbox_440) package reemus3_fla { import flash.display.*; public dynamic class introbox_440 extends MovieClip { public function introbox_440(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 201
//jellocabinetdooropen_268 (reemus3_fla.jellocabinetdooropen_268) package reemus3_fla { import flash.display.*; public dynamic class jellocabinetdooropen_268 extends MovieClip { public function jellocabinetdooropen_268(){ addFrameScript(7, frame8); } function frame8(){ stop(); } } }//package reemus3_fla
Section 202
//jumpbug_249 (reemus3_fla.jumpbug_249) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class jumpbug_249 extends MovieClip { public function jumpbug_249(){ addFrameScript(7, frame8, 16, frame17, 56, frame57); } function frame8(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame17(){ AudioManager.playSoundFromLibrary("SpitSound"); } function frame57(){ if (currentFrame == 57){ MovieClip(parent).gotoAndStop(1); }; } } }//package reemus3_fla
Section 203
//jumplandliam_136 (reemus3_fla.jumplandliam_136) package reemus3_fla { import flash.display.*; public dynamic class jumplandliam_136 extends MovieClip { public var mouth:MovieClip; public function jumplandliam_136(){ addFrameScript(12, frame13); } function frame13(){ stop(); } } }//package reemus3_fla
Section 204
//jumponjello_120 (reemus3_fla.jumponjello_120) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class jumponjello_120 extends MovieClip { public function jumponjello_120(){ addFrameScript(8, frame9, 26, frame27, 49, frame50, 52, frame53, 61, frame62, 65, frame66, 81, frame82, 85, frame86, 98, frame99, 102, frame103, 106, frame107, 113, frame114, 116, frame117, 127, frame128, 132, frame133, 143, frame144, 146, frame147, 155, frame156, 158, frame159, 169, frame170, 173, frame174); } function frame156(){ stop(); dispatchEvent(new Event("liamProgress")); } function frame144(){ stop(); dispatchEvent(new Event("liamProgress")); } function frame159(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame86(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame82(){ stop(); dispatchEvent(new Event("liamProgress")); } function frame170(){ dispatchEvent(new Event("liamProgress")); } function frame174(){ stop(); } function frame107(){ AudioManager.playSoundFromLibrary("CrumblingSound"); } function frame103(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame9(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame114(){ stop(); dispatchEvent(new Event("liamProgress")); } function frame27(){ AudioManager.playSoundFromLibrary("Spring2Sound"); } function frame117(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame99(){ stop(); dispatchEvent(new Event("liamProgress")); } function frame128(){ stop(); dispatchEvent(new Event("liamProgress")); } function frame50(){ stop(); dispatchEvent(new Event("liamProgress")); } function frame53(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame133(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame62(){ stop(); dispatchEvent(new Event("liamProgress")); } function frame66(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame147(){ AudioManager.playSoundFromLibrary("SwingSound"); } } }//package reemus3_fla
Section 205
//liamattemptsrock_119 (reemus3_fla.liamattemptsrock_119) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liamattemptsrock_119 extends MovieClip { public function liamattemptsrock_119(){ addFrameScript(19, frame20); } function frame20(){ AudioManager.playSoundFromLibrary("LightThudSound"); } } }//package reemus3_fla
Section 206
//liambeebody_73 (reemus3_fla.liambeebody_73) package reemus3_fla { import flash.display.*; public dynamic class liambeebody_73 extends MovieClip { public function liambeebody_73(){ addFrameScript(0, frame1, 4, frame5, 9, frame10, 14, frame15, 19, frame20); } function frame10(){ stop(); } function frame15(){ stop(); } function frame1(){ stop(); } function frame5(){ stop(); } function frame20(){ stop(); } } }//package reemus3_fla
Section 207
//liambeeintro_253 (reemus3_fla.liambeeintro_253) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class liambeeintro_253 extends MovieClip { public function liambeeintro_253(){ addFrameScript(30, frame31, 35, frame36, 50, frame51); } function frame36(){ AudioManager.playSoundFromLibrary("ThudLandSound"); } function frame31(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame51(){ dispatchEvent(new Event("carriageEvent")); } } }//package reemus3_fla
Section 208
//liambounce_97 (reemus3_fla.liambounce_97) package reemus3_fla { import flash.display.*; public dynamic class liambounce_97 extends MovieClip { public var mouth:MovieClip; } }//package reemus3_fla
Section 209
//liambuttonpress2_129 (reemus3_fla.liambuttonpress2_129) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liambuttonpress2_129 extends MovieClip { public function liambuttonpress2_129(){ addFrameScript(8, frame9, 33, frame34); } function frame9(){ AudioManager.playSoundFromLibrary("ClickSound"); } function frame34(){ stop(); } } }//package reemus3_fla
Section 210
//liamfumblesquirrel_118 (reemus3_fla.liamfumblesquirrel_118) package reemus3_fla { import flash.display.*; public dynamic class liamfumblesquirrel_118 extends MovieClip { public function liamfumblesquirrel_118(){ addFrameScript(10, frame11, 40, frame41); } function frame11(){ stop(); } function frame41(){ stop(); } } }//package reemus3_fla
Section 211
//liamgetkey_110 (reemus3_fla.liamgetkey_110) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liamgetkey_110 extends MovieClip { public function liamgetkey_110(){ addFrameScript(5, frame6); } function frame6(){ AudioManager.playSoundFromLibrary("JingleSound"); } } }//package reemus3_fla
Section 212
//liamgetseal_115 (reemus3_fla.liamgetseal_115) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liamgetseal_115 extends MovieClip { public function liamgetseal_115(){ addFrameScript(10, frame11); } function frame11(){ AudioManager.playSoundFromLibrary("SquishSound"); } } }//package reemus3_fla
Section 213
//liamgrabflag2_109 (reemus3_fla.liamgrabflag2_109) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liamgrabflag2_109 extends MovieClip { public function liamgrabflag2_109(){ addFrameScript(9, frame10); } function frame10(){ AudioManager.playSoundFromLibrary("FlutterSound"); } } }//package reemus3_fla
Section 214
//liamgrabtreebark_112 (reemus3_fla.liamgrabtreebark_112) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liamgrabtreebark_112 extends MovieClip { public function liamgrabtreebark_112(){ addFrameScript(7, frame8); } function frame8(){ AudioManager.playSoundFromLibrary("RipSound"); } } }//package reemus3_fla
Section 215
//liamgrabvase_133 (reemus3_fla.liamgrabvase_133) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liamgrabvase_133 extends MovieClip { public var mouth:MovieClip; public function liamgrabvase_133(){ addFrameScript(9, frame10); } function frame10(){ AudioManager.playSoundFromLibrary("Splash1Sound"); } } }//package reemus3_fla
Section 216
//liamhidingbehidncave_491 (reemus3_fla.liamhidingbehidncave_491) package reemus3_fla { import flash.display.*; public dynamic class liamhidingbehidncave_491 extends MovieClip { public var spriteIn:MovieClip; public function liamhidingbehidncave_491(){ addFrameScript(20, frame21); } function frame21(){ stop(); } } }//package reemus3_fla
Section 217
//liamholding_96 (reemus3_fla.liamholding_96) package reemus3_fla { import flash.display.*; public dynamic class liamholding_96 extends MovieClip { public var mouth:MovieClip; } }//package reemus3_fla
Section 218
//liamholdstuffbounce_98 (reemus3_fla.liamholdstuffbounce_98) package reemus3_fla { import flash.display.*; public dynamic class liamholdstuffbounce_98 extends MovieClip { public var mouth:MovieClip; } }//package reemus3_fla
Section 219
//liamjumpin_122 (reemus3_fla.liamjumpin_122) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liamjumpin_122 extends MovieClip { public function liamjumpin_122(){ addFrameScript(8, frame9, 27, frame28, 107, frame108); } function frame9(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame108(){ stop(); } function frame28(){ AudioManager.playSoundFromLibrary("Splash2Sound"); } } }//package reemus3_fla
Section 220
//liammouth_38 (reemus3_fla.liammouth_38) package reemus3_fla { import flash.display.*; public dynamic class liammouth_38 extends MovieClip { public function liammouth_38(){ addFrameScript(0, frame1, 61, frame62); } function frame1(){ stop(); } function frame62(){ gotoAndPlay("talk"); } } }//package reemus3_fla
Section 221
//liampaints_108 (reemus3_fla.liampaints_108) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liampaints_108 extends MovieClip { public function liampaints_108(){ addFrameScript(0, frame1, 23, frame24, 47, frame48); } function frame1(){ AudioManager.playSoundFromLibrary("MuddyDropSound"); } function frame24(){ AudioManager.playSoundFromLibrary("MuddyDropSound"); } function frame48(){ AudioManager.playSoundFromLibrary("MuddyDropSound"); } } }//package reemus3_fla
Section 222
//liampickflower_105 (reemus3_fla.liampickflower_105) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liampickflower_105 extends MovieClip { public function liampickflower_105(){ addFrameScript(16, frame17); } function frame17(){ AudioManager.playSoundFromLibrary("CartoonBoinkSound"); } } }//package reemus3_fla
Section 223
//liamputsnut_116 (reemus3_fla.liamputsnut_116) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class liamputsnut_116 extends MovieClip { public function liamputsnut_116(){ addFrameScript(9, frame10); } function frame10(){ AudioManager.playSoundFromLibrary("SwingSound"); } } }//package reemus3_fla
Section 224
//liamsittinginshroom_36 (reemus3_fla.liamsittinginshroom_36) package reemus3_fla { import flash.display.*; public dynamic class liamsittinginshroom_36 extends MovieClip { public function liamsittinginshroom_36(){ addFrameScript(15, frame16); } function frame16(){ stop(); } } }//package reemus3_fla
Section 225
//liamtreepull_221 (reemus3_fla.liamtreepull_221) package reemus3_fla { import flash.events.*; import flash.display.*; public dynamic class liamtreepull_221 extends MovieClip { public function liamtreepull_221(){ addFrameScript(18, frame19); } function frame19(){ stop(); MovieClip(parent).dispatchEvent(new Event("returnLiam")); } } }//package reemus3_fla
Section 226
//liamuntiebug_41 (reemus3_fla.liamuntiebug_41) package reemus3_fla { import flash.events.*; import flash.display.*; public dynamic class liamuntiebug_41 extends MovieClip { public function liamuntiebug_41(){ addFrameScript(96, frame97); } function frame97(){ stop(); dispatchEvent(new Event("roachSendoff")); } } }//package reemus3_fla
Section 227
//lifestone_245 (reemus3_fla.lifestone_245) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class lifestone_245 extends MovieClip { public var peg1:MovieClip; public var peg2:MovieClip; public function lifestone_245(){ addFrameScript(1, frame2); } function frame2(){ AudioManager.playSoundFromLibrary("LightThudSound"); } } }//package reemus3_fla
Section 228
//loadED_5 (reemus3_fla.loadED_5) package reemus3_fla { import flash.display.*; public dynamic class loadED_5 extends MovieClip { public function loadED_5(){ addFrameScript(39, frame40); } function frame40(){ stop(); } } }//package reemus3_fla
Section 229
//lockedpopup_525 (reemus3_fla.lockedpopup_525) package reemus3_fla { import flash.display.*; public dynamic class lockedpopup_525 extends MovieClip { public function lockedpopup_525(){ addFrameScript(6, frame7); } function frame7(){ stop(); } } }//package reemus3_fla
Section 230
//mapunfold_502 (reemus3_fla.mapunfold_502) package reemus3_fla { import flash.display.*; import asfiles.*; import asfiles.setting.*; public dynamic class mapunfold_502 extends MovieClip { public var credits:Credits; public function mapunfold_502(){ addFrameScript(1, frame2, 28, frame29); } function frame29(){ stop(); } function frame2(){ Setting.playMusic("WrapMusic"); } } }//package reemus3_fla
Section 231
//monsterbattle_291 (reemus3_fla.monsterbattle_291) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class monsterbattle_291 extends MovieClip { public function monsterbattle_291(){ addFrameScript(8, frame9, 23, frame24); } function frame24(){ if (root){ AudioManager.playSoundFromLibrary("SmackSound"); }; } function frame9(){ if (root){ AudioManager.playSoundFromLibrary("SmackSound"); }; } } }//package reemus3_fla
Section 232
//monstermouth_415 (reemus3_fla.monstermouth_415) package reemus3_fla { import flash.display.*; public dynamic class monstermouth_415 extends MovieClip { public function monstermouth_415(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 233
//monstermouth2_414 (reemus3_fla.monstermouth2_414) package reemus3_fla { import flash.display.*; public dynamic class monstermouth2_414 extends MovieClip { public function monstermouth2_414(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 234
//monstermouth3_412 (reemus3_fla.monstermouth3_412) package reemus3_fla { import flash.display.*; public dynamic class monstermouth3_412 extends MovieClip { public function monstermouth3_412(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 235
//monstermouth4_411 (reemus3_fla.monstermouth4_411) package reemus3_fla { import flash.display.*; public dynamic class monstermouth4_411 extends MovieClip { public function monstermouth4_411(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 236
//mouthhand_495 (reemus3_fla.mouthhand_495) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class mouthhand_495 extends MovieClip { public function mouthhand_495(){ addFrameScript(6, frame7); } function frame7(){ AudioManager.playSoundFromLibrary("SnarlSound"); } } }//package reemus3_fla
Section 237
//mushroom_44 (reemus3_fla.mushroom_44) package reemus3_fla { import flash.display.*; public dynamic class mushroom_44 extends MovieClip { public var cap:MovieClip; } }//package reemus3_fla
Section 238
//NewgroundsAPI_Ad_Unit_12 (reemus3_fla.NewgroundsAPI_Ad_Unit_12) package reemus3_fla { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.geom.*; import flash.filters.*; import com.newgrounds.*; import flash.net.*; import flash.media.*; import flash.system.*; import flash.text.*; import flash.errors.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.printing.*; import flash.ui.*; import flash.xml.*; public dynamic class NewgroundsAPI_Ad_Unit_12 extends MovieClip { public var background:MovieClip; public function NewgroundsAPI_Ad_Unit_12(){ addFrameScript(0, frame1); } public function attachAd(_arg1:Object, _arg2:Object):void{ NewgroundsAPI.attachFlashAd(this); } function frame1(){ NewgroundsAPI.addEventListener(NewgroundsAPI.events.ADS_APPROVED, attachAd); background.visible = false; } } }//package reemus3_fla
Section 239
//NewgroundsAPI_Connector_14 (reemus3_fla.NewgroundsAPI_Connector_14) package reemus3_fla { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.geom.*; import flash.filters.*; import com.newgrounds.*; import flash.net.*; import flash.media.*; import flash.system.*; import flash.text.*; import flash.errors.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.printing.*; import flash.ui.*; import flash.xml.*; public dynamic class NewgroundsAPI_Connector_14 extends MovieClip { public var closeButton:SimpleButton; public function NewgroundsAPI_Connector_14(){ addFrameScript(0, frame1); } public function checkConnection(_arg1:Object, _arg2:Object):void{ if (!_arg1.success){ visible = true; gotoAndStop(3); }; } public function closeHandler(_arg1:MouseEvent):void{ visible = false; } function frame1(){ visible = false; stop(); } public function initialize(_arg1:Object):void{ NewgroundsAPI.setMovieVersion(_arg1.movie_version); NewgroundsAPI.connectMovie(root, _arg1.movie_id.toString(), _arg1.enc_key, _arg1.debug_mode); closeButton.addEventListener(MouseEvent.CLICK, closeHandler); if (((NewgroundsAPI.isNewgrounds()) || (_arg1.debug_mode))){ NewgroundsAPI.addEventListener(NewgroundsAPI.events.MOVIE_CONNECTED, checkConnection); if (((!(NewgroundsAPI.hasUserSession())) && (!(_arg1.debug_mode)))){ visible = true; gotoAndStop(2); }; }; NewgroundsAPI.loadMedals(); } } }//package reemus3_fla
Section 240
//NewgroundsAPI_Medal_Popup_16 (reemus3_fla.NewgroundsAPI_Medal_Popup_16) package reemus3_fla { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.geom.*; import flash.filters.*; import com.newgrounds.*; import flash.net.*; import flash.media.*; import flash.system.*; import com.adobe.utils.*; import flash.text.*; import flash.errors.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.printing.*; import flash.ui.*; import flash.xml.*; public dynamic class NewgroundsAPI_Medal_Popup_16 extends MovieClip { public var medalClassName:String; public var medalValueText:TextField; public var pop_delay:Timer; public var badChars:String; public var medal_value:String; public var myBitmapData:BitmapData; public var i:uint; public var medalNameText:TextField; public var bitmapClass:Class; public var medal_icon:MovieClip; public var medal_name:String; public function NewgroundsAPI_Medal_Popup_16(){ addFrameScript(0, frame1, 9, frame10); } public function unlockMedal(_arg1:String):void{ var _local2:Array; var _local3:*; var _local4:String; pop_delay.stop(); _local2 = NewgroundsAPI.getMedals(); _local3 = null; for (_local4 in _local2) { if (_local2[_local4].medal_name == _arg1){ _local3 = _local2[_local4]; medal_name = _local3.medal_name; medal_value = (_local3.medal_value + "pts"); NewgroundsAPI.unlockMedal(medal_name); pop_delay.start(); visible = true; gotoAndPlay(2); break; }; }; } function frame10(){ medalClassName = medal_name; badChars = "~`!@#$%^&*()-+=[{]}|;:'\"\\,<.>/? "; i = 0; while (i < badChars.length) { medalClassName = StringUtil.remove(medalClassName, badChars.charAt(i)); i++; }; try { bitmapClass = Class(getDefinitionByName(medalClassName)); } catch(e:Error) { trace((("Couldn't find medal image with class name " + medalClassName) + "!")); }; if (bitmapClass){ myBitmapData = new bitmapClass(0, 0); medal_icon.addChild(new Bitmap(myBitmapData)); }; medalNameText.text = medal_name; medalValueText.text = medal_value; stop(); } function frame1(){ pop_delay = new Timer(3000, 1); pop_delay.addEventListener(TimerEvent.TIMER, endDelay); medal_name = "?????"; medal_value = "???"; visible = false; stop(); } public function endDelay(_arg1:TimerEvent):void{ if (medal_icon.getChildAt(0)){ medal_icon.removeChildAt(0); }; gotoAndPlay(10); pop_delay.stop(); } } }//package reemus3_fla
Section 241
//NG_AD_OBJECT_WITH_PRELOADER_1 (reemus3_fla.NG_AD_OBJECT_WITH_PRELOADER_1) package reemus3_fla { import flash.display.*; public dynamic class NG_AD_OBJECT_WITH_PRELOADER_1 extends MovieClip { public var NG_Button:SimpleButton; } }//package reemus3_fla
Section 242
//nut_78 (reemus3_fla.nut_78) package reemus3_fla { import flash.display.*; public dynamic class nut_78 extends MovieClip { public function nut_78(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 243
//orangefill_79 (reemus3_fla.orangefill_79) package reemus3_fla { import flash.display.*; public dynamic class orangefill_79 extends MovieClip { public function orangefill_79(){ addFrameScript(14, frame15); } function frame15(){ stop(); } } }//package reemus3_fla
Section 244
//orangeliquid_89 (reemus3_fla.orangeliquid_89) package reemus3_fla { import flash.display.*; public dynamic class orangeliquid_89 extends MovieClip { public function orangeliquid_89(){ addFrameScript(23, frame24); } function frame24(){ stop(); } } }//package reemus3_fla
Section 245
//paintappear_307 (reemus3_fla.paintappear_307) package reemus3_fla { import flash.display.*; public dynamic class paintappear_307 extends MovieClip { public function paintappear_307(){ addFrameScript(13, frame14); } function frame14(){ stop(); } } }//package reemus3_fla
Section 246
//paintsplat_306 (reemus3_fla.paintsplat_306) package reemus3_fla { import flash.display.*; public dynamic class paintsplat_306 extends MovieClip { public function paintsplat_306(){ addFrameScript(9, frame10); } function frame10(){ stop(); } } }//package reemus3_fla
Section 247
//papericonz_174 (reemus3_fla.papericonz_174) package reemus3_fla { import flash.display.*; public dynamic class papericonz_174 extends MovieClip { public function papericonz_174(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 248
//parachute_181 (reemus3_fla.parachute_181) package reemus3_fla { import flash.display.*; public dynamic class parachute_181 extends MovieClip { public var reemusmouth:MovieClip; public function parachute_181(){ addFrameScript(166, frame167); } function frame167(){ stop(); } } }//package reemus3_fla
Section 249
//parachutyreemusandliam_182 (reemus3_fla.parachutyreemusandliam_182) package reemus3_fla { import flash.display.*; public dynamic class parachutyreemusandliam_182 extends MovieClip { public var reemusmouth:MovieClip; } }//package reemus3_fla
Section 250
//pathpopuup2_523 (reemus3_fla.pathpopuup2_523) package reemus3_fla { import flash.display.*; public dynamic class pathpopuup2_523 extends MovieClip { public function pathpopuup2_523(){ addFrameScript(30, frame31); } function frame31(){ stop(); } } }//package reemus3_fla
Section 251
//peg_246 (reemus3_fla.peg_246) package reemus3_fla { import flash.display.*; public dynamic class peg_246 extends MovieClip { public var circle:MovieClip; } }//package reemus3_fla
Section 252
//perribeatsreemus_290 (reemus3_fla.perribeatsreemus_290) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class perribeatsreemus_290 extends MovieClip { public function perribeatsreemus_290(){ addFrameScript(1, frame2, 9, frame10, 17, frame18, 25, frame26, 31, frame32); } function frame10(){ if (root){ AudioManager.playSoundFromLibrary("CartoonBonkSound"); }; } function frame18(){ if (root){ AudioManager.playSoundFromLibrary("CartoonBonkSound"); }; } function frame26(){ if (root){ AudioManager.playSoundFromLibrary("CartoonBonkSound"); }; } function frame2(){ if (root){ AudioManager.playSoundFromLibrary("SwingSound"); }; } function frame32(){ if (root){ AudioManager.playSoundFromLibrary("SwingSound"); }; } } }//package reemus3_fla
Section 253
//pickuprock2_191 (reemus3_fla.pickuprock2_191) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class pickuprock2_191 extends MovieClip { public var reemusmouth:MovieClip; public function pickuprock2_191(){ addFrameScript(16, frame17); } function frame17(){ AudioManager.playSoundFromLibrary("LightThudSound"); } } }//package reemus3_fla
Section 254
//pickuprockreemus_183 (reemus3_fla.pickuprockreemus_183) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class pickuprockreemus_183 extends MovieClip { public var reemusmouth:MovieClip; public function pickuprockreemus_183(){ addFrameScript(16, frame17); } function frame17(){ AudioManager.playSoundFromLibrary("LightThudSound"); } } }//package reemus3_fla
Section 255
//playpopup_526 (reemus3_fla.playpopup_526) package reemus3_fla { import flash.display.*; public dynamic class playpopup_526 extends MovieClip { public function playpopup_526(){ addFrameScript(28, frame29); } function frame29(){ stop(); } } }//package reemus3_fla
Section 256
//playpopup2_527 (reemus3_fla.playpopup2_527) package reemus3_fla { import flash.display.*; public dynamic class playpopup2_527 extends MovieClip { public function playpopup2_527(){ addFrameScript(6, frame7); } function frame7(){ stop(); } } }//package reemus3_fla
Section 257
//pour_347 (reemus3_fla.pour_347) package reemus3_fla { import flash.display.*; public dynamic class pour_347 extends MovieClip { public var inner:MovieClip; } }//package reemus3_fla
Section 258
//pourbackin_134 (reemus3_fla.pourbackin_134) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class pourbackin_134 extends MovieClip { public var mouth:MovieClip; public function pourbackin_134(){ addFrameScript(5, frame6); } function frame6(){ AudioManager.playSoundFromLibrary("FillSound"); } } }//package reemus3_fla
Section 259
//pourblue_351 (reemus3_fla.pourblue_351) package reemus3_fla { import flash.display.*; public dynamic class pourblue_351 extends MovieClip { public function pourblue_351(){ addFrameScript(29, frame30); } function frame30(){ stop(); } } }//package reemus3_fla
Section 260
//pourgreen_353 (reemus3_fla.pourgreen_353) package reemus3_fla { import flash.display.*; public dynamic class pourgreen_353 extends MovieClip { public function pourgreen_353(){ addFrameScript(29, frame30); } function frame30(){ stop(); } } }//package reemus3_fla
Section 261
//pourliquid_130 (reemus3_fla.pourliquid_130) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class pourliquid_130 extends MovieClip { public var mouth:MovieClip; public function pourliquid_130(){ addFrameScript(7, frame8); } function frame8(){ AudioManager.playSoundFromLibrary("FillSound"); } } }//package reemus3_fla
Section 262
//pourorange_349 (reemus3_fla.pourorange_349) package reemus3_fla { import flash.display.*; public dynamic class pourorange_349 extends MovieClip { public function pourorange_349(){ addFrameScript(29, frame30); } function frame30(){ stop(); } } }//package reemus3_fla
Section 263
//pourpurple_352 (reemus3_fla.pourpurple_352) package reemus3_fla { import flash.display.*; public dynamic class pourpurple_352 extends MovieClip { public function pourpurple_352(){ addFrameScript(29, frame30); } function frame30(){ stop(); } } }//package reemus3_fla
Section 264
//pourred_350 (reemus3_fla.pourred_350) package reemus3_fla { import flash.display.*; public dynamic class pourred_350 extends MovieClip { public function pourred_350(){ addFrameScript(29, frame30); } function frame30(){ stop(); } } }//package reemus3_fla
Section 265
//pouryellow_348 (reemus3_fla.pouryellow_348) package reemus3_fla { import flash.display.*; public dynamic class pouryellow_348 extends MovieClip { public function pouryellow_348(){ addFrameScript(29, frame30); } function frame30(){ stop(); } } }//package reemus3_fla
Section 266
//pressbuttonliam_128 (reemus3_fla.pressbuttonliam_128) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class pressbuttonliam_128 extends MovieClip { public function pressbuttonliam_128(){ addFrameScript(10, frame11, 30, frame31); } function frame31(){ stop(); } function frame11(){ AudioManager.playSoundFromLibrary("ClickSound"); } } }//package reemus3_fla
Section 267
//pullcordreemus_170 (reemus3_fla.pullcordreemus_170) package reemus3_fla { import flash.display.*; public dynamic class pullcordreemus_170 extends MovieClip { public var reemusmouth:MovieClip; } }//package reemus3_fla
Section 268
//purplefill_86 (reemus3_fla.purplefill_86) package reemus3_fla { import flash.display.*; public dynamic class purplefill_86 extends MovieClip { public function purplefill_86(){ addFrameScript(14, frame15); } function frame15(){ stop(); } } }//package reemus3_fla
Section 269
//purpleliquid_92 (reemus3_fla.purpleliquid_92) package reemus3_fla { import flash.display.*; public dynamic class purpleliquid_92 extends MovieClip { public function purpleliquid_92(){ addFrameScript(23, frame24); } function frame24(){ stop(); } } }//package reemus3_fla
Section 270
//puzzleholes_536 (reemus3_fla.puzzleholes_536) package reemus3_fla { import flash.display.*; public dynamic class puzzleholes_536 extends MovieClip { public var circle:MovieClip; } }//package reemus3_fla
Section 271
//RANKINGS_522 (reemus3_fla.RANKINGS_522) package reemus3_fla { import flash.display.*; public dynamic class RANKINGS_522 extends MovieClip { public function RANKINGS_522(){ addFrameScript(30, frame31); } function frame31(){ stop(); } } }//package reemus3_fla
Section 272
//redfill_84 (reemus3_fla.redfill_84) package reemus3_fla { import flash.display.*; public dynamic class redfill_84 extends MovieClip { public function redfill_84(){ addFrameScript(14, frame15); } function frame15(){ stop(); } } }//package reemus3_fla
Section 273
//redliquid_90 (reemus3_fla.redliquid_90) package reemus3_fla { import flash.display.*; public dynamic class redliquid_90 extends MovieClip { public function redliquid_90(){ addFrameScript(23, frame24); } function frame24(){ stop(); } } }//package reemus3_fla
Section 274
//reemusaxe_164 (reemus3_fla.reemusaxe_164) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class reemusaxe_164 extends MovieClip { public var reemustalk:MovieClip; public var reemusmouth:MovieClip; public function reemusaxe_164(){ addFrameScript(2, frame3, 37, frame38); } function frame3(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame38(){ stop(); } } }//package reemus3_fla
Section 275
//reemusdroprock_179 (reemus3_fla.reemusdroprock_179) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class reemusdroprock_179 extends MovieClip { public var reemusmouth:MovieClip; public function reemusdroprock_179(){ addFrameScript(12, frame13); } function frame13(){ AudioManager.playSoundFromLibrary("HeavyThudSound"); } } }//package reemus3_fla
Section 276
//reemusgetglue_162 (reemus3_fla.reemusgetglue_162) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class reemusgetglue_162 extends MovieClip { public var reemusmouth:MovieClip; public function reemusgetglue_162(){ addFrameScript(19, frame20); } function frame20(){ AudioManager.playSoundFromLibrary("Squirt2Sound"); } } }//package reemus3_fla
Section 277
//reemusgrabkey_190 (reemus3_fla.reemusgrabkey_190) package reemus3_fla { import flash.display.*; public dynamic class reemusgrabkey_190 extends MovieClip { public var reemusmouth:MovieClip; } }//package reemus3_fla
Section 278
//reemusgrabshrrom_184 (reemus3_fla.reemusgrabshrrom_184) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class reemusgrabshrrom_184 extends MovieClip { public var reemusmouth:MovieClip; public function reemusgrabshrrom_184(){ addFrameScript(29, frame30); } function frame30(){ AudioManager.playSoundFromLibrary("PopSound"); } } }//package reemus3_fla
Section 279
//reemusholdstuffbounce_160 (reemus3_fla.reemusholdstuffbounce_160) package reemus3_fla { import flash.display.*; public dynamic class reemusholdstuffbounce_160 extends MovieClip { public var reemusmouth:MovieClip; public function reemusholdstuffbounce_160(){ addFrameScript(11, frame12); } function frame12(){ if (currentFrame == 12){ MovieClip(parent).gotoAndStop("waiting"); }; } } }//package reemus3_fla
Section 280
//reemusholdwalk_152 (reemus3_fla.reemusholdwalk_152) package reemus3_fla { import flash.display.*; import asfiles.char.*; public dynamic class reemusholdwalk_152 extends MovieClip { public var reemustalk:MovieClip; public var held:HeldItemReemus; } }//package reemus3_fla
Section 281
//reemusholdwalkback_154 (reemus3_fla.reemusholdwalkback_154) package reemus3_fla { import flash.display.*; public dynamic class reemusholdwalkback_154 extends MovieClip { public var held:HeldBackReemus; } }//package reemus3_fla
Section 282
//reemusholdwalkfront_156 (reemus3_fla.reemusholdwalkfront_156) package reemus3_fla { import flash.display.*; public dynamic class reemusholdwalkfront_156 extends MovieClip { public var held:reemusfrontholdhand; } }//package reemus3_fla
Section 283
//reemusicon_542 (reemus3_fla.reemusicon_542) package reemus3_fla { import flash.display.*; public dynamic class reemusicon_542 extends MovieClip { public var reemustalk:MovieClip; } }//package reemus3_fla
Section 284
//Reemusjumpslands_188 (reemus3_fla.Reemusjumpslands_188) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class Reemusjumpslands_188 extends MovieClip { public var reemusmouth:MovieClip; public function Reemusjumpslands_188(){ addFrameScript(3, frame4, 11, frame12); } function frame12(){ stop(); } function frame4(){ AudioManager.playSoundFromLibrary("ThudLandSound"); } } }//package reemus3_fla
Section 285
//reemuspullstick_161 (reemus3_fla.reemuspullstick_161) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class reemuspullstick_161 extends MovieClip { public var reemusmouth:MovieClip; public function reemuspullstick_161(){ addFrameScript(40, frame41); } function frame41(){ AudioManager.playSoundFromLibrary("CrunchyBreakSound"); } } }//package reemus3_fla
Section 286
//reemuspulltree1_220 (reemus3_fla.reemuspulltree1_220) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class reemuspulltree1_220 extends MovieClip { public var reemusmouth:MovieClip; public function reemuspulltree1_220(){ addFrameScript(3, frame4, 18, frame19, 31, frame32, 42, frame43, 57, frame58, 70, frame71); } function frame71(){ stop(); MovieClip(parent).dispatchEvent(new Event("returnReemus")); } function frame19(){ stop(); } function frame4(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame43(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame32(){ stop(); MovieClip(parent).dispatchEvent(new Event("returnReemus")); } function frame58(){ stop(); } } }//package reemus3_fla
Section 287
//reemuspunchbug_166 (reemus3_fla.reemuspunchbug_166) package reemus3_fla { import flash.display.*; public dynamic class reemuspunchbug_166 extends MovieClip { public var reemusmouth:MovieClip; } }//package reemus3_fla
Section 288
//reemusrockpaper_171 (reemus3_fla.reemusrockpaper_171) package reemus3_fla { import flash.display.*; public dynamic class reemusrockpaper_171 extends MovieClip { public var reemusmouth:MovieClip; public function reemusrockpaper_171(){ addFrameScript(1, frame2, 59, frame60, 73, frame74, 90, frame91); } function frame74(){ stop(); } function frame91(){ stop(); } function frame2(){ stop(); } function frame60(){ stop(); } } }//package reemus3_fla
Section 289
//reemusslamit_167 (reemus3_fla.reemusslamit_167) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class reemusslamit_167 extends MovieClip { public var reemusmouth:MovieClip; public function reemusslamit_167(){ addFrameScript(5, frame6, 9, frame10); } function frame10(){ AudioManager.playSoundFromLibrary("SplatSound"); } function frame6(){ AudioManager.playSoundFromLibrary("SwingSound"); } } }//package reemus3_fla
Section 290
//reemusslamitaxe_169 (reemus3_fla.reemusslamitaxe_169) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class reemusslamitaxe_169 extends MovieClip { public var reemusmouth:MovieClip; public function reemusslamitaxe_169(){ addFrameScript(5, frame6, 9, frame10); } function frame10(){ AudioManager.playSoundFromLibrary("SplatSound"); } function frame6(){ AudioManager.playSoundFromLibrary("SwingSound"); } } }//package reemus3_fla
Section 291
//reemusstopbounce_159 (reemus3_fla.reemusstopbounce_159) package reemus3_fla { import flash.display.*; public dynamic class reemusstopbounce_159 extends MovieClip { public var reemusmouth:MovieClip; public function reemusstopbounce_159(){ addFrameScript(11, frame12); } function frame12(){ if (currentFrame == 12){ MovieClip(parent).gotoAndStop("waiting"); }; } } }//package reemus3_fla
Section 292
//reemusstrut1_139 (reemus3_fla.reemusstrut1_139) package reemus3_fla { import flash.display.*; public dynamic class reemusstrut1_139 extends MovieClip { public var reemustalk:MovieClip; } }//package reemus3_fla
Section 293
//reemusstrut2_141 (reemus3_fla.reemusstrut2_141) package reemus3_fla { import flash.display.*; public dynamic class reemusstrut2_141 extends MovieClip { public var reemustalk:MovieClip; } }//package reemus3_fla
Section 294
//reemusstrut3_142 (reemus3_fla.reemusstrut3_142) package reemus3_fla { import flash.display.*; public dynamic class reemusstrut3_142 extends MovieClip { public var reemustalk:MovieClip; } }//package reemus3_fla
Section 295
//reemusstrut4_143 (reemus3_fla.reemusstrut4_143) package reemus3_fla { import flash.display.*; public dynamic class reemusstrut4_143 extends MovieClip { public var reemustalk:MovieClip; } }//package reemus3_fla
Section 296
//reemusstrut5_144 (reemus3_fla.reemusstrut5_144) package reemus3_fla { import flash.display.*; public dynamic class reemusstrut5_144 extends MovieClip { public var reemustalk:MovieClip; } }//package reemus3_fla
Section 297
//reemusstrut6_145 (reemus3_fla.reemusstrut6_145) package reemus3_fla { import flash.display.*; public dynamic class reemusstrut6_145 extends MovieClip { public var reemustalk:MovieClip; } }//package reemus3_fla
Section 298
//reemusstrut7_146 (reemus3_fla.reemusstrut7_146) package reemus3_fla { import flash.display.*; public dynamic class reemusstrut7_146 extends MovieClip { public var reemustalk:MovieClip; } }//package reemus3_fla
Section 299
//reemusSwingStick_165 (reemus3_fla.reemusSwingStick_165) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class reemusSwingStick_165 extends MovieClip { public var reemustalk:MovieClip; public var reemusmouth:MovieClip; public function reemusSwingStick_165(){ addFrameScript(2, frame3, 37, frame38); } function frame3(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame38(){ stop(); } } }//package reemus3_fla
Section 300
//reemustakerockout_192 (reemus3_fla.reemustakerockout_192) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class reemustakerockout_192 extends MovieClip { public var reemusmouth:MovieClip; public function reemustakerockout_192(){ addFrameScript(15, frame16); } function frame16(){ AudioManager.playSoundFromLibrary("LightThudSound"); } } }//package reemus3_fla
Section 301
//Reemustalk_140 (reemus3_fla.Reemustalk_140) package reemus3_fla { import flash.display.*; public dynamic class Reemustalk_140 extends MovieClip { public function Reemustalk_140(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 302
//reemusunlockchest_176 (reemus3_fla.reemusunlockchest_176) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class reemusunlockchest_176 extends MovieClip { public var reemusmouth:MovieClip; public function reemusunlockchest_176(){ addFrameScript(14, frame15); } function frame15(){ AudioManager.playSoundFromLibrary("JingleSound"); } } }//package reemus3_fla
Section 303
//roachoutro_270 (reemus3_fla.roachoutro_270) package reemus3_fla { import flash.events.*; import flash.display.*; public dynamic class roachoutro_270 extends MovieClip { public function roachoutro_270(){ addFrameScript(20, frame21, 61, frame62); } function frame21(){ dispatchEvent(new Event("roachStop")); stop(); } function frame62(){ stop(); } } }//package reemus3_fla
Section 304
//rock_180 (reemus3_fla.rock_180) package reemus3_fla { import flash.display.*; public dynamic class rock_180 extends MovieClip { public function rock_180(){ addFrameScript(19, frame20); } function frame20(){ stop(); } } }//package reemus3_fla
Section 305
//ROCKPAPERSELECT_172 (reemus3_fla.ROCKPAPERSELECT_172) package reemus3_fla { import flash.display.*; public dynamic class ROCKPAPERSELECT_172 extends MovieClip { public var paperClip:MovieClip; public var scissorsClip:MovieClip; public var rockClip:MovieClip; public function ROCKPAPERSELECT_172(){ addFrameScript(0, frame1); } function frame1(){ if (currentFrame == 1){ stop(); }; } } }//package reemus3_fla
Section 306
//rocksfall_121 (reemus3_fla.rocksfall_121) package reemus3_fla { import flash.display.*; public dynamic class rocksfall_121 extends MovieClip { public function rocksfall_121(){ addFrameScript(14, frame15); } function frame15(){ stop(); } } }//package reemus3_fla
Section 307
//scissorsiconsz_173 (reemus3_fla.scissorsiconsz_173) package reemus3_fla { import flash.display.*; public dynamic class scissorsiconsz_173 extends MovieClip { public function scissorsiconsz_173(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 308
//secondbox_209 (reemus3_fla.secondbox_209) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class secondbox_209 extends MovieClip { public function secondbox_209(){ addFrameScript(5, frame6, 12, frame13, 14, frame15, 31, frame32); } function frame6(){ AudioManager.playSoundFromLibrary("JingleSound"); } function frame13(){ stop(); } function frame15(){ AudioManager.playSoundFromLibrary("JingleSound"); } function frame32(){ stop(); } } }//package reemus3_fla
Section 309
//secretdoor_320 (reemus3_fla.secretdoor_320) package reemus3_fla { import flash.display.*; public dynamic class secretdoor_320 extends MovieClip { public function secretdoor_320(){ addFrameScript(18, frame19); } function frame19(){ stop(); } } }//package reemus3_fla
Section 310
//shakerodmmonster_419 (reemus3_fla.shakerodmmonster_419) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class shakerodmmonster_419 extends MovieClip { public var monstermouth3:MovieClip; public function shakerodmmonster_419(){ addFrameScript(1, frame2, 54, frame55, 72, frame73, 92, frame93, 111, frame112); } function frame73(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame93(){ AudioManager.playSoundFromLibrary("SplatSound"); } function frame2(){ AudioManager.playSoundFromLibrary("Splash1Sound"); } function frame112(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } function frame55(){ AudioManager.playSoundFromLibrary("HissSound"); } } }//package reemus3_fla
Section 311
//snakebitefruit_402 (reemus3_fla.snakebitefruit_402) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class snakebitefruit_402 extends MovieClip { public function snakebitefruit_402(){ addFrameScript(2, frame3, 25, frame26); } function frame3(){ AudioManager.playSoundFromLibrary("BiteSound"); } function frame26(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 312
//snakebitethefrog_430 (reemus3_fla.snakebitethefrog_430) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class snakebitethefrog_430 extends MovieClip { public function snakebitethefrog_430(){ addFrameScript(20, frame21, 47, frame48, 57, frame58); } function frame21(){ AudioManager.playSoundFromLibrary("EatingSound"); } function frame48(){ AudioManager.playSoundFromLibrary("Splash2Sound"); } function frame58(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 313
//snakeemerge_398 (reemus3_fla.snakeemerge_398) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class snakeemerge_398 extends MovieClip { public function snakeemerge_398(){ addFrameScript(1, frame2, 13, frame14, 29, frame30); } function frame14(){ AudioManager.playSoundFromLibrary("Splash2Sound"); } function frame2(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame30(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 314
//snakeemergefromwater_399 (reemus3_fla.snakeemergefromwater_399) package reemus3_fla { import flash.events.*; import flash.display.*; public dynamic class snakeemergefromwater_399 extends MovieClip { public function snakeemergefromwater_399(){ addFrameScript(28, frame29); } function frame29(){ parent.dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 315
//spiderweb_372 (reemus3_fla.spiderweb_372) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class spiderweb_372 extends MovieClip { public function spiderweb_372(){ addFrameScript(59, frame60, 99, frame100, 118, frame119); } function frame100(){ AudioManager.playSoundFromLibrary("Squirt2Sound"); } function frame119(){ MovieClip(parent).dispatchEvent(new Event("endOfClip")); stop(); } function frame60(){ AudioManager.playSoundFromLibrary("CartoonBoinkSound"); } } }//package reemus3_fla
Section 316
//splattersappear_309 (reemus3_fla.splattersappear_309) package reemus3_fla { import flash.display.*; public dynamic class splattersappear_309 extends MovieClip { public function splattersappear_309(){ addFrameScript(8, frame9); } function frame9(){ stop(); } } }//package reemus3_fla
Section 317
//squirrel2_228 (reemus3_fla.squirrel2_228) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class squirrel2_228 extends MovieClip { public function squirrel2_228(){ addFrameScript(14, frame15, 30, frame31, 44, frame45, 51, frame52, 63, frame64, 75, frame76, 84, frame85, 96, frame97); } function frame64(){ stop(); dispatchEvent(new Event("escape")); } function frame76(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame85(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame97(){ stop(); dispatchEvent(new Event("escape")); } function frame15(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame31(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame45(){ dispatchEvent(new Event("catchFrame")); } function frame52(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } } }//package reemus3_fla
Section 318
//squirreljumpoff_222 (reemus3_fla.squirreljumpoff_222) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class squirreljumpoff_222 extends MovieClip { public function squirreljumpoff_222(){ addFrameScript(2, frame3, 9, frame10, 16, frame17, 19, frame20, 102, frame103); } function frame10(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame3(){ AudioManager.playSoundFromLibrary("SquirrelSound"); } function frame17(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame103(){ stop(); dispatchEvent(new Event("escape")); } function frame20(){ AudioManager.playSoundFromLibrary("WhooshSound"); } } }//package reemus3_fla
Section 319
//squirrelrun1_237 (reemus3_fla.squirrelrun1_237) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class squirrelrun1_237 extends MovieClip { public function squirrelrun1_237(){ addFrameScript(41, frame42, 62, frame63, 102, frame103, 113, frame114, 131, frame132, 162, frame163, 166, frame167); } function frame167(){ stop(); dispatchEvent(new Event("escape")); } function frame163(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame103(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame114(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame42(){ AudioManager.playSoundFromLibrary("Spring1Sound"); } function frame132(){ stop(); dispatchEvent(new Event("escape")); } function frame63(){ stop(); dispatchEvent(new Event("escape")); } } }//package reemus3_fla
Section 320
//squshyholeflattens_53 (reemus3_fla.squshyholeflattens_53) package reemus3_fla { import flash.display.*; public dynamic class squshyholeflattens_53 extends MovieClip { public function squshyholeflattens_53(){ addFrameScript(9, frame10); } function frame10(){ stop(); } } }//package reemus3_fla
Section 321
//staticholdreemus_158 (reemus3_fla.staticholdreemus_158) package reemus3_fla { import flash.display.*; import asfiles.char.*; public dynamic class staticholdreemus_158 extends MovieClip { public var held:HeldItemReemus; public var mouth:MovieClip; } }//package reemus3_fla
Section 322
//staticliam_72 (reemus3_fla.staticliam_72) package reemus3_fla { import flash.display.*; public dynamic class staticliam_72 extends MovieClip { public var mouth:MovieClip; } }//package reemus3_fla
Section 323
//staticreemus_150 (reemus3_fla.staticreemus_150) package reemus3_fla { import flash.display.*; public dynamic class staticreemus_150 extends MovieClip { public var mouth:MovieClip; } }//package reemus3_fla
Section 324
//steamblastforbees_64 (reemus3_fla.steamblastforbees_64) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class steamblastforbees_64 extends MovieClip { public function steamblastforbees_64(){ addFrameScript(1, frame2, 11, frame12); } function frame12(){ stop(); } function frame2(){ AudioManager.playSoundFromLibrary("WhooshSound"); } } }//package reemus3_fla
Section 325
//steprock_341 (reemus3_fla.steprock_341) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class steprock_341 extends MovieClip { public function steprock_341(){ addFrameScript(0, frame1, 1, frame2, 12, frame13, 13, frame14); } function frame14(){ AudioManager.playSoundFromLibrary("Tomb3Sound"); } function frame1(){ stop(); } function frame13(){ stop(); } function frame2(){ AudioManager.playSoundFromLibrary("Tomb3Sound"); } } }//package reemus3_fla
Section 326
//stick_47 (reemus3_fla.stick_47) package reemus3_fla { import flash.display.*; public dynamic class stick_47 extends MovieClip { public function stick_47(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package reemus3_fla
Section 327
//stickshrroomtop_100 (reemus3_fla.stickshrroomtop_100) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class stickshrroomtop_100 extends MovieClip { public function stickshrroomtop_100(){ addFrameScript(6, frame7); } function frame7(){ AudioManager.playSoundFromLibrary("SquirtSound"); } } }//package reemus3_fla
Section 328
//stonestepdoor_345 (reemus3_fla.stonestepdoor_345) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class stonestepdoor_345 extends MovieClip { public function stonestepdoor_345(){ addFrameScript(1, frame2, 40, frame41); } function frame2(){ AudioManager.playSoundFromLibrary("TombOpenSound"); } function frame41(){ stop(); } } }//package reemus3_fla
Section 329
//swapcharactermovieclip_544 (reemus3_fla.swapcharactermovieclip_544) package reemus3_fla { import flash.display.*; public dynamic class swapcharactermovieclip_544 extends MovieClip { public function swapcharactermovieclip_544(){ addFrameScript(49, frame50); } function frame50(){ stop(); } } }//package reemus3_fla
Section 330
//throwMushroom_187 (reemus3_fla.throwMushroom_187) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class throwMushroom_187 extends MovieClip { public var reemusmouth:MovieClip; public function throwMushroom_187(){ addFrameScript(5, frame6); } function frame6(){ AudioManager.playSoundFromLibrary("SwingSound"); } } }//package reemus3_fla
Section 331
//tinkertok_285 (reemus3_fla.tinkertok_285) package reemus3_fla { import flash.display.*; public dynamic class tinkertok_285 extends MovieClip { public var spriteIn:MovieClip; } }//package reemus3_fla
Section 332
//tinkertokwalkaway_301 (reemus3_fla.tinkertokwalkaway_301) package reemus3_fla { import flash.display.*; public dynamic class tinkertokwalkaway_301 extends MovieClip { public function tinkertokwalkaway_301(){ addFrameScript(16, frame17); } function frame17(){ stop(); } } }//package reemus3_fla
Section 333
//tossflagliam_106 (reemus3_fla.tossflagliam_106) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class tossflagliam_106 extends MovieClip { public function tossflagliam_106(){ addFrameScript(4, frame5); } function frame5(){ AudioManager.playSoundFromLibrary("FlutterSound"); } } }//package reemus3_fla
Section 334
//tossgelationliam_126 (reemus3_fla.tossgelationliam_126) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class tossgelationliam_126 extends MovieClip { public var mouth:MovieClip; public function tossgelationliam_126(){ addFrameScript(7, frame8, 16, frame17); } function frame8(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame17(){ AudioManager.playSoundFromLibrary("Splash1Sound"); } } }//package reemus3_fla
Section 335
//tree_27 (reemus3_fla.tree_27) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class tree_27 extends MovieClip { public var chips1:MovieClip; public var chips2:MovieClip; public var chips3:MovieClip; public function tree_27(){ addFrameScript(1, frame2, 2, frame3, 3, frame4, 4, frame5, 23, frame24, 24, frame25, 39, frame40); } function frame3(){ AudioManager.playSoundFromLibrary("ChopSound"); } function frame25(){ dispatchEvent(new Event("faPrimary")); } function frame4(){ AudioManager.playSoundFromLibrary("ChopSound"); } function frame5(){ AudioManager.playSoundFromLibrary("TreeFallSound"); } function frame2(){ AudioManager.playSoundFromLibrary("ChopSound"); } function frame24(){ AudioManager.playSoundFromLibrary("CrashSound"); } function frame40(){ stop(); } } }//package reemus3_fla
Section 336
//trees2_21 (reemus3_fla.trees2_21) package reemus3_fla { import flash.display.*; public dynamic class trees2_21 extends MovieClip { public var bug:MovieClip; } }//package reemus3_fla
Section 337
//tumblelingnut_239 (reemus3_fla.tumblelingnut_239) package reemus3_fla { import flash.display.*; public dynamic class tumblelingnut_239 extends MovieClip { public var nut:MovieClip; public function tumblelingnut_239(){ addFrameScript(21, frame22); } function frame22(){ stop(); } } }//package reemus3_fla
Section 338
//unlockchest_114 (reemus3_fla.unlockchest_114) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class unlockchest_114 extends MovieClip { public function unlockchest_114(){ addFrameScript(3, frame4); } function frame4(){ AudioManager.playSoundFromLibrary("JingleSound"); } } }//package reemus3_fla
Section 339
//wardrobe_204 (reemus3_fla.wardrobe_204) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class wardrobe_204 extends MovieClip { public function wardrobe_204(){ addFrameScript(3, frame4, 18, frame19); } function frame19(){ stop(); } function frame4(){ AudioManager.playSoundFromLibrary("ChestOpenSound"); } } }//package reemus3_fla
Section 340
//waterturnstojello_258 (reemus3_fla.waterturnstojello_258) package reemus3_fla { import flash.display.*; import com.relish.managers.*; public dynamic class waterturnstojello_258 extends MovieClip { public function waterturnstojello_258(){ addFrameScript(9, frame10, 23, frame24); } function frame10(){ AudioManager.playSoundFromLibrary("StretchSound"); } function frame24(){ stop(); } } }//package reemus3_fla
Section 341
//waxtree_200 (reemus3_fla.waxtree_200) package reemus3_fla { import flash.events.*; import flash.display.*; import com.relish.managers.*; public dynamic class waxtree_200 extends MovieClip { public function waxtree_200(){ addFrameScript(53, frame54); } function frame54(){ if (root){ AudioManager.playSoundFromLibrary("DropletSound"); }; dispatchEvent(new Event("waxFall")); } } }//package reemus3_fla
Section 342
//vines_269 (reemus3_fla.vines_269) package reemus3_fla { import flash.display.*; public dynamic class vines_269 extends MovieClip { public function vines_269(){ addFrameScript(18, frame19); } function frame19(){ stop(); } } }//package reemus3_fla
Section 343
//VisitorRight_425 (reemus3_fla.VisitorRight_425) package reemus3_fla { import flash.display.*; public dynamic class VisitorRight_425 extends MovieClip { public var frog:MovieClip; } }//package reemus3_fla
Section 344
//woodchipsfly_29 (reemus3_fla.woodchipsfly_29) package reemus3_fla { import flash.display.*; public dynamic class woodchipsfly_29 extends MovieClip { public function woodchipsfly_29(){ addFrameScript(9, frame10); } function frame10(){ stop(); } } }//package reemus3_fla
Section 345
//wormemerge_366 (reemus3_fla.wormemerge_366) package reemus3_fla { import flash.events.*; import flash.display.*; public dynamic class wormemerge_366 extends MovieClip { public function wormemerge_366(){ addFrameScript(366, frame367); } function frame367(){ MovieClip(parent).dispatchEvent(new Event("endOfClip")); stop(); } } }//package reemus3_fla
Section 346
//X_LOAD_2 (reemus3_fla.X_LOAD_2) package reemus3_fla { import flash.events.*; import flash.display.*; public dynamic class X_LOAD_2 extends MovieClip { public var NGButton:SimpleButton; public function X_LOAD_2(){ addFrameScript(100, frame101, 150, frame151, 164, frame165); } function frame151(){ NGButton.addEventListener(MouseEvent.CLICK, PlayMovie); } function frame165(){ stop(); } public function PlayMovie(_arg1:Event){ gotoAndStop("end"); MovieClip(root).play(); } function frame101(){ play(); } } }//package reemus3_fla
Section 347
//yellowfill_83 (reemus3_fla.yellowfill_83) package reemus3_fla { import flash.display.*; public dynamic class yellowfill_83 extends MovieClip { public function yellowfill_83(){ addFrameScript(14, frame15); } function frame15(){ stop(); } } }//package reemus3_fla
Section 348
//yellowliquid_88 (reemus3_fla.yellowliquid_88) package reemus3_fla { import flash.display.*; public dynamic class yellowliquid_88 extends MovieClip { public function yellowliquid_88(){ addFrameScript(23, frame24); } function frame24(){ stop(); } } }//package reemus3_fla
Section 349
//ActionBlocker (ActionBlocker) package { import flash.display.*; public dynamic class ActionBlocker extends MovieClip { } }//package
Section 350
//BeachMusic (BeachMusic) package { import flash.media.*; public dynamic class BeachMusic extends Sound { } }//package
Section 351
//BeeSound (BeeSound) package { import flash.media.*; public dynamic class BeeSound extends Sound { } }//package
Section 352
//BiteSound (BiteSound) package { import flash.media.*; public dynamic class BiteSound extends Sound { } }//package
Section 353
//BoingSound (BoingSound) package { import flash.media.*; public dynamic class BoingSound extends Sound { } }//package
Section 354
//BubblingSound (BubblingSound) package { import flash.media.*; public dynamic class BubblingSound extends Sound { } }//package
Section 355
//BurpSound (BurpSound) package { import flash.media.*; public dynamic class BurpSound extends Sound { } }//package
Section 356
//CampfireSound (CampfireSound) package { import flash.media.*; public dynamic class CampfireSound extends Sound { } }//package
Section 357
//CartoonBoinkSound (CartoonBoinkSound) package { import flash.media.*; public dynamic class CartoonBoinkSound extends Sound { } }//package
Section 358
//CartoonBonkSound (CartoonBonkSound) package { import flash.media.*; public dynamic class CartoonBonkSound extends Sound { } }//package
Section 359
//CartoonZipSound (CartoonZipSound) package { import flash.media.*; public dynamic class CartoonZipSound extends Sound { } }//package
Section 360
//CaveDoorMusic (CaveDoorMusic) package { import flash.media.*; public dynamic class CaveDoorMusic extends Sound { } }//package
Section 361
//CaveInteriorMusic (CaveInteriorMusic) package { import flash.media.*; public dynamic class CaveInteriorMusic extends Sound { } }//package
Section 362
//ChestOpenSound (ChestOpenSound) package { import flash.media.*; public dynamic class ChestOpenSound extends Sound { } }//package
Section 363
//ChopSound (ChopSound) package { import flash.media.*; public dynamic class ChopSound extends Sound { } }//package
Section 364
//ClickSound (ClickSound) package { import flash.media.*; public dynamic class ClickSound extends Sound { } }//package
Section 365
//CrashSound (CrashSound) package { import flash.media.*; public dynamic class CrashSound extends Sound { } }//package
Section 366
//CroakSound (CroakSound) package { import flash.media.*; public dynamic class CroakSound extends Sound { } }//package
Section 367
//CrumblingSound (CrumblingSound) package { import flash.media.*; public dynamic class CrumblingSound extends Sound { } }//package
Section 368
//CrunchyBreakSound (CrunchyBreakSound) package { import flash.media.*; public dynamic class CrunchyBreakSound extends Sound { } }//package
Section 369
//CutSceneMusic (CutSceneMusic) package { import flash.media.*; public dynamic class CutSceneMusic extends Sound { } }//package
Section 370
//DoomSound (DoomSound) package { import flash.media.*; public dynamic class DoomSound extends Sound { } }//package
Section 371
//DoorOpenSound (DoorOpenSound) package { import flash.media.*; public dynamic class DoorOpenSound extends Sound { } }//package
Section 372
//DropletSound (DropletSound) package { import flash.media.*; public dynamic class DropletSound extends Sound { } }//package
Section 373
//EatingSound (EatingSound) package { import flash.media.*; public dynamic class EatingSound extends Sound { } }//package
Section 374
//ending1movie (ending1movie) package { import flash.display.*; import asfiles.*; import asfiles.setting.*; import com.relish.managers.*; public dynamic class ending1movie extends Cutscene { public function ending1movie(){ addFrameScript(1, frame2, 51, frame52, 120, frame121, 121, frame122, 122, frame123, 123, frame124, 124, frame125, 213, frame214, 214, frame215, 225, frame226, 241, frame242, 300, frame301, 338, frame339, 376, frame377); } function frame215(){ stop(); } function frame214(){ stop(); } function frame226(){ AudioManager.playSoundFromLibrary("TigerSound"); } function frame2(){ Setting.playMusic("LiamEndingMusic"); } function frame124(){ stop(); } function frame339(){ stop(); } function frame121(){ stop(); } function frame123(){ stop(); } function frame242(){ AudioManager.playSoundFromLibrary("CartoonBoinkSound"); } function frame125(){ stop(); } function frame377(){ LevelSelect.currentPath = 2; MovieClip(parent).gotoAndStop(12); } function frame52(){ stop(); } function frame122(){ stop(); } function frame301(){ stop(); } } }//package
Section 375
//ending2movie (ending2movie) package { import flash.display.*; import asfiles.*; import asfiles.setting.*; import com.relish.managers.*; public dynamic class ending2movie extends Cutscene { public function ending2movie(){ addFrameScript(1, frame2, 129, frame130, 206, frame207, 321, frame322, 352, frame353, 356, frame357, 408, frame409, 435, frame436, 471, frame472, 472, frame473, 518, frame519, 545, frame546); } function frame322(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame207(){ AudioManager.playSoundFromLibrary("SnarlSound"); } function frame436(){ AudioManager.playSoundFromLibrary("TigerSound"); } function frame473(){ stop(); } function frame2(){ Setting.playMusic("ReemusEndingMusic"); } function frame519(){ stop(); } function frame357(){ AudioManager.playSoundFromLibrary("EatingSound"); } function frame472(){ stop(); } function frame409(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame353(){ AudioManager.playSoundFromLibrary("SquirrelDistressSound"); } function frame130(){ stop(); } function frame546(){ LevelSelect.currentPath = 1; MovieClip(parent).gotoAndStop(12); } } }//package
Section 376
//FillSound (FillSound) package { import flash.media.*; public dynamic class FillSound extends Sound { } }//package
Section 377
//FlappingSound (FlappingSound) package { import flash.media.*; public dynamic class FlappingSound extends Sound { } }//package
Section 378
//FlutterSound (FlutterSound) package { import flash.media.*; public dynamic class FlutterSound extends Sound { } }//package
Section 379
//FlySound (FlySound) package { import flash.media.*; public dynamic class FlySound extends Sound { } }//package
Section 380
//ForestMusic (ForestMusic) package { import flash.media.*; public dynamic class ForestMusic extends Sound { } }//package
Section 381
//GrowlSound (GrowlSound) package { import flash.media.*; public dynamic class GrowlSound extends Sound { } }//package
Section 382
//GulpSound (GulpSound) package { import flash.media.*; public dynamic class GulpSound extends Sound { } }//package
Section 383
//HeavyThudSound (HeavyThudSound) package { import flash.media.*; public dynamic class HeavyThudSound extends Sound { } }//package
Section 384
//HeldBackReemus (HeldBackReemus) package { import asfiles.char.*; public dynamic class HeldBackReemus extends HeldItemReemus { } }//package
Section 385
//HissSound (HissSound) package { import flash.media.*; public dynamic class HissSound extends Sound { } }//package
Section 386
//intro2 (intro2) package { import flash.display.*; import asfiles.*; import com.relish.managers.*; public dynamic class intro2 extends Cutscene { public function intro2(){ addFrameScript(1, frame2, 65, frame66, 97, frame98); } function frame2(){ AudioManager.playSoundFromLibrary("GrowlSound"); } function frame98(){ MovieClip(parent).nextFrame(); } function frame66(){ stop(); } } }//package
Section 387
//intro3 (intro3) package { import flash.display.*; import asfiles.*; import asfiles.setting.*; public dynamic class intro3 extends Cutscene { public function intro3(){ addFrameScript(1, frame2, 96, frame97, 98, frame99); } function frame97(){ stop(); } function frame2(){ Setting.playMusic("CutSceneMusic"); } function frame99(){ MovieClip(parent).nextFrame(); } } }//package
Section 388
//intro4 (intro4) package { import flash.display.*; import asfiles.*; import com.relish.managers.*; public dynamic class intro4 extends Cutscene { public function intro4(){ addFrameScript(1, frame2, 75, frame76, 96, frame97, 97, frame98, 98, frame99); } function frame76(){ stop(); } function frame97(){ stop(); } function frame2(){ AudioManager.playSoundFromLibrary("WhooshSound"); } function frame99(){ MovieClip(parent).nextFrame(); } function frame98(){ stop(); } } }//package
Section 389
//introshot1 (introshot1) package { import flash.display.*; import asfiles.*; import com.relish.managers.*; public dynamic class introshot1 extends Cutscene { public function introshot1(){ addFrameScript(1, frame2, 53, frame54, 130, frame131, 169, frame170, 272, frame273, 276, frame277, 280, frame281, 469, frame470); } function frame273(){ AudioManager.playSoundFromLibrary("SwingSound"); } function frame277(){ AudioManager.playSoundFromLibrary("HeavyThudSound"); } function frame281(){ AudioManager.playSoundFromLibrary("SizzleSound"); } function frame170(){ AudioManager.playSoundFromLibrary("DoomSound"); } function frame2(){ AudioManager.playSoundFromLibrary("ThunderSound"); } function frame470(){ MovieClip(parent).gotoAndStop(8); } function frame131(){ AudioManager.playSoundFromLibrary("PlaneSound"); } function frame54(){ AudioManager.playSoundFromLibrary("LightningSound"); } } }//package
Section 390
//JingleSound (JingleSound) package { import flash.media.*; public dynamic class JingleSound extends Sound { } }//package
Section 391
//Liam (Liam) package { import asfiles.char.*; public dynamic class Liam extends Character { } }//package
Section 392
//LiamEndingMusic (LiamEndingMusic) package { import flash.media.*; public dynamic class LiamEndingMusic extends Sound { } }//package
Section 393
//liamholdhandback (liamholdhandback) package { import asfiles.char.*; public dynamic class liamholdhandback extends HeldItemLiam { } }//package
Section 394
//liamholdhandfront (liamholdhandfront) package { import asfiles.char.*; public dynamic class liamholdhandfront extends HeldItemLiam { } }//package
Section 395
//LightningSound (LightningSound) package { import flash.media.*; public dynamic class LightningSound extends Sound { } }//package
Section 396
//LightThudSound (LightThudSound) package { import flash.media.*; public dynamic class LightThudSound extends Sound { } }//package
Section 397
//MuddyDropSound (MuddyDropSound) package { import flash.media.*; public dynamic class MuddyDropSound extends Sound { } }//package
Section 398
//NightSound (NightSound) package { import flash.media.*; public dynamic class NightSound extends Sound { } }//package
Section 399
//PATHOFAGGRESSION (PATHOFAGGRESSION) package { import flash.display.*; public dynamic class PATHOFAGGRESSION extends BitmapData { public function PATHOFAGGRESSION(_arg1:Number, _arg2:Number){ super(_arg1, _arg2); } } }//package
Section 400
//PATHOFLEASTRESISTANCE (PATHOFLEASTRESISTANCE) package { import flash.display.*; public dynamic class PATHOFLEASTRESISTANCE extends BitmapData { public function PATHOFLEASTRESISTANCE(_arg1:Number, _arg2:Number){ super(_arg1, _arg2); } } }//package
Section 401
//PlaneSound (PlaneSound) package { import flash.media.*; public dynamic class PlaneSound extends Sound { } }//package
Section 402
//PopSound (PopSound) package { import flash.media.*; public dynamic class PopSound extends Sound { } }//package
Section 403
//PourSound (PourSound) package { import flash.media.*; public dynamic class PourSound extends Sound { } }//package
Section 404
//PourSound2 (PourSound2) package { import flash.media.*; public dynamic class PourSound2 extends Sound { } }//package
Section 405
//Reemus (Reemus) package { import asfiles.char.*; public dynamic class Reemus extends Character { } }//package
Section 406
//ReemusEndingMusic (ReemusEndingMusic) package { import flash.media.*; public dynamic class ReemusEndingMusic extends Sound { } }//package
Section 407
//reemusfrontholdhand (reemusfrontholdhand) package { import asfiles.char.*; public dynamic class reemusfrontholdhand extends HeldItemReemus { } }//package
Section 408
//ReemusHeld (ReemusHeld) package { import asfiles.char.*; public dynamic class ReemusHeld extends HeldItemReemus { } }//package
Section 409
//RingBellSound (RingBellSound) package { import flash.media.*; public dynamic class RingBellSound extends Sound { } }//package
Section 410
//RipSound (RipSound) package { import flash.media.*; public dynamic class RipSound extends Sound { } }//package
Section 411
//SizzleSound (SizzleSound) package { import flash.media.*; public dynamic class SizzleSound extends Sound { } }//package
Section 412
//SkipButton (SkipButton) package { import flash.display.*; public dynamic class SkipButton extends MovieClip { } }//package
Section 413
//SkipDialogueOverlay (SkipDialogueOverlay) package { import flash.display.*; public dynamic class SkipDialogueOverlay extends MovieClip { } }//package
Section 414
//SlowLaughSound (SlowLaughSound) package { import flash.media.*; public dynamic class SlowLaughSound extends Sound { } }//package
Section 415
//SmackSound (SmackSound) package { import flash.media.*; public dynamic class SmackSound extends Sound { } }//package
Section 416
//SnakeAttackSound (SnakeAttackSound) package { import flash.media.*; public dynamic class SnakeAttackSound extends Sound { } }//package
Section 417
//SnarlSound (SnarlSound) package { import flash.media.*; public dynamic class SnarlSound extends Sound { } }//package
Section 418
//SpireMusic (SpireMusic) package { import flash.media.*; public dynamic class SpireMusic extends Sound { } }//package
Section 419
//SpitSound (SpitSound) package { import flash.media.*; public dynamic class SpitSound extends Sound { } }//package
Section 420
//Splash1Sound (Splash1Sound) package { import flash.media.*; public dynamic class Splash1Sound extends Sound { } }//package
Section 421
//Splash2Sound (Splash2Sound) package { import flash.media.*; public dynamic class Splash2Sound extends Sound { } }//package
Section 422
//SplatSound (SplatSound) package { import flash.media.*; public dynamic class SplatSound extends Sound { } }//package
Section 423
//Spring1Sound (Spring1Sound) package { import flash.media.*; public dynamic class Spring1Sound extends Sound { } }//package
Section 424
//Spring2Sound (Spring2Sound) package { import flash.media.*; public dynamic class Spring2Sound extends Sound { } }//package
Section 425
//Spring3Sound (Spring3Sound) package { import flash.media.*; public dynamic class Spring3Sound extends Sound { } }//package
Section 426
//SquirrelDistressSound (SquirrelDistressSound) package { import flash.media.*; public dynamic class SquirrelDistressSound extends Sound { } }//package
Section 427
//SquirrelMusic (SquirrelMusic) package { import flash.media.*; public dynamic class SquirrelMusic extends Sound { } }//package
Section 428
//SquirrelSound (SquirrelSound) package { import flash.media.*; public dynamic class SquirrelSound extends Sound { } }//package
Section 429
//Squirt2Sound (Squirt2Sound) package { import flash.media.*; public dynamic class Squirt2Sound extends Sound { } }//package
Section 430
//SquirtSound (SquirtSound) package { import flash.media.*; public dynamic class SquirtSound extends Sound { } }//package
Section 431
//SquishSound (SquishSound) package { import flash.media.*; public dynamic class SquishSound extends Sound { } }//package
Section 432
//StalacClicks (StalacClicks) package { import flash.display.*; public dynamic class StalacClicks extends MovieClip { } }//package
Section 433
//StretchSound (StretchSound) package { import flash.media.*; public dynamic class StretchSound extends Sound { } }//package
Section 434
//SwingSound (SwingSound) package { import flash.media.*; public dynamic class SwingSound extends Sound { } }//package
Section 435
//TempleMusic (TempleMusic) package { import flash.media.*; public dynamic class TempleMusic extends Sound { } }//package
Section 436
//THEPASSIONOFTHEEXTERMINATOR (THEPASSIONOFTHEEXTERMINATOR) package { import flash.display.*; public dynamic class THEPASSIONOFTHEEXTERMINATOR extends BitmapData { public function THEPASSIONOFTHEEXTERMINATOR(_arg1:Number, _arg2:Number){ super(_arg1, _arg2); } } }//package
Section 437
//ThudLandSound (ThudLandSound) package { import flash.media.*; public dynamic class ThudLandSound extends Sound { } }//package
Section 438
//ThunderSound (ThunderSound) package { import flash.media.*; public dynamic class ThunderSound extends Sound { } }//package
Section 439
//TigerSound (TigerSound) package { import flash.media.*; public dynamic class TigerSound extends Sound { } }//package
Section 440
//Tomb2Sound (Tomb2Sound) package { import flash.media.*; public dynamic class Tomb2Sound extends Sound { } }//package
Section 441
//Tomb3Sound (Tomb3Sound) package { import flash.media.*; public dynamic class Tomb3Sound extends Sound { } }//package
Section 442
//TombOpenSound (TombOpenSound) package { import flash.media.*; public dynamic class TombOpenSound extends Sound { } }//package
Section 443
//TreeFallSound (TreeFallSound) package { import flash.media.*; public dynamic class TreeFallSound extends Sound { } }//package
Section 444
//WarMusic (WarMusic) package { import flash.media.*; public dynamic class WarMusic extends Sound { } }//package
Section 445
//WaterfallSound (WaterfallSound) package { import flash.media.*; public dynamic class WaterfallSound extends Sound { } }//package
Section 446
//WhipSound (WhipSound) package { import flash.media.*; public dynamic class WhipSound extends Sound { } }//package
Section 447
//WhooshSound (WhooshSound) package { import flash.media.*; public dynamic class WhooshSound extends Sound { } }//package
Section 448
//VisitorLeftMusic (VisitorLeftMusic) package { import flash.media.*; public dynamic class VisitorLeftMusic extends Sound { } }//package
Section 449
//VisitorRightMusic (VisitorRightMusic) package { import flash.media.*; public dynamic class VisitorRightMusic extends Sound { } }//package
Section 450
//WoodFallSound (WoodFallSound) package { import flash.media.*; public dynamic class WoodFallSound extends Sound { } }//package
Section 451
//WoodStepSound (WoodStepSound) package { import flash.media.*; public dynamic class WoodStepSound extends Sound { } }//package
Section 452
//WrapMusic (WrapMusic) package { import flash.media.*; public dynamic class WrapMusic extends Sound { } }//package

Library Items

Symbol 1 Sound {SizzleSound}
Symbol 2 Sound {CaveDoorMusic}Used by:1658
Symbol 3 Bitmap {THEPASSIONOFTHEEXTERMINATOR}
Symbol 4 Bitmap {PATHOFAGGRESSION}
Symbol 5 Bitmap {PATHOFLEASTRESISTANCE}
Symbol 6 BitmapUsed by:7
Symbol 7 GraphicUses:6Used by:32
Symbol 8 GraphicUsed by:29 31 2010
Symbol 9 GraphicUsed by:29 31 2010
Symbol 10 GraphicUsed by:29 31 2010
Symbol 11 GraphicUsed by:29 31 2010
Symbol 12 GraphicUsed by:29 31
Symbol 13 GraphicUsed by:29 31
Symbol 14 GraphicUsed by:29 31
Symbol 15 GraphicUsed by:29 31
Symbol 16 GraphicUsed by:29 31
Symbol 17 GraphicUsed by:29 31
Symbol 18 GraphicUsed by:29 31
Symbol 19 GraphicUsed by:29 31
Symbol 20 GraphicUsed by:29 31
Symbol 21 GraphicUsed by:29 31
Symbol 22 GraphicUsed by:29 31
Symbol 23 GraphicUsed by:29 31
Symbol 24 GraphicUsed by:29 31
Symbol 25 GraphicUsed by:29 31
Symbol 26 GraphicUsed by:29 31
Symbol 27 GraphicUsed by:29 31
Symbol 28 GraphicUsed by:29 31
Symbol 29 MovieClipUses:8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28Used by:32
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28Used by:32
Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle}Uses:7 29 31
Symbol 33 GraphicUsed by:64
Symbol 34 GraphicUsed by:52 64
Symbol 35 GraphicUsed by:52 61 64 659
Symbol 36 GraphicUsed by:52 64 209 211 318 414 499 562 588 646 659 1453 1456 1459 1462 1465 1468 1472 1484 1486 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 37 GraphicUsed by:52 64 209 211 318 414 499 562 588 641 646 659 1453 1456 1459 1462 1465 1468 1472 1484 1486 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 38 GraphicUsed by:52 64 209 211 414 499 659 1453 1456 1459 1462 1465 1468 1472 1484 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 39 GraphicUsed by:52 64 209 211 414 499 659 1453 1456 1459 1462 1465 1468 1472 1484 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 40 GraphicUsed by:52 64 209 211 318 414 499 562 588 641 646 659 1453 1456 1459 1462 1465 1468 1472 1484 1486 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 41 GraphicUsed by:48 209 211 406 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1562 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 42 GraphicUsed by:48 206 406 2672
Symbol 43 GraphicUsed by:48 1533 1544 1564 1565
Symbol 44 GraphicUsed by:48 209 211 318 406 499 562 588 641 646 1486 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 45 GraphicUsed by:48 209 211 406 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 46 GraphicUsed by:48
Symbol 47 GraphicUsed by:48 1506
Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}Uses:41 42 43 44 45 46 47Used by:52 64 659 1453 1456 1459 1462 1465 1468 1472 1484 1503 1504 1551 1566 1568 1569
Symbol 49 GraphicUsed by:52 61 64 659
Symbol 50 GraphicUsed by:52 61
Symbol 51 GraphicUsed by:52 318 641 646 1484 1486 1503 1504 1551 1566 1568 1569
Symbol 52 MovieClip {reemus3_fla.reemusicon_542}Uses:34 35 36 37 38 39 40 48 49 50 51Used by:64
Symbol 53 GraphicUsed by:61 64 659
Symbol 54 GraphicUsed by:61 64 659 1281 1286
Symbol 55 GraphicUsed by:61 64 226 659 1033 1281 1286 1827
Symbol 56 GraphicUsed by:60
Symbol 57 GraphicUsed by:60
Symbol 58 GraphicUsed by:60 1397 1418
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:56 57 58 59Used by:61 64 228 401 659 1033 1208 1281 1286 1289 1290 1291 1294 1295 1296 1298 1349 1351 1375 1376 1397 1418 1419 1424 1425 1426 1427 1428 1431 1442 1443 1447 1542 1543 1732 1827
Symbol 61 MovieClipUses:53 35 54 55 60 49 50Used by:64
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClip {reemus3_fla.swapcharactermovieclip_544}Uses:62Used by:64
Symbol 64 MovieClip {asfiles.char.IconSelect}Uses:33 52 61 53 35 54 55 60 49 63 34 36 37 38 39 40 48
Symbol 65 GraphicUsed by:68
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:68
Symbol 68 MovieClip {reemus3_fla.bubble_539}Uses:65 67Used by:71
Symbol 69 FontUsed by:70 91 93 230 232 233 234 235 236 237 238 239 240 241 242 243 246 247 250 253 268 269 272 273 274 280 281 282 289 416 478 482 536 547 550 581 591 615 622 624 642 661 663 665 679 686 820 1037 1038 1039 1040 1753 2668 2674 2678 2689
Symbol 70 EditableTextUses:69Used by:71
Symbol 71 MovieClip {asfiles.char.SpeechBubble}Uses:68 70
Symbol 72 GraphicUsed by:95
Symbol 73 GraphicUsed by:95
Symbol 74 GraphicUsed by:95
Symbol 75 GraphicUsed by:87
Symbol 76 GraphicUsed by:79
Symbol 77 GraphicUsed by:79
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClip {reemus3_fla.circle_247}Uses:76 77 78Used by:87 89
Symbol 80 GraphicUsed by:87 89
Symbol 81 GraphicUsed by:87 89
Symbol 82 GraphicUsed by:87 89
Symbol 83 GraphicUsed by:87 89
Symbol 84 GraphicUsed by:87 89
Symbol 85 GraphicUsed by:87 89
Symbol 86 GraphicUsed by:87 89
Symbol 87 MovieClip {reemus3_fla.puzzleholes_536}Uses:75 79 80 81 82 83 84 85 86Used by:95
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClip {reemus3_fla.peg_246}Uses:88 79 80 81 82 83 84 85 86Used by:95 1802
Symbol 90 GraphicUsed by:94
Symbol 91 TextUses:69Used by:94
Symbol 92 GraphicUsed by:94
Symbol 93 TextUses:69Used by:94
Symbol 94 MovieClipUses:90 91 92 93Used by:95
Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle}Uses:72 73 74 87 89 94
Symbol 96 GraphicUsed by:106
Symbol 97 GraphicUsed by:106
Symbol 98 GraphicUsed by:106
Symbol 99 GraphicUsed by:106
Symbol 100 GraphicUsed by:106
Symbol 101 GraphicUsed by:106
Symbol 102 GraphicUsed by:106
Symbol 103 GraphicUsed by:106
Symbol 104 GraphicUsed by:106
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClip {StalacClicks}Uses:96 97 98 99 100 101 102 103 104 105
Symbol 107 GraphicUsed by:119
Symbol 108 GraphicUsed by:111 114 117
Symbol 109 GraphicUsed by:111 1518
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClip {reemus3_fla.scissorsiconsz_173}Uses:108 109 110Used by:118
Symbol 112 GraphicUsed by:114 209 414 499 1453 1456 1459 1472 1484 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClip {reemus3_fla.papericonz_174}Uses:108 112 113Used by:118
Symbol 115 GraphicUsed by:117 865 867 870 1506 1517 1518 1525 1533 1542 1543 1563
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClip {reemus3_fla.HANDROLLOVER_175}Uses:108 115 116Used by:118
Symbol 118 MovieClip {reemus3_fla.ROCKPAPERSELECT_172}Uses:111 114 117Used by:119 1518
Symbol 119 MovieClip {asfiles.setting.overlay.RPSOverlay}Uses:107 118
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClip {ActionBlocker}Uses:120
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClip {SkipButton}Uses:122Used by:124
Symbol 124 MovieClip {SkipDialogueOverlay}Uses:123
Symbol 125 GraphicUsed by:271
Symbol 126 GraphicUsed by:134
Symbol 127 GraphicUsed by:134
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:134
Symbol 130 GraphicUsed by:134 141 148 155 162 168 175 182 188
Symbol 131 BitmapUsed by:132
Symbol 132 GraphicUses:131Used by:134
Symbol 133 GraphicUsed by:134 141 148 155 162 168 175 182 188
Symbol 134 MovieClipUses:126 127 129 130 132 133Used by:271
Symbol 135 GraphicUsed by:141
Symbol 136 GraphicUsed by:141
Symbol 137 BitmapUsed by:138
Symbol 138 GraphicUses:137Used by:141
Symbol 139 BitmapUsed by:140
Symbol 140 GraphicUses:139Used by:141
Symbol 141 MovieClipUses:135 136 138 130 140 133Used by:271
Symbol 142 GraphicUsed by:148
Symbol 143 GraphicUsed by:148 168
Symbol 144 BitmapUsed by:145
Symbol 145 GraphicUses:144Used by:148
Symbol 146 BitmapUsed by:147
Symbol 147 GraphicUses:146Used by:148
Symbol 148 MovieClipUses:142 143 145 130 147 133Used by:271
Symbol 149 GraphicUsed by:155
Symbol 150 GraphicUsed by:155 188
Symbol 151 BitmapUsed by:152
Symbol 152 GraphicUses:151Used by:155
Symbol 153 BitmapUsed by:154
Symbol 154 GraphicUses:153Used by:155
Symbol 155 MovieClipUses:149 150 152 130 154 133Used by:271
Symbol 156 GraphicUsed by:162
Symbol 157 GraphicUsed by:162
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:162
Symbol 160 BitmapUsed by:161
Symbol 161 GraphicUses:160Used by:162
Symbol 162 MovieClipUses:156 157 159 130 161 133Used by:271
Symbol 163 GraphicUsed 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 MovieClipUses:163 143 165 130 167 133Used by:271
Symbol 169 GraphicUsed by:175
Symbol 170 GraphicUsed by:175
Symbol 171 BitmapUsed by:172
Symbol 172 GraphicUses:171Used by:175
Symbol 173 BitmapUsed by:174
Symbol 174 GraphicUses:173Used by:175
Symbol 175 MovieClipUses:169 170 172 130 174 133Used by:271
Symbol 176 GraphicUsed by:182
Symbol 177 GraphicUsed by:182
Symbol 178 BitmapUsed by:179
Symbol 179 GraphicUses:178Used by:182
Symbol 180 BitmapUsed by:181
Symbol 181 GraphicUses:180Used by:182
Symbol 182 MovieClipUses:176 177 179 130 181 133Used by:271
Symbol 183 GraphicUsed by:188
Symbol 184 BitmapUsed by:185
Symbol 185 GraphicUses:184Used by:188
Symbol 186 BitmapUsed by:187
Symbol 187 GraphicUses:186Used by:188
Symbol 188 MovieClipUses:183 150 185 130 187 133Used by:271
Symbol 189 GraphicUsed by:209 211 1456 1459 1468 1484 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1543 1544 1545 1551 1552 1553 1554 1562 1563 1564 1565 1566 1568 1569 1573 1731
Symbol 190 GraphicUsed by:209 211 414 499 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 191 GraphicUsed by:209 211 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731
Symbol 192 GraphicUsed by:209 211 414 499 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 193 GraphicUsed by:209 211 318 1486 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1543 1544 1545 1551 1552 1553 1554 1562 1563 1564 1565 1566 1568 1569 1573 1731
Symbol 194 GraphicUsed by:209 211 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731
Symbol 195 GraphicUsed by:209 318 414 499 562 588 613 646 865 867 870 1453 1456 1459 1465 1472 1477 1484 1485 1486 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 196 GraphicUsed by:209 318 414 499 562 588 613 641 646 867 1453 1456 1459 1462 1465 1468 1472 1477 1484 1485 1486 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 197 GraphicUsed by:209 318 414 499 562 588 613 641 646 867 870 1453 1456 1459 1462 1465 1468 1472 1477 1484 1485 1486 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 198 GraphicUsed by:209 211 414 499 1453 1456 1459 1462 1465 1468 1472 1484 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 199 GraphicUsed by:206 406 2672
Symbol 200 GraphicUsed by:206 406 2672
Symbol 201 GraphicUsed by:206 406 2672
Symbol 202 GraphicUsed by:206 406 2672
Symbol 203 GraphicUsed by:206 211 406 2672
Symbol 204 GraphicUsed by:206 406 2672
Symbol 205 GraphicUsed by:206 406 2672
Symbol 206 MovieClip {reemus3_fla.3_151}Uses:42 199 200 201 202 203 204 205Used by:209 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1563 1564 1565 1566 1568 1569 1573 1731
Symbol 207 GraphicUsed by:209 211 406 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1545 1551 1552 1553 1554 1566 1568 1569 1731 2672
Symbol 208 GraphicUsed by:209 211 406 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1542 1543 1544 1545 1551 1552 1553 1554 1562 1563 1564 1565 1566 1568 1569 1573 1731 2672
Symbol 209 MovieClip {reemus3_fla.staticreemus_150}Uses:189 190 191 112 192 193 194 36 37 195 196 197 38 198 40 39 41 206 207 44 45 208Used by:211 1574
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClip {reemus3_fla.endreemus_520}Uses:209 189 190 191 192 193 194 36 37 38 198 40 39 210 41 203 207 44 45 208Used by:271
Symbol 212 GraphicUsed by:228
Symbol 213 GraphicUsed by:218 1431
Symbol 214 GraphicUsed by:218
Symbol 215 GraphicUsed by:218
Symbol 216 GraphicUsed by:218
Symbol 217 GraphicUsed by:218
Symbol 218 MovieClip {reemus3_fla.liambeebody_73}Uses:213 214 215 216 217Used by:228 401 1289 1290 1291 1294 1424 1425 1428 1431 1442 1443 1447 1543 1732 1827 2679
Symbol 219 GraphicUsed by:220 1281 1286 1294 1295 1296 1298 1349 1351 1375 1376 1397 1418 1419 1426 1427
Symbol 220 MovieClipUses:219Used by:228 401 1289 1290 1291 1294 1424 1425 1428 1431 1442 1443 1447 1543 1732
Symbol 221 GraphicUsed by:226 228
Symbol 222 GraphicUsed by:226 2679
Symbol 223 GraphicUsed by:226
Symbol 224 GraphicUsed by:226
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClip {reemus3_fla.liammouth_38}Uses:55 221 222 223 224 225Used by:228 401 1033 1208 1289 1290 1291 1294 1295 1296 1298 1349 1351 1375 1376 1397 1418 1419 1424 1425 1426 1427 1428 1431 1442 1443 1447 1542 1543 1732 1827 2679
Symbol 227 GraphicUsed by:228
Symbol 228 MovieClip {reemus3_fla.endliam_521}Uses:212 218 220 226 60 227 221Used by:271
Symbol 229 GraphicUsed by:244 248
Symbol 230 TextUses:69Used by:244 248
Symbol 231 GraphicUsed by:244
Symbol 232 TextUses:69Used by:244 248
Symbol 233 TextUses:69Used by:244 248
Symbol 234 TextUses:69Used by:244 248
Symbol 235 TextUses:69Used by:244 248
Symbol 236 TextUses:69Used by:244 248
Symbol 237 TextUses:69Used by:244 248
Symbol 238 TextUses:69Used by:244
Symbol 239 TextUses:69Used by:244 248
Symbol 240 TextUses:69Used by:244 248
Symbol 241 TextUses:69Used by:244 248
Symbol 242 TextUses:69Used by:244 248
Symbol 243 TextUses:69Used by:244 248
Symbol 244 MovieClip {reemus3_fla.RANKINGS_522}Uses:229 230 231 232 233 234 235 236 237 238 239 240 241 242 243Used by:271
Symbol 245 GraphicUsed by:248
Symbol 246 TextUses:69Used by:248
Symbol 247 TextUses:69Used by:248
Symbol 248 MovieClip {reemus3_fla.pathpopuup2_523}Uses:229 230 245 236 246 232 239 242 235 234 237 247 240 233 241 243Used by:271
Symbol 249 GraphicUsed by:251
Symbol 250 TextUses:69Used by:251
Symbol 251 MovieClip {reemus3_fla.lockedpopup_525}Uses:249 250Used by:256
Symbol 252 GraphicUsed by:254 255
Symbol 253 TextUses:69Used by:254 255
Symbol 254 MovieClip {reemus3_fla.playpopup_526}Uses:252 253Used by:256
Symbol 255 MovieClip {reemus3_fla.playpopup2_527}Uses:252 253Used by:256
Symbol 256 MovieClipUses:251 254 255Used by:271
Symbol 257 GraphicUsed by:266
Symbol 258 GraphicUsed by:266
Symbol 259 GraphicUsed by:266
Symbol 260 GraphicUsed by:266
Symbol 261 GraphicUsed by:266
Symbol 262 GraphicUsed by:266
Symbol 263 GraphicUsed by:266
Symbol 264 GraphicUsed by:266
Symbol 265 GraphicUsed by:266
Symbol 266 MovieClip {reemus3_fla.giantexplosion_528}Uses:257 258 259 260 261 262 263 264 265Used by:271
Symbol 267 GraphicUsed by:270
Symbol 268 TextUses:69Used by:270
Symbol 269 TextUses:69Used by:270
Symbol 270 MovieClipUses:267 268 269Used by:271
Symbol 271 MovieClip {asfiles.setting.LevelSelect}Uses:125 134 141 148 155 162 168 175 182 188 211 228 244 248 256 266 270Used by:2688
Symbol 272 TextUses:69Used by:299
Symbol 273 TextUses:69Used by:299
Symbol 274 TextUses:69Used by:299
Symbol 275 GraphicUsed by:276
Symbol 276 MovieClipUses:275Used by:278
Symbol 277 GraphicUsed by:278
Symbol 278 MovieClipUses:276 277Used by:299
Symbol 279 GraphicUsed by:299
Symbol 280 TextUses:69Used by:299
Symbol 281 TextUses:69Used by:299
Symbol 282 TextUses:69Used by:299
Symbol 283 GraphicUsed by:286
Symbol 284 GraphicUsed by:286
Symbol 285 GraphicUsed by:286 1088
Symbol 286 MovieClipUses:283 284 285Used by:299
Symbol 287 BitmapUsed by:288
Symbol 288 GraphicUses:287Used by:290
Symbol 289 TextUses:69Used by:290
Symbol 290 MovieClipUses:288 289Used by:299
Symbol 291 GraphicUsed by:293
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:291 292Used by:299
Symbol 294 BitmapUsed by:295
Symbol 295 GraphicUses:294Used by:296
Symbol 296 MovieClipUses:295Used by:299
Symbol 297 GraphicUsed by:298
Symbol 298 MovieClipUses:297Used by:299 1041
Symbol 299 MovieClip {asfiles.Credits}Uses:272 273 274 278 279 280 281 282 286 290 293 296 298Used by:2688
Symbol 300 GraphicUsed by:499
Symbol 301 GraphicUsed by:318 1486
Symbol 302 GraphicUsed by:318 1486
Symbol 303 GraphicUsed by:318 1486
Symbol 304 GraphicUsed by:318 499 562 588 613 641 646 1477 1485 1486 1503 1504 1551 1566 1568 1569
Symbol 305 GraphicUsed by:318 499 562 588 641 646 1477 1485 1486 1503 1504 1551 1566 1568 1569
Symbol 306 GraphicUsed by:318 499 562 588 641 646 1486
Symbol 307 GraphicUsed by:318 499 562 588 641 646 1486
Symbol 308 GraphicUsed by:318 562 588 646 1486
Symbol 309 GraphicUsed by:318 562 588 646 1486
Symbol 310 GraphicUsed by:318 499 562 588 641 646 1486
Symbol 311 GraphicUsed by:318 562 588 646 1486
Symbol 312 GraphicUsed by:318 562 588 646 1486
Symbol 313 GraphicUsed by:318 562 588 641 646 1486
Symbol 314 GraphicUsed by:318 1486
Symbol 315 GraphicUsed by:318 1486
Symbol 316 GraphicUsed by:318 1486
Symbol 317 GraphicUsed by:318 1486
Symbol 318 MovieClipUses:301 193 302 303 36 37 304 305 40 306 307 308 44 309 310 311 312 195 313 196 197 314 51 315 316 317Used by:499 1574
Symbol 319 GraphicUsed by:333 499 562 588 641 646 1288
Symbol 320 GraphicUsed by:333 499 562 588 641 646 1288
Symbol 321 GraphicUsed by:333 499 562 588 613 641 646 996 1285 1287 1288 1425
Symbol 322 GraphicUsed by:333 499 562 588 613 641 646 1285 1287 1288 1305 1425 2679
Symbol 323 GraphicUsed by:333 499 562 588 641 646 1288
Symbol 324 GraphicUsed by:333 499 562 588 613 641 646 1285 1287 1288 1305 1425 2679
Symbol 325 GraphicUsed by:326
Symbol 326 MovieClipUses:325Used by:333 562 588 646 1288
Symbol 327 GraphicUsed by:328
Symbol 328 MovieClipUses:327Used by:333 562 587 646 1288
Symbol 329 GraphicUsed by:333 1288
Symbol 330 GraphicUsed by:333 1288
Symbol 331 GraphicUsed by:333 1285 1287 1288
Symbol 332 GraphicUsed by:333 1288
Symbol 333 MovieClipUses:319 320 321 322 323 324 326 328 329 330 331 332Used by:499 1448
Symbol 334 GraphicUsed by:499 641 646
Symbol 335 GraphicUsed by:499 641 646
Symbol 336 GraphicUsed by:499 641 646
Symbol 337 GraphicUsed by:499 641 646
Symbol 338 GraphicUsed by:499 641 646
Symbol 339 GraphicUsed by:499 641 646
Symbol 340 BitmapUsed by:341
Symbol 341 GraphicUses:340Used by:499
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:342Used by:446 499 2219
Symbol 344 GraphicUsed by:446 499 2254
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:345Used by:435 446 499 2219 2254
Symbol 347 GraphicUsed by:446 499 2219 2254
Symbol 348 GraphicUsed by:499 687
Symbol 349 GraphicUsed by:499 687
Symbol 350 GraphicUsed by:499 680 687 2426 2440 2452 2481
Symbol 351 GraphicUsed by:499 680 687 2426 2440 2452 2481
Symbol 352 GraphicUsed by:499 687
Symbol 353 GraphicUsed by:361 362 365 367 680 687 2481
Symbol 354 GraphicUsed by:361 362 365 367 680 687 2481
Symbol 355 GraphicUsed by:361 362 365 367 680 687 2481
Symbol 356 GraphicUsed by:361 362 365 367 676 677 680 687 2481
Symbol 357 GraphicUsed by:361 362 365 367 676 677 680 687 2481
Symbol 358 GraphicUsed by:361 362 367 680 687 2481
Symbol 359 GraphicUsed by:361 362 365 367 676 677 687 2481
Symbol 360 GraphicUsed by:361 362 365 367 676 677 687 2481
Symbol 361 MovieClip {reemus3_fla.monstermouth4_411}Uses:353 354 355 356 357 358 359 360Used by:499 687 2426 2440 2452 2481
Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}Uses:353 354 355 356 357 358 359 360Used by:499 687 2426 2440 2452 2481
Symbol 363 GraphicUsed by:499 687
Symbol 364 GraphicUsed by:499 687 2426 2440 2452 2481
Symbol 365 MovieClip {reemus3_fla.monstermouth2_414}Uses:353 354 355 356 357 359 360Used by:499 687 2426 2440 2452 2481
Symbol 366 GraphicUsed by:367 680 687 2481
Symbol 367 MovieClip {reemus3_fla.monstermouth_415}Uses:353 354 355 356 357 358 366 359 360Used by:499 687 739 2426 2440 2452 2481
Symbol 368 GraphicUsed by:376
Symbol 369 GraphicUsed by:376 680 739
Symbol 370 GraphicUsed by:376
Symbol 371 GraphicUsed by:376
Symbol 372 GraphicUsed by:376
Symbol 373 GraphicUsed by:376
Symbol 374 GraphicUsed by:376
Symbol 375 GraphicUsed by:376
Symbol 376 MovieClip {reemus3_fla.alieneye_413}Uses:368 369 370 371 372 373 374 375Used by:499 687 2426 2440 2452 2481
Symbol 377 GraphicUsed by:499
Symbol 378 GraphicUsed by:499 687
Symbol 379 GraphicUsed by:499 687
Symbol 380 GraphicUsed by:499 687 2426 2440 2452 2481
Symbol 381 GraphicUsed by:499 687
Symbol 382 GraphicUsed by:499 687
Symbol 383 GraphicUsed by:499
Symbol 384 GraphicUsed by:499 613 1285 1287
Symbol 385 GraphicUsed by:499 613 1285 1287 1305
Symbol 386 GraphicUsed by:499 613 1285 1287 1305 1425
Symbol 387 GraphicUsed by:499 613 867 1477 1485
Symbol 388 GraphicUsed by:499 613 1477 1485
Symbol 389 GraphicUsed by:390
Symbol 390 MovieClipUses:389Used by:499 613 1477 1485
Symbol 391 GraphicUsed by:499 613 1477 1485
Symbol 392 GraphicUsed by:499
Symbol 393 GraphicUsed by:446 499 2219
Symbol 394 GraphicUsed by:499 687
Symbol 395 GraphicUsed by:499 687
Symbol 396 GraphicUsed by:499 687
Symbol 397 GraphicUsed by:499
Symbol 398 BitmapUsed by:399
Symbol 399 GraphicUses:398Used by:499
Symbol 400 GraphicUsed by:402 499
Symbol 401 MovieClip {reemus3_fla.staticliam_72}Uses:218 226 60 220Used by:402 499 1295 1296 1297 1298 1307 1313 1314 1347 1349 1351 1359 1363 1365 1371 1373 1374 1375 1376 1397 1418 1419 1426 1427 1445 1448
Symbol 402 MovieClip {reemus3_fla.liamhidingbehidncave_491}Uses:400 401Used by:499
Symbol 403 GraphicUsed by:499
Symbol 404 GraphicUsed by:414 499 641 865 1503 1504 1525 1531 1533 1536 1542 1543 1544 1551 1563 1564 1565 1566 1568 1569 1573 2672
Symbol 405 GraphicUsed by:414 499 857 865 867 870 1490 1544 1545 1553 1563 1564 1565 1731 2672
Symbol 406 MovieClipUses:41 207 44 45 42 208 199 200 201 202 203 204 205Used by:414 499
Symbol 407 GraphicUsed by:414 499
Symbol 408 GraphicUsed by:499 687 2426 2440 2452 2481
Symbol 409 GraphicUsed by:499 687
Symbol 410 GraphicUsed by:499 687 2426 2440 2452 2481
Symbol 411 GraphicUsed by:412 479 483 537 548 551 582 592 616 623 625 2669 2677
Symbol 412 ButtonUses:411Used by:499
Symbol 413 GraphicUsed by:414
Symbol 414 MovieClipUses:413 36 37 190 192 195 112 196 197 38 198 40 39 404 405 406 407Used by:499
Symbol 415 GraphicUsed by:499
Symbol 416 TextUses:69Used by:499
Symbol 417 BitmapUsed by:418 431
Symbol 418 GraphicUses:417Used by:499
Symbol 419 GraphicUsed by:499
Symbol 420 GraphicUsed by:499
Symbol 421 GraphicUsed by:433 499
Symbol 422 GraphicUsed by:433 499
Symbol 423 GraphicUsed by:499
Symbol 424 GraphicUsed by:499
Symbol 425 GraphicUsed by:499
Symbol 426 GraphicUsed by:433 499
Symbol 427 GraphicUsed by:433 499
Symbol 428 GraphicUsed by:499
Symbol 429 GraphicUsed by:499
Symbol 430 GraphicUsed by:499 1533 1738 1758 1784
Symbol 431 GraphicUses:417Used by:499
Symbol 432 GraphicUsed by:499
Symbol 433 MovieClip {reemus3_fla.mouthhand_495}Uses:421 422 426 427Used by:499
Symbol 434 GraphicUsed by:435
Symbol 435 MovieClipUses:434 346Used by:499 2216
Symbol 436 GraphicUsed by:440
Symbol 437 GraphicUsed by:440
Symbol 438 GraphicUsed by:440
Symbol 439 GraphicUsed by:440
Symbol 440 MovieClipUses:436 437 438 439Used by:499
Symbol 441 GraphicUsed by:443
Symbol 442 GraphicUsed by:443
Symbol 443 MovieClipUses:441 442Used by:499
Symbol 444 GraphicUsed by:445
Symbol 445 MovieClipUses:444Used by:499
Symbol 446 MovieClipUses:343 344 346 393 347Used by:499 2217
Symbol 447 GraphicUsed by:455
Symbol 448 GraphicUsed by:455 2260 2293
Symbol 449 GraphicUsed by:455
Symbol 450 GraphicUsed by:455
Symbol 451 GraphicUsed by:455
Symbol 452 GraphicUsed by:455
Symbol 453 GraphicUsed by:455
Symbol 454 GraphicUsed by:455
Symbol 455 MovieClipUses:447 448 449 450 451 452 453 454Used by:499 2254 2440
Symbol 456 GraphicUsed by:461 499 2388
Symbol 457 GraphicUsed by:461 499 2388 2452
Symbol 458 GraphicUsed by:461 499 2388 2452
Symbol 459 GraphicUsed by:461 499 2388 2452
Symbol 460 GraphicUsed by:461 499 2388
Symbol 461 MovieClipUses:456 457 458 459 460Used by:499
Symbol 462 GraphicUsed by:499
Symbol 463 BitmapUsed by:464
Symbol 464 GraphicUses:463Used by:499
Symbol 465 GraphicUsed by:499
Symbol 466 GraphicUsed by:499
Symbol 467 GraphicUsed by:499
Symbol 468 GraphicUsed by:499
Symbol 469 GraphicUsed by:473 499 739 2142 2162
Symbol 470 GraphicUsed by:499
Symbol 471 GraphicUsed by:499
Symbol 472 GraphicUsed by:499 2388
Symbol 473 MovieClipUses:469Used by:499 2169 2170 2180
Symbol 474 GraphicUsed by:499 2590 2633
Symbol 475 GraphicUsed by:499 2590 2633
Symbol 476 GraphicUsed by:499
Symbol 477 GraphicUsed by:499
Symbol 478 TextUses:69Used by:499
Symbol 479 ButtonUses:411Used by:499
Symbol 480 BitmapUsed by:481 484
Symbol 481 GraphicUses:480Used by:499
Symbol 482 TextUses:69Used by:499
Symbol 483 ButtonUses:411Used by:499
Symbol 484 GraphicUses:480Used by:499
Symbol 485 BitmapUsed by:486
Symbol 486 GraphicUses:485Used by:499
Symbol 487 GraphicUsed by:499 646
Symbol 488 FontUsed by:489 490 491 492 493 494 495 496 497 498 1087
Symbol 489 TextUses:488Used by:499 646
Symbol 490 TextUses:488Used by:499 646
Symbol 491 TextUses:488Used by:499 646
Symbol 492 TextUses:488Used by:499 646
Symbol 493 TextUses:488Used by:499 646
Symbol 494 TextUses:488Used by:499 646
Symbol 495 TextUses:488Used by:499 646
Symbol 496 TextUses:488Used by:499 646
Symbol 497 TextUses:488Used by:499 646
Symbol 498 TextUses:488Used by:499 646
Symbol 499 MovieClip {ending2movie}Uses:300 318 333 36 37 304 305 40 195 196 197 306 307 334 44 335 336 310 337 319 320 321 322 323 324 338 339 341 343 344 346 347 348 349 350 351 352 361 362 363 364 365 367 376 377 378 379 380 381 382 383 384 385 386 387 388 390 391 392 393 394 395 396 397 399 402 403 190 192 112 38 198 39 404 405 406 407 408 409 410 412 414 415 416 418 419 420 421 422 423 424 425 426 427 400 401 428 429 430 431 432 433 435 440 443 445 446 455 461 462 464 465 466 467 468 469 470 471 472 457 458 459 473 456 460 474 475 476 477 478 479 481 482 483 484 486 487 489 490 491 492 493 494 495 496 497 498Used by:Timeline
Symbol 500 BitmapUsed by:501
Symbol 501 GraphicUses:500Used by:646
Symbol 502 ShapeTweeningUsed by:521
Symbol 503 ShapeTweeningUsed by:521
Symbol 504 ShapeTweeningUsed by:521
Symbol 505 GraphicUsed by:521
Symbol 506 GraphicUsed by:521
Symbol 507 ShapeTweeningUsed by:521
Symbol 508 ShapeTweeningUsed by:521
Symbol 509 ShapeTweeningUsed by:521
Symbol 510 GraphicUsed by:521
Symbol 511 GraphicUsed by:521
Symbol 512 ShapeTweeningUsed by:521
Symbol 513 ShapeTweeningUsed by:521
Symbol 514 GraphicUsed by:521
Symbol 515 ShapeTweeningUsed by:521
Symbol 516 ShapeTweeningUsed by:521
Symbol 517 ShapeTweeningUsed by:521
Symbol 518 ShapeTweeningUsed by:521
Symbol 519 GraphicUsed by:521
Symbol 520 GraphicUsed by:521
Symbol 521 MovieClipUses:502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520Used by:646
Symbol 522 GraphicUsed by:646
Symbol 523 BitmapUsed by:524
Symbol 524 GraphicUses:523Used by:646
Symbol 525 GraphicUsed by:646
Symbol 526 GraphicUsed by:534 646
Symbol 527 GraphicUsed by:532
Symbol 528 GraphicUsed by:532
Symbol 529 GraphicUsed by:532
Symbol 530 GraphicUsed by:532
Symbol 531 GraphicUsed by:532
Symbol 532 MovieClipUses:527 528 529 530 531Used by:534 646
Symbol 533 GraphicUsed by:534 646
Symbol 534 MovieClipUses:526 532 533Used by:538 646
Symbol 535 GraphicUsed by:646
Symbol 536 TextUses:69Used by:646
Symbol 537 ButtonUses:411Used by:646
Symbol 538 MovieClipUses:534Used by:646
Symbol 539 BitmapUsed by:540
Symbol 540 GraphicUses:539Used by:646
Symbol 541 GraphicUsed by:545
Symbol 542 GraphicUsed by:545
Symbol 543 GraphicUsed by:545
Symbol 544 GraphicUsed by:545
Symbol 545 MovieClipUses:541 542 543 544Used by:646
Symbol 546 GraphicUsed by:646
Symbol 547 TextUses:69Used by:646
Symbol 548 ButtonUses:411Used by:646
Symbol 549 GraphicUsed by:646
Symbol 550 TextUses:69Used by:646
Symbol 551 ButtonUses:411Used by:646
Symbol 552 BitmapUsed by:553
Symbol 553 GraphicUses:552Used by:646
Symbol 554 GraphicUsed by:562
Symbol 555 GraphicUsed by:562 588
Symbol 556 GraphicUsed by:561
Symbol 557 GraphicUsed by:561
Symbol 558 GraphicUsed by:561
Symbol 559 GraphicUsed by:561
Symbol 560 GraphicUsed by:561
Symbol 561 MovieClipUses:556 557 558 559 560Used by:562 588
Symbol 562 MovieClipUses:554 555 36 37 304 305 40 306 307 308 44 309 310 311 312 195 313 196 197 319 320 321 322 323 324 326 328 561Used by:563
Symbol 563 MovieClipUses:562Used by:646
Symbol 564 GraphicUsed by:609 646
Symbol 565 GraphicUsed by:608 609 646
Symbol 566 GraphicUsed by:608 609 646
Symbol 567 GraphicUsed by:574
Symbol 568 GraphicUsed by:574 596 599
Symbol 569 GraphicUsed by:574
Symbol 570 GraphicUsed by:574 596 599
Symbol 571 GraphicUsed by:574 596 599
Symbol 572 GraphicUsed by:574 596 599
Symbol 573 GraphicUsed by:574 596 599 609
Symbol 574 MovieClipUses:567 568 569 570 571 572 573Used by:646
Symbol 575 GraphicUsed by:646
Symbol 576 GraphicUsed by:646
Symbol 577 GraphicUsed by:646
Symbol 578 GraphicUsed by:646
Symbol 579 GraphicUsed by:646
Symbol 580 GraphicUsed by:646
Symbol 581 TextUses:69Used by:646
Symbol 582 ButtonUses:411Used by:646
Symbol 583 GraphicUsed by:588
Symbol 584 GraphicUsed by:587
Symbol 585 GraphicUsed by:587
Symbol 586 GraphicUsed by:587
Symbol 587 MovieClipUses:328 584 585 586Used by:588
Symbol 588 MovieClipUses:583 555 36 37 304 305 40 306 307 308 44 309 310 311 312 195 313 196 197 319 320 321 322 323 324 326 587 561Used by:589
Symbol 589 MovieClipUses:588Used by:646
Symbol 590 GraphicUsed by:646
Symbol 591 TextUses:69Used by:646
Symbol 592 ButtonUses:411Used by:646
Symbol 593 GraphicUsed by:599 609
Symbol 594 GraphicUsed by:596 599 609
Symbol 595 GraphicUsed by:596
Symbol 596 MovieClipUses:595 568 594 570 571 572 573Used by:609
Symbol 597 GraphicUsed by:609
Symbol 598 GraphicUsed by:599 608 609
Symbol 599 MovieClipUses:593 573 594 568 570 571 572 598Used by:609
Symbol 600 GraphicUsed by:609
Symbol 601 GraphicUsed by:609
Symbol 602 GraphicUsed by:609
Symbol 603 GraphicUsed by:609
Symbol 604 GraphicUsed by:609
Symbol 605 GraphicUsed by:608 609
Symbol 606 GraphicUsed by:608 609
Symbol 607 GraphicUsed by:609
Symbol 608 MovieClipUses:565 566 605 598 606Used by:609
Symbol 609 MovieClip {reemus3_fla.boatguard_210}Uses:564 565 566 593 573 594 596 597 599 600 601 602 603 604 605 598 606 607 608Used by:610 1720
Symbol 610 MovieClip {reemus3_fla.heshufflesoff_481}Uses:609Used by:646
Symbol 611 GraphicUsed by:612
Symbol 612 MovieClipUses:611Used by:646
Symbol 613 MovieClipUses:387 195 196 197 384 385 321 322 324 386 304 388 390 391Used by:646
Symbol 614 GraphicUsed by:646
Symbol 615 TextUses:69Used by:646
Symbol 616 ButtonUses:411Used by:646
Symbol 617 GraphicUsed by:646
Symbol 618 GraphicUsed by:646
Symbol 619 GraphicUsed by:646
Symbol 620 GraphicUsed by:646
Symbol 621 GraphicUsed by:646
Symbol 622 TextUses:69Used by:646
Symbol 623 ButtonUses:411Used by:646
Symbol 624 TextUses:69Used by:646
Symbol 625 ButtonUses:411Used by:646
Symbol 626 GraphicUsed by:646
Symbol 627 GraphicUsed by:646
Symbol 628 GraphicUsed by:646
Symbol 629 GraphicUsed by:646
Symbol 630 GraphicUsed by:646
Symbol 631 GraphicUsed by:646
Symbol 632 GraphicUsed by:646
Symbol 633 GraphicUsed by:641
Symbol 634 GraphicUsed by:641
Symbol 635 GraphicUsed by:641 1456 1459 1462 1465 1468 1484 1503 1504 1506 1525 1533 1536 1544 1551 1563 1564 1565 1566 1568 1569
Symbol 636 GraphicUsed by:641
Symbol 637 GraphicUsed by:640
Symbol 638 GraphicUsed by:640
Symbol 639 GraphicUsed by:640
Symbol 640 MovieClipUses:637 638 639Used by:641
Symbol 641 MovieClipUses:319 320 321 322 323 324 338 339 51 37 304 305 40 306 307 334 44 335 336 310 337 633 634 404 313 635 196 197 636 640Used by:646
Symbol 642 TextUses:69Used by:646
Symbol 643 BitmapUsed by:644
Symbol 644 GraphicUses:643Used by:645
Symbol 645 MovieClipUses:644Used by:646
Symbol 646 MovieClip {ending1movie}Uses:501 521 522 524 525 534 535 536 537 538 540 526 532 533 545 546 547 548 549 550 551 553 563 564 565 566 574 575 576 577 578 579 580 581 582 589 590 591 592 610 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 36 37 304 305 40 195 313 196 197 306 307 308 44 309 310 311 312 319 320 321 322 323 324 328 326 51 334 335 336 337 338 339 641 642 645 487 489 490 491 492 493 494 495 496 497 498Used by:Timeline
Symbol 647 GraphicUsed by:650
Symbol 648 GraphicUsed by:650
Symbol 649 GraphicUsed by:650 655 657
Symbol 650 MovieClip {asfiles.ResetButton}Uses:647 648 649Used by:Timeline
Symbol 651 GraphicUsed by:655
Symbol 652 GraphicUsed by:653
Symbol 653 MovieClipUses:652Used by:655 657
Symbol 654 GraphicUsed by:655 657
Symbol 655 MovieClip {asfiles.MusicMuteButton}Uses:649 651 653 654Used by:Timeline
Symbol 656 GraphicUsed by:657
Symbol 657 MovieClip {asfiles.SoundMuteButton}Uses:649 656 653 654Used by:Timeline
Symbol 658 GraphicUsed by:659
Symbol 659 MovieClip {asfiles.char.Portrait}Uses:53 35 54 55 60 49 658 36 37 38 39 40 48Used by:Timeline
Symbol 660 GraphicUsed by:667
Symbol 661 TextUses:69Used by:667
Symbol 662 GraphicUsed by:664 666
Symbol 663 TextUses:69Used by:664
Symbol 664 MovieClipUses:662 663Used by:667
Symbol 665 TextUses:69Used by:666
Symbol 666 MovieClipUses:662 665Used by:667
Symbol 667 MovieClip {asfiles.ResetDialogue}Uses:660 661 664 666Used by:Timeline
Symbol 668 BitmapUsed by:669
Symbol 669 GraphicUses:668Used by:680
Symbol 670 GraphicUsed by:680
Symbol 671 GraphicUsed by:672
Symbol 672 MovieClipUses:671Used by:680
Symbol 673 GraphicUsed by:680
Symbol 674 GraphicUsed by:680
Symbol 675 GraphicUsed by:680
Symbol 676 MovieClipUses:356 357 359 360Used by:680
Symbol 677 MovieClipUses:356 357 359 360Used by:680
Symbol 678 GraphicUsed by:680
Symbol 679 TextUses:69Used by:680
Symbol 680 MovieClip {intro2}Uses:669 350 351 670 353 672 369 673 674 675 354 355 356 357 358 366 676 677 678 679Used by:Timeline
Symbol 681 BitmapUsed by:682
Symbol 682 GraphicUses:681Used by:687
Symbol 683 GraphicUsed by:687 2481
Symbol 684 GraphicUsed by:687
Symbol 685 GraphicUsed by:687
Symbol 686 TextUses:69Used by:687
Symbol 687 MovieClip {intro3}Uses:682 348 349 350 351 352 361 362 363 364 365 367 376 683 684 379 378 380 381 382 394 395 396 408 409 410 353 354 355 356 357 358 359 360 366 685 686Used by:Timeline
Symbol 688 BitmapUsed by:689 723 1043 2649
Symbol 689 GraphicUses:688Used by:698 739
Symbol 690 GraphicUsed by:694
Symbol 691 GraphicUsed by:694
Symbol 692 GraphicUsed by:694
Symbol 693 GraphicUsed by:694
Symbol 694 MovieClip {reemus3_fla.introbox_440}Uses:690 691 692 693Used by:698
Symbol 695 GraphicUsed by:696 697
Symbol 696 MovieClipUses:695Used by:698
Symbol 697 MovieClipUses:695Used by:698
Symbol 698 MovieClip {asfiles.GameIntroDialogue}Uses:689 694 696 697Used by:Timeline
Symbol 699 GraphicUsed by:739
Symbol 700 GraphicUsed by:739
Symbol 701 GraphicUsed by:739
Symbol 702 GraphicUsed by:739
Symbol 703 GraphicUsed by:739
Symbol 704 GraphicUsed by:709
Symbol 705 GraphicUsed by:709
Symbol 706 GraphicUsed by:709
Symbol 707 GraphicUsed by:709
Symbol 708 GraphicUsed by:709
Symbol 709 MovieClipUses:704 705 706 707 708Used by:739
Symbol 710 GraphicUsed by:739
Symbol 711 GraphicUsed by:739
Symbol 712 GraphicUsed by:739
Symbol 713 GraphicUsed by:739
Symbol 714 GraphicUsed by:739
Symbol 715 GraphicUsed by:739
Symbol 716 GraphicUsed by:739
Symbol 717 GraphicUsed by:739
Symbol 718 GraphicUsed by:739
Symbol 719 GraphicUsed by:739
Symbol 720 GraphicUsed by:739
Symbol 721 ShapeTweeningUsed by:739
Symbol 722 GraphicUsed by:739
Symbol 723 GraphicUses:688Used by:739
Symbol 724 GraphicUsed by:739
Symbol 725 GraphicUsed by:739
Symbol 726 GraphicUsed by:739
Symbol 727 GraphicUsed by:739
Symbol 728 GraphicUsed by:739
Symbol 729 GraphicUsed by:739
Symbol 730 GraphicUsed by:739
Symbol 731 GraphicUsed by:739
Symbol 732 GraphicUsed by:739
Symbol 733 GraphicUsed by:739
Symbol 734 GraphicUsed by:739
Symbol 735 GraphicUsed by:739
Symbol 736 GraphicUsed by:739
Symbol 737 GraphicUsed by:739
Symbol 738 GraphicUsed by:739
Symbol 739 MovieClip {introshot1}Uses:689 699 700 701 702 703 709 710 711 712 713 714 715 716 717 367 369 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 469Used by:Timeline
Symbol 740 GraphicUsed by:806
Symbol 741 GraphicUsed by:745 775
Symbol 742 ShapeTweeningUsed by:745
Symbol 743 ShapeTweeningUsed by:745
Symbol 744 GraphicUsed by:745
Symbol 745 MovieClip {reemus3_fla.pouryellow_348}Uses:741 742 743 744Used by:771
Symbol 746 GraphicUsed by:750 779
Symbol 747 ShapeTweeningUsed by:750
Symbol 748 ShapeTweeningUsed by:750
Symbol 749 GraphicUsed by:750
Symbol 750 MovieClip {reemus3_fla.pourorange_349}Uses:746 747 748 749Used by:771
Symbol 751 GraphicUsed by:755 783
Symbol 752 ShapeTweeningUsed by:755
Symbol 753 ShapeTweeningUsed by:755
Symbol 754 GraphicUsed by:755
Symbol 755 MovieClip {reemus3_fla.pourred_350}Uses:751 752 753 754Used by:771
Symbol 756 GraphicUsed by:760 787
Symbol 757 ShapeTweeningUsed by:760
Symbol 758 ShapeTweeningUsed by:760
Symbol 759 GraphicUsed by:760
Symbol 760 MovieClip {reemus3_fla.pourblue_351}Uses:756 757 758 759Used by:771
Symbol 761 GraphicUsed by:765 791
Symbol 762 ShapeTweeningUsed by:765
Symbol 763 ShapeTweeningUsed by:765
Symbol 764 GraphicUsed by:765
Symbol 765 MovieClip {reemus3_fla.pourpurple_352}Uses:761 762 763 764Used by:771
Symbol 766 GraphicUsed by:770 795
Symbol 767 ShapeTweeningUsed by:770
Symbol 768 ShapeTweeningUsed by:770
Symbol 769 GraphicUsed by:770
Symbol 770 MovieClip {reemus3_fla.pourgreen_353}Uses:766 767 768 769Used by:771
Symbol 771 MovieClip {reemus3_fla.pour_347}Uses:745 750 755 760 765 770Used by:806
Symbol 772 ShapeTweeningUsed by:775
Symbol 773 ShapeTweeningUsed by:775
Symbol 774 GraphicUsed by:775
Symbol 775 MovieClip {reemus3_fla.drainyellow_355}Uses:741 772 773 774Used by:796
Symbol 776 ShapeTweeningUsed by:779
Symbol 777 ShapeTweeningUsed by:779
Symbol 778 GraphicUsed by:779
Symbol 779 MovieClip {reemus3_fla.drainorange_356}Uses:746 776 777 778Used by:796
Symbol 780 ShapeTweeningUsed by:783
Symbol 781 ShapeTweeningUsed by:783
Symbol 782 GraphicUsed by:783
Symbol 783 MovieClip {reemus3_fla.drainred_357}Uses:751 780 781 782Used by:796
Symbol 784 ShapeTweeningUsed by:787
Symbol 785 ShapeTweeningUsed by:787
Symbol 786 GraphicUsed by:787
Symbol 787 MovieClip {reemus3_fla.drainblue_358}Uses:756 784 785 786Used by:796
Symbol 788 ShapeTweeningUsed by:791
Symbol 789 ShapeTweeningUsed by:791
Symbol 790 GraphicUsed by:791
Symbol 791 MovieClip {reemus3_fla.drainpurple_359}Uses:761 788 789 790Used by:796
Symbol 792 ShapeTweeningUsed by:795
Symbol 793 ShapeTweeningUsed by:795
Symbol 794 GraphicUsed by:795
Symbol 795 MovieClip {reemus3_fla.draingreen_360}Uses:766 792 793 794Used by:796
Symbol 796 MovieClip {reemus3_fla.drain_354}Uses:775 779 783 787 791 795Used by:806
Symbol 797 GraphicUsed by:806
Symbol 798 GraphicUsed by:806
Symbol 799 GraphicUsed by:806
Symbol 800 GraphicUsed by:806
Symbol 801 GraphicUsed by:806
Symbol 802 GraphicUsed by:806
Symbol 803 GraphicUsed by:806
Symbol 804 GraphicUsed by:806
Symbol 805 GraphicUsed by:806
Symbol 806 MovieClip {asfiles.setting.features.PaintStatue}Uses:740 771 796 797 798 799 800 801 802 803 804 805Used by:2129
Symbol 807 GraphicUsed by:849
Symbol 808 GraphicUsed by:837 849 1923 1924 1942 1950 1968
Symbol 809 GraphicUsed by:849 1923 1924 1942 1950
Symbol 810 GraphicUsed by:837 849 1950 1968
Symbol 811 GraphicUsed by:849 1968
Symbol 812 GraphicUsed by:837 849 1950 1968
Symbol 813 GraphicUsed by:837 849 1923 1924 1942 1950 1968
Symbol 814 GraphicUsed by:837 849 1923 1924 1942 1950 1968
Symbol 815 GraphicUsed by:816 849
Symbol 816 MovieClipUses:815Used by:837 849 1950 1968
Symbol 817 GraphicUsed by:818 849
Symbol 818 MovieClipUses:817Used by:849 1950 1968
Symbol 819 GraphicUsed by:837 849 1950 1968
Symbol 820 TextUses:69Used by:849
Symbol 821 GraphicUsed by:849 1968
Symbol 822 GraphicUsed by:849 1968
Symbol 823 GraphicUsed by:849
Symbol 824 GraphicUsed by:849
Symbol 825 GraphicUsed by:849
Symbol 826 GraphicUsed by:849
Symbol 827 GraphicUsed by:849
Symbol 828 GraphicUsed by:849
Symbol 829 GraphicUsed by:849
Symbol 830 GraphicUsed by:837 1950
Symbol 831 GraphicUsed by:836
Symbol 832 GraphicUsed by:836
Symbol 833 GraphicUsed by:836 849
Symbol 834 GraphicUsed by:836
Symbol 835 GraphicUsed by:836
Symbol 836 MovieClipUses:831 832 833 834 835Used by:837 849
Symbol 837 MovieClipUses:808 810 830 812 813 814 816 836 819Used by:849
Symbol 838 GraphicUsed by:849
Symbol 839 GraphicUsed by:849
Symbol 840 GraphicUsed by:849
Symbol 841 GraphicUsed by:849
Symbol 842 GraphicUsed by:849
Symbol 843 GraphicUsed by:849
Symbol 844 GraphicUsed by:849
Symbol 845 GraphicUsed by:849
Symbol 846 GraphicUsed by:849
Symbol 847 GraphicUsed by:849
Symbol 848 GraphicUsed by:849
Symbol 849 MovieClip {asfiles.setting.features.Tinkertok}Uses:807 808 809 810 811 812 813 814 816 818 819 820 821 822 823 824 825 826 827 828 829 837 838 839 840 841 842 843 833 844 836 845 815 817 846 847 848Used by:2001
Symbol 850 GraphicUsed by:857 865 867 870 988 996 1011 1030 1208 1294 1295 1821
Symbol 851 GraphicUsed by:853
Symbol 852 GraphicUsed by:853
Symbol 853 MovieClip {reemus3_fla.stick_47}Uses:851 852Used by:857 865 867 870 1222 1490 1492 1493 1503 1504 1516 1551 1552 1566 1568 1569
Symbol 854 GraphicUsed by:857 1516
Symbol 855 GraphicUsed by:857 865 867 870 1492 1493 1503 1516 1551 1552 1568 1569
Symbol 856 GraphicUsed by:857 865 870 1219 1493 1503 1516 1551 1552
Symbol 857 MovieClip {ReemusHeld}Uses:405 850 853 854 855 856Used by:1513
Symbol 858 GraphicUsed by:865
Symbol 859 GraphicUsed by:865 867 870 1376 1535 1544 1564 1565 1573 1748 1759
Symbol 860 GraphicUsed by:865 867 870 1533 1543
Symbol 861 GraphicUsed by:865 867 870 1545 1553 1853
Symbol 862 GraphicUsed by:865 867 870 988 1011 1351 1365 1525 1563 1700 1715
Symbol 863 GraphicUsed by:865 867 870 1351 1365 1525 1563 1715
Symbol 864 GraphicUsed by:865 867 870 988 996 1011 1351 1525 1563
Symbol 865 MovieClip {reemusfrontholdhand}Uses:195 404 405 850 853 858 855 856 859 115 860 861 862 863 864Used by:1486
Symbol 866 GraphicUsed by:867 1503 1551
Symbol 867 MovieClip {HeldBackReemus}Uses:387 195 196 197 850 853 855 866 405 859 115 860 861 862 863 864Used by:1485
Symbol 868 GraphicUsed by:870 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1533 1536 1542 1543 1544 1552 1563 1564 1565 1569 1573 1731
Symbol 869 GraphicUsed by:870 1490 1492 1493 1503 1504 1516 1552 1569
Symbol 870 MovieClip {asfiles.char.HeldItemReemus}Uses:195 868 197 853 869 855 856 405 850 859 115 860 861 862 863 864Used by:1484 1487 1489
Symbol 871 GraphicUsed by:988
Symbol 872 GraphicUsed by:988
Symbol 873 GraphicUsed by:988
Symbol 874 GraphicUsed by:988
Symbol 875 GraphicUsed by:880
Symbol 876 GraphicUsed by:879 1023
Symbol 877 GraphicUsed by:879
Symbol 878 GraphicUsed by:879
Symbol 879 MovieClipUses:876 877 878Used by:880 1024 1029
Symbol 880 MovieClipUses:875 879Used by:988 996 1011 1296 1297
Symbol 881 GraphicUsed by:988
Symbol 882 GraphicUsed by:988
Symbol 883 GraphicUsed by:988 996 1011 1307 1445 1911 1959
Symbol 884 GraphicUsed by:988
Symbol 885 GraphicUsed by:988
Symbol 886 GraphicUsed by:988
Symbol 887 GraphicUsed by:988 996 1011 1359 1363 1371
Symbol 888 GraphicUsed by:988
Symbol 889 GraphicUsed by:988 996 1011 1359 1371
Symbol 890 GraphicUsed by:988 996 1011 1371
Symbol 891 GraphicUsed by:892
Symbol 892 MovieClip {reemus3_fla.nut_78}Uses:891Used by:988 996 1011 1373 1374 1731 1785
Symbol 893 GraphicUsed by:985
Symbol 894 GraphicUsed by:898 985 988 996 1011
Symbol 895 ShapeTweeningUsed by:898
Symbol 896 ShapeTweeningUsed by:898
Symbol 897 GraphicUsed by:898 985 988 996 1011
Symbol 898 MovieClip {reemus3_fla.yellowfill_83}Uses:894 895 896 897Used by:985
Symbol 899 GraphicUsed by:985
Symbol 900 GraphicUsed by:904
Symbol 901 ShapeTweeningUsed by:904
Symbol 902 ShapeTweeningUsed by:904
Symbol 903 GraphicUsed by:904 985 988 996 1011
Symbol 904 MovieClip {reemus3_fla.orangefill_79}Uses:900 901 902 903Used by:909 985 988 996 1011
Symbol 905 GraphicUsed by:909 985 988 996 1011
Symbol 906 ShapeTweeningUsed by:909
Symbol 907 ShapeTweeningUsed by:909
Symbol 908 GraphicUsed by:909 985 988 996 1011
Symbol 909 MovieClip {reemus3_fla.redfill_84}Uses:904 905 906 907 908Used by:985
Symbol 910 GraphicUsed by:914 985 988 996 1011
Symbol 911 ShapeTweeningUsed by:914
Symbol 912 ShapeTweeningUsed by:914
Symbol 913 GraphicUsed by:914 985 988 996 1011
Symbol 914 MovieClip {reemus3_fla.bluefill_85}Uses:910 911 912 913Used by:985
Symbol 915 GraphicUsed by:919 985 988 996 1011
Symbol 916 ShapeTweeningUsed by:919
Symbol 917 ShapeTweeningUsed by:919
Symbol 918 GraphicUsed by:919 985 988 996 1011
Symbol 919 MovieClip {reemus3_fla.purplefill_86}Uses:915 916 917 918Used by:985
Symbol 920 GraphicUsed by:924 985 988 996 1011
Symbol 921 ShapeTweeningUsed by:924
Symbol 922 ShapeTweeningUsed by:924
Symbol 923 GraphicUsed by:924 985 988 996 1011
Symbol 924 MovieClip {reemus3_fla.greenfill_87}Uses:920 921 922 923Used by:985
Symbol 925 ShapeTweeningUsed by:934
Symbol 926 ShapeTweeningUsed by:934
Symbol 927 ShapeTweeningUsed by:934
Symbol 928 ShapeTweeningUsed by:934
Symbol 929 ShapeTweeningUsed by:934
Symbol 930 ShapeTweeningUsed by:934
Symbol 931 ShapeTweeningUsed by:934
Symbol 932 ShapeTweeningUsed by:934
Symbol 933 GraphicUsed by:934
Symbol 934 MovieClip {reemus3_fla.yellowliquid_88}Uses:925 926 927 928 929 930 931 932 933Used by:985
Symbol 935 ShapeTweeningUsed by:944
Symbol 936 ShapeTweeningUsed by:944
Symbol 937 ShapeTweeningUsed by:944
Symbol 938 ShapeTweeningUsed by:944
Symbol 939 ShapeTweeningUsed by:944
Symbol 940 ShapeTweeningUsed by:944
Symbol 941 ShapeTweeningUsed by:944
Symbol 942 ShapeTweeningUsed by:944
Symbol 943 GraphicUsed by:944
Symbol 944 MovieClip {reemus3_fla.orangeliquid_89}Uses:935 936 937 938 939 940 941 942 943Used by:985
Symbol 945 ShapeTweeningUsed by:954
Symbol 946 ShapeTweeningUsed by:954
Symbol 947 ShapeTweeningUsed by:954
Symbol 948 ShapeTweeningUsed by:954
Symbol 949 ShapeTweeningUsed by:954
Symbol 950 ShapeTweeningUsed by:954
Symbol 951 ShapeTweeningUsed by:954
Symbol 952 ShapeTweeningUsed by:954
Symbol 953 GraphicUsed by:954
Symbol 954 MovieClip {reemus3_fla.redliquid_90}Uses:945 946 947 948 949 950 951 952 953Used by:985
Symbol 955 ShapeTweeningUsed by:964
Symbol 956 ShapeTweeningUsed by:964
Symbol 957 ShapeTweeningUsed by:964
Symbol 958 ShapeTweeningUsed by:964
Symbol 959 ShapeTweeningUsed by:964
Symbol 960 ShapeTweeningUsed by:964
Symbol 961 ShapeTweeningUsed by:964
Symbol 962 ShapeTweeningUsed by:964
Symbol 963 GraphicUsed by:964
Symbol 964 MovieClip {reemus3_fla.blueliquid_91}Uses:955 956 957 958 959 960 961 962 963Used by:985
Symbol 965 ShapeTweeningUsed by:974
Symbol 966 ShapeTweeningUsed by:974
Symbol 967 ShapeTweeningUsed by:974
Symbol 968 ShapeTweeningUsed by:974
Symbol 969 ShapeTweeningUsed by:974
Symbol 970 ShapeTweeningUsed by:974
Symbol 971 ShapeTweeningUsed by:974
Symbol 972 ShapeTweeningUsed by:974
Symbol 973 GraphicUsed by:974
Symbol 974 MovieClip {reemus3_fla.purpleliquid_92}Uses:965 966 967 968 969 970 971 972 973Used by:985
Symbol 975 ShapeTweeningUsed by:984
Symbol 976 ShapeTweeningUsed by:984
Symbol 977 ShapeTweeningUsed by:984
Symbol 978 ShapeTweeningUsed by:984
Symbol 979 ShapeTweeningUsed by:984
Symbol 980 ShapeTweeningUsed by:984
Symbol 981 ShapeTweeningUsed by:984
Symbol 982 ShapeTweeningUsed by:984
Symbol 983 GraphicUsed by:984
Symbol 984 MovieClip {reemus3_fla.greenliquid_93}Uses:975 976 977 978 979 980 981 982 983Used by:985
Symbol 985 MovieClip {asfiles.setting.features.Vase}Uses:893 898 899 904 909 914 919 924 894 897 903 905 908 910 913 915 918 920 923 934 944 954 964 974 984Used by:988 996 1427 1428 1431 1443 2073
Symbol 986 GraphicUsed by:988
Symbol 987 GraphicUsed by:988
Symbol 988 MovieClip {liamholdhandfront}Uses:871 872 873 874 880 881 850 882 883 884 885 886 887 888 889 890 892 985 894 897 986 903 904 905 908 910 913 915 918 920 923 987 862 864Used by:1288
Symbol 989 GraphicUsed by:996
Symbol 990 GraphicUsed by:996
Symbol 991 GraphicUsed by:996
Symbol 992 GraphicUsed by:996
Symbol 993 GraphicUsed by:996
Symbol 994 GraphicUsed by:996
Symbol 995 GraphicUsed by:996
Symbol 996 MovieClip {liamholdhandback}Uses:321 989 880 850 990 883 991 992 993 887 889 890 892 985 894 897 994 903 904 905 908 910 913 915 918 920 923 995 864Used by:1287
Symbol 997 GraphicUsed by:1011 1208 1281 1286 1294 1295 1297 1298 1307 1313 1314 1349 1351 1359 1363 1365 1371 1373 1374 1375 1376 1397 1418 1424 1426 1427 1428 1431 1442 1443 1445 1447 1732
Symbol 998 GraphicUsed by:1011 1296 1297 1313 1347 1349 1445
Symbol 999 GraphicUsed by:1011 1313 1349
Symbol 1000 GraphicUsed by:1011 1445
Symbol 1001 GraphicUsed by:1011 1347
Symbol 1002 GraphicUsed by:1011 1347
Symbol 1003 GraphicUsed by:1011 1347
Symbol 1004 GraphicUsed by:1011 1363
Symbol 1005 GraphicUsed by:1011 1373 1374
Symbol 1006 GraphicUsed by:1011
Symbol 1007 GraphicUsed by:1011
Symbol 1008 GraphicUsed by:1011 1424 1425
Symbol 1009 GraphicUsed by:1011 1296 1424 1425
Symbol 1010 GraphicUsed by:1011
Symbol 1011 MovieClip {asfiles.char.HeldItemLiam}Uses:997 998 999 880 850 1000 883 1001 1002 1003 887 1004 889 890 892 1005 1006 894 897 1007 903 904 905 908 910 913 915 918 920 923 1008 1009 862 864 1010Used by:1286 1289 1291
Symbol 1012 GraphicUsed by:1024
Symbol 1013 GraphicUsed by:1024
Symbol 1014 GraphicUsed by:1024
Symbol 1015 GraphicUsed by:1024
Symbol 1016 GraphicUsed by:1024
Symbol 1017 GraphicUsed by:1024
Symbol 1018 GraphicUsed by:1024
Symbol 1019 GraphicUsed by:1024
Symbol 1020 GraphicUsed by:1023
Symbol 1021 GraphicUsed by:1023
Symbol 1022 GraphicUsed by:1023
Symbol 1023 MovieClipUses:876 1020 1021 1022Used by:1024
Symbol 1024 MovieClip {asfiles.setting.features.Bee}Uses:1012 1013 879 1014 1015 1016 1017 1018 1019 1023Used by:1261 1262
Symbol 1025 GraphicUsed by:1026
Symbol 1026 MovieClipUses:1025Used by:1034 1036 1208 1821
Symbol 1027 GraphicUsed by:1029
Symbol 1028 GraphicUsed by:1029
Symbol 1029 MovieClipUses:1027 879 1028Used by:1034 1036 1208 1821
Symbol 1030 MovieClipUses:850Used by:1034 1036
Symbol 1031 GraphicUsed by:1033 1827
Symbol 1032 GraphicUsed by:1033 1208
Symbol 1033 MovieClip {reemus3_fla.liamsittinginshroom_36}Uses:1031 60 55 1032 226Used by:1036
Symbol 1034 MovieClip {reemus3_fla.carriagehovers_40}Uses:1026 1029 1030Used by:1035
Symbol 1035 MovieClipUses:1034Used by:1036
Symbol 1036 MovieClip {asfiles.setting.features.Carriage}Uses:1026 1029 1030 1033 1035Used by:1209
Symbol 1037 TextUses:69Used by:1041
Symbol 1038 TextUses:69Used by:1041
Symbol 1039 TextUses:69Used by:1041
Symbol 1040 TextUses:69Used by:1041
Symbol 1041 MovieClip {asfiles.MiniCredits}Uses:1037 1038 1039 298 1040Used by:Timeline
Symbol 1042 MovieClip {com.kongregate.as3.client.KongregateAPI}
Symbol 1043 GraphicUses:688Used by:Timeline
Symbol 1044 GraphicUsed by:1046
Symbol 1045 GraphicUsed by:1046
Symbol 1046 MovieClipUses:1044 1045Used by:1075
Symbol 1047 GraphicUsed by:1075
Symbol 1048 GraphicUsed by:1075
Symbol 1049 GraphicUsed by:1075
Symbol 1050 MovieClip {reemus3_fla.Action_4}Used by:1075
Symbol 1051 GraphicUsed by:1075
Symbol 1052 GraphicUsed by:1060
Symbol 1053 GraphicUsed by:1060
Symbol 1054 GraphicUsed by:1060
Symbol 1055 GraphicUsed by:1060
Symbol 1056 GraphicUsed by:1060
Symbol 1057 GraphicUsed by:1060
Symbol 1058 GraphicUsed by:1060
Symbol 1059 GraphicUsed by:1060
Symbol 1060 MovieClip {reemus3_fla.loadED_5}Uses:1052 1053 1054 1055 1056 1057 1058 1059Used by:1075
Symbol 1061 ShapeTweeningUsed by:1075
Symbol 1062 ShapeTweeningUsed by:1075
Symbol 1063 GraphicUsed by:1075
Symbol 1064 GraphicUsed by:1075
Symbol 1065 GraphicUsed by:1075
Symbol 1066 GraphicUsed by:1074 1075
Symbol 1067 GraphicUsed by:1074 1075
Symbol 1068 GraphicUsed by:1074 1075
Symbol 1069 GraphicUsed by:1074 1075
Symbol 1070 GraphicUsed by:1074 1075
Symbol 1071 GraphicUsed by:1073 1074
Symbol 1072 GraphicUsed by:1073
Symbol 1073 MovieClipUses:1071 1072Used by:1074 1075
Symbol 1074 ButtonUses:1066 1067 1068 1069 1070 1073 1071Used by:1075
Symbol 1075 MovieClip {reemus3_fla.X_LOAD_2}Uses:1046 1047 1048 1049 1050 1051 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1074 1070 1073Used by:1084
Symbol 1076 GraphicUsed by:1084
Symbol 1077 FontUsed by:1078
Symbol 1078 TextUses:1077Used by:1082
Symbol 1079 GraphicUsed by:1082
Symbol 1080 GraphicUsed by:1082
Symbol 1081 GraphicUsed by:1082
Symbol 1082 ButtonUses:1078 1079 1080 1081Used by:1084
Symbol 1083 GraphicUsed by:1084
Symbol 1084 MovieClip {reemus3_fla.NG_AD_OBJECT_WITH_PRELOADER_1}Uses:1075 1076 1082 1083Used by:Timeline
Symbol 1085 GraphicUsed by:1088
Symbol 1086 GraphicUsed by:1088
Symbol 1087 TextUses:488Used by:1088
Symbol 1088 MovieClipUses:1085 1086 285 1087Used by:Timeline
Symbol 1089 GraphicUsed by:1094 1149  Timeline
Symbol 1090 FontUsed by:1091 1101 1103 1105
Symbol 1091 TextUses:1090Used by:1094
Symbol 1092 FontUsed by:1093 1102 1104 1106 1114
Symbol 1093 TextUses:1092Used by:1094
Symbol 1094 MovieClipUses:1089 1091 1093Used by:1095
Symbol 1095 MovieClip {reemus3_fla.NewgroundsAPI_Ad_Unit_12}Uses:1094Used by:Timeline
Symbol 1096 FontUsed by:1097
Symbol 1097 TextUses:1096Used by:Timeline
Symbol 1098 GraphicUsed by:1107
Symbol 1099 GraphicUsed by:1100
Symbol 1100 ButtonUses:1099Used by:1107
Symbol 1101 TextUses:1090Used by:1107
Symbol 1102 TextUses:1092Used by:1107
Symbol 1103 TextUses:1090Used by:1107
Symbol 1104 TextUses:1092Used by:1107
Symbol 1105 TextUses:1090Used by:1107
Symbol 1106 TextUses:1092Used by:1107
Symbol 1107 MovieClip {reemus3_fla.NewgroundsAPI_Connector_14}Uses:1098 1100 1101 1102 1103 1104 1105 1106Used by:Timeline
Symbol 1108 GraphicUsed by:1120
Symbol 1109 FontUsed by:1111
Symbol 1110 FontUsed by:1111
Symbol 1111 TextUses:1109 1110Used by:1120
Symbol 1112 GraphicUsed by:1113
Symbol 1113 MovieClipUses:1112Used by:1120
Symbol 1114 EditableTextUses:1092Used by:1120
Symbol 1115 FontUsed by:1116 1117
Symbol 1116 TextUses:1115Used by:1120
Symbol 1117 EditableTextUses:1115Used by:1120
Symbol 1118 GraphicUsed by:1119
Symbol 1119 MovieClipUses:1118Used by:1120
Symbol 1120 MovieClip {reemus3_fla.NewgroundsAPI_Medal_Popup_16}Uses:1108 1111 1113 1114 1116 1117 1119Used by:Timeline
Symbol 1121 BitmapUsed by:1122
Symbol 1122 GraphicUses:1121Used by:1209
Symbol 1123 GraphicUsed by:1124
Symbol 1124 MovieClipUses:1123Used by:1209
Symbol 1125 GraphicUsed by:1148
Symbol 1126 GraphicUsed by:1127
Symbol 1127 MovieClipUses:1126Used by:1145 1146 1208 1812 1817 1823 1827 1876 1878
Symbol 1128 GraphicUsed by:1146 1208
Symbol 1129 GraphicUsed by:1145 1146 1208 1812 1816 1817 1823 1827 1876 1878
Symbol 1130 GraphicUsed by:1145 1146 1208
Symbol 1131 ShapeTweeningUsed by:1145
Symbol 1132 ShapeTweeningUsed by:1145
Symbol 1133 GraphicUsed by:1139
Symbol 1134 GraphicUsed by:1139
Symbol 1135 GraphicUsed by:1139
Symbol 1136 GraphicUsed by:1139
Symbol 1137 GraphicUsed by:1139
Symbol 1138 GraphicUsed by:1139
Symbol 1139 MovieClipUses:1133 1134 1135 1136 1137 1138Used by:1145 1816 1878
Symbol 1140 ShapeTweeningUsed by:1145
Symbol 1141 ShapeTweeningUsed by:1145
Symbol 1142 ShapeTweeningUsed by:1145
Symbol 1143 ShapeTweeningUsed by:1145
Symbol 1144 GraphicUsed by:1145
Symbol 1145 MovieClipUses:1131 1132 1127 1139 1129 1140 1141 1142 1143 1144 1130Used by:1146
Symbol 1146 MovieClipUses:1127 1128 1129 1130 1145Used by:1148
Symbol 1147 GraphicUsed by:1148
Symbol 1148 MovieClip {reemus3_fla.trees2_21}Uses:1125 1146 1147Used by:1209
Symbol 1149 MovieClipUses:1089Used by:1209 1741 1952
Symbol 1150 GraphicUsed by:1186
Symbol 1151 GraphicUsed by:1152
Symbol 1152 MovieClipUses:1151Used by:1186
Symbol 1153 GraphicUsed by:1186
Symbol 1154 GraphicUsed by:1163
Symbol 1155 GraphicUsed by:1163
Symbol 1156 GraphicUsed by:1163
Symbol 1157 GraphicUsed by:1163
Symbol 1158 GraphicUsed by:1163
Symbol 1159 GraphicUsed by:1163
Symbol 1160 GraphicUsed by:1163
Symbol 1161 GraphicUsed by:1163
Symbol 1162 GraphicUsed by:1163
Symbol 1163 MovieClip {reemus3_fla.woodchipsfly_29}Uses:1154 1155 1156 1157 1158 1159 1160 1161 1162Used by:1186
Symbol 1164 GraphicUsed by:1186
Symbol 1165 GraphicUsed by:1186
Symbol 1166 GraphicUsed by:1186
Symbol 1167 GraphicUsed by:1186
Symbol 1168 GraphicUsed by:1185
Symbol 1169 GraphicUsed by:1185
Symbol 1170 GraphicUsed by:1185
Symbol 1171 GraphicUsed by:1185
Symbol 1172 GraphicUsed by:1185
Symbol 1173 GraphicUsed by:1185
Symbol 1174 GraphicUsed by:1185
Symbol 1175 GraphicUsed by:1185
Symbol 1176 GraphicUsed by:1185
Symbol 1177 GraphicUsed by:1185
Symbol 1178 GraphicUsed by:1185
Symbol 1179 GraphicUsed by:1185
Symbol 1180 GraphicUsed by:1185
Symbol 1181 GraphicUsed by:1185
Symbol 1182 GraphicUsed by:1185
Symbol 1183 GraphicUsed by:1185
Symbol 1184 GraphicUsed by:1185
Symbol 1185 MovieClip {reemus3_fla.branchsplinters_30}Uses:1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184Used by:1186
Symbol 1186 MovieClip {reemus3_fla.tree_27}Uses:1150 1152 1153 1163 1164 1165 1166 1167 1185Used by:1209
Symbol 1187 GraphicUsed by:1209
Symbol 1188 GraphicUsed by:1208 1298
Symbol 1189 GraphicUsed by:1208
Symbol 1190 GraphicUsed by:1208
Symbol 1191 GraphicUsed by:1208
Symbol 1192 GraphicUsed by:1208 1812 1827
Symbol 1193 GraphicUsed by:1208 1812 1827
Symbol 1194 GraphicUsed by:1208
Symbol 1195 GraphicUsed by:1208
Symbol 1196 GraphicUsed by:1208
Symbol 1197 GraphicUsed by:1208
Symbol 1198 ShapeTweeningUsed by:1208
Symbol 1199 GraphicUsed by:1208
Symbol 1200 GraphicUsed by:1208 1812
Symbol 1201 GraphicUsed by:1208
Symbol 1202 GraphicUsed by:1208
Symbol 1203 GraphicUsed by:1208 1812 1827
Symbol 1204 GraphicUsed by:1208
Symbol 1205 GraphicUsed by:1208
Symbol 1206 GraphicUsed by:1208
Symbol 1207 GraphicUsed by:1208 1812 1827
Symbol 1208 MovieClip {reemus3_fla.liamuntiebug_41}Uses:1127 1128 1129 1130 1026 1029 850 1032 226 60 997 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207Used by:1209 1448
Symbol 1209 MovieClip {asfiles.setting.ForestLeft}Uses:1122 1124 1148 1149 1186 1187 1036 1208Used by:Timeline
Symbol 1210 BitmapUsed by:1211
Symbol 1211 GraphicUses:1210Used by:1222
Symbol 1212 GraphicUsed by:1213
Symbol 1213 MovieClipUses:1212Used by:1222
Symbol 1214 GraphicUsed by:1217
Symbol 1215 GraphicUsed by:1216 1294
Symbol 1216 MovieClipUses:1215Used by:1217
Symbol 1217 MovieClip {reemus3_fla.mushroom_44}Uses:1214 1216Used by:1222
Symbol 1218 GraphicUsed by:1219 1493
Symbol 1219 MovieClipUses:1218 856Used by:1222
Symbol 1220 GraphicUsed by:1221 1272
Symbol 1221 MovieClipUses:1220Used by:1222
Symbol 1222 MovieClip {asfiles.setting.ForestMiddle}Uses:1211 1213 1217 1219 853 1221Used by:Timeline
Symbol 1223 BitmapUsed by:1224
Symbol 1224 GraphicUses:1223Used by:1273
Symbol 1225 GraphicUsed by:1251 1254 1256
Symbol 1226 GraphicUsed by:1242
Symbol 1227 GraphicUsed by:1242
Symbol 1228 GraphicUsed by:1242
Symbol 1229 GraphicUsed by:1242
Symbol 1230 GraphicUsed by:1242
Symbol 1231 GraphicUsed by:1242
Symbol 1232 GraphicUsed by:1242
Symbol 1233 GraphicUsed by:1242
Symbol 1234 GraphicUsed by:1242
Symbol 1235 GraphicUsed by:1242
Symbol 1236 GraphicUsed by:1242
Symbol 1237 GraphicUsed by:1242
Symbol 1238 GraphicUsed by:1242
Symbol 1239 GraphicUsed by:1242
Symbol 1240 GraphicUsed by:1242
Symbol 1241 GraphicUsed by:1242
Symbol 1242 MovieClipUses:1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241Used by:1251 1254 1255 1256 1268 1269
Symbol 1243 GraphicUsed by:1251 1268
Symbol 1244 GraphicUsed by:1251
Symbol 1245 GraphicUsed by:1251 1268
Symbol 1246 GraphicUsed by:1251
Symbol 1247 GraphicUsed by:1251
Symbol 1248 GraphicUsed by:1251
Symbol 1249 GraphicUsed by:1251 1268
Symbol 1250 GraphicUsed by:1251 1268
Symbol 1251 MovieClip {reemus3_fla.bluefungusblowout_52}Uses:1225 1243 1244 1245 1242 1246 1247 1248 1249 1250Used by:1256
Symbol 1252 GraphicUsed by:1253
Symbol 1253 MovieClip {reemus3_fla.squshyholeflattens_53}Uses:1252Used by:1256
Symbol 1254 MovieClip {reemus3_fla.bluefunguspopup_54}Uses:1225 1242Used by:1256
Symbol 1255 MovieClip {reemus3_fla.beesmokeshrinkdown_55}Uses:1242Used by:1256 1269
Symbol 1256 MovieClipUses:1225 1242 1251 1253 1254 1255Used by:1273
Symbol 1257 GraphicUsed by:1258
Symbol 1258 MovieClipUses:1257Used by:1273
Symbol 1259 GraphicUsed by:1260
Symbol 1260 MovieClipUses:1259Used by:1273
Symbol 1261 MovieClip {reemus3_fla.beesflying_59}Uses:1024Used by:1263
Symbol 1262 MovieClip {reemus3_fla.beesprotect_62}Uses:1024Used by:1263
Symbol 1263 MovieClip {reemus3_fla.beesrildup_58}Uses:1261 1262Used by:1273
Symbol 1264 GraphicUsed by:1268
Symbol 1265 GraphicUsed by:1268
Symbol 1266 GraphicUsed by:1268
Symbol 1267 GraphicUsed by:1268
Symbol 1268 MovieClip {reemus3_fla.steamblastforbees_64}Uses:1243 1264 1245 1242 1265 1266 1267 1249 1250Used by:1269
Symbol 1269 MovieClipUses:1242 1268 1255Used by:1273
Symbol 1270 GraphicUsed by:1273
Symbol 1271 GraphicUsed by:1272 2000 2080 2114 2128
Symbol 1272 MovieClipUses:1220 1271Used by:1273
Symbol 1273 MovieClip {asfiles.setting.ForestRight}Uses:1224 1256 1258 1260 1263 1269 1270 1272Used by:Timeline
Symbol 1274 GraphicUsed by:1281 1286
Symbol 1275 GraphicUsed by:1281 1286
Symbol 1276 GraphicUsed by:1281 1286
Symbol 1277 GraphicUsed by:1281 1286
Symbol 1278 GraphicUsed by:1281 1286
Symbol 1279 GraphicUsed by:1281 1286
Symbol 1280 GraphicUsed by:1281 1286
Symbol 1281 MovieClipUses:997 54 219 55 60 1274 1275 1276 1277 1278 1279 1280Used by:1416 1418 1448
Symbol 1282 GraphicUsed by:1285 1287 1305 1425
Symbol 1283 GraphicUsed by:1285 1287
Symbol 1284 GraphicUsed by:1285 1287
Symbol 1285 MovieClipUses:384 385 321 322 324 386 1282 1283 331 1284Used by:1448
Symbol 1286 MovieClipUses:1011 54 219 55 60 1274 1275 997 1276 1277 1278 1279 1280Used by:1448
Symbol 1287 MovieClipUses:996 384 385 321 322 324 386 1282 1283 1284 331Used by:1448
Symbol 1288 MovieClipUses:319 320 321 322 324 326 328 988 329 330 331 323 332Used by:1448
Symbol 1289 MovieClip {reemus3_fla.liamholding_96}Uses:1011 218 226 60 220Used by:1448
Symbol 1290 MovieClip {reemus3_fla.liambounce_97}Uses:218 226 60 220Used by:1448 1827
Symbol 1291 MovieClip {reemus3_fla.liamholdstuffbounce_98}Uses:1011 218 226 60 220Used by:1448
Symbol 1292 GraphicUsed by:1294 1295 1296 1298 1349 1351 1375 1376 1397 1418 1419 1426 1427
Symbol 1293 GraphicUsed by:1294 1295 1296 1298 1349 1351 1375 1376 1397 1418 1419 1426 1427
Symbol 1294 MovieClip {reemus3_fla.bendingdownliam_99}Uses:1292 226 60 1215 219 997 1293 850 218 220Used by:1448
Symbol 1295 MovieClip {reemus3_fla.stickshrroomtop_100}Uses:997 850 401 1292 60 226 219 1293Used by:1448
Symbol 1296 MovieClipUses:998 880 401 1292 226 60 219 1293 1009Used by:1448
Symbol 1297 MovieClipUses:997 401 998 880Used by:1448
Symbol 1298 MovieClipUses:997 1292 226 60 219 1293 1188 401Used by:1448
Symbol 1299 GraphicUsed by:1305
Symbol 1300 GraphicUsed by:1305
Symbol 1301 GraphicUsed by:1305
Symbol 1302 GraphicUsed by:1305
Symbol 1303 GraphicUsed by:1305
Symbol 1304 GraphicUsed by:1305
Symbol 1305 MovieClip {reemus3_fla.grabflag_104}Uses:1299 1300 1282 322 386 324 385 1301 1302 1303 1304Used by:1448
Symbol 1306 GraphicUsed by:1307 1959
Symbol 1307 MovieClip {reemus3_fla.liampickflower_105}Uses:997 401 1306 883Used by:1448
Symbol 1308 GraphicUsed by:1313
Symbol 1309 GraphicUsed by:1313
Symbol 1310 GraphicUsed by:1313
Symbol 1311 GraphicUsed by:1313
Symbol 1312 GraphicUsed by:1313 1985
Symbol 1313 MovieClip {reemus3_fla.tossflagliam_106}Uses:998 999 401 997 1308 1309 1310 1311 1312Used by:1448
Symbol 1314 MovieClipUses:997 401Used by:1448
Symbol 1315 GraphicUsed by:1347
Symbol 1316 GraphicUsed by:1347
Symbol 1317 GraphicUsed by:1347
Symbol 1318 GraphicUsed by:1347
Symbol 1319 GraphicUsed by:1347
Symbol 1320 GraphicUsed by:1347
Symbol 1321 GraphicUsed by:1347
Symbol 1322 GraphicUsed by:1347
Symbol 1323 GraphicUsed by:1347
Symbol 1324 GraphicUsed by:1347
Symbol 1325 GraphicUsed by:1347
Symbol 1326 GraphicUsed by:1347
Symbol 1327 GraphicUsed by:1347
Symbol 1328 GraphicUsed by:1347
Symbol 1329 GraphicUsed by:1347
Symbol 1330 GraphicUsed by:1347
Symbol 1331 GraphicUsed by:1347
Symbol 1332 GraphicUsed by:1347
Symbol 1333 GraphicUsed by:1347
Symbol 1334 GraphicUsed by:1347
Symbol 1335 GraphicUsed by:1347
Symbol 1336 GraphicUsed by:1347
Symbol 1337 GraphicUsed by:1347
Symbol 1338 GraphicUsed by:1347
Symbol 1339 GraphicUsed by:1347
Symbol 1340 GraphicUsed by:1347
Symbol 1341 GraphicUsed by:1347
Symbol 1342 GraphicUsed by:1347
Symbol 1343 GraphicUsed by:1347
Symbol 1344 GraphicUsed by:1347
Symbol 1345 GraphicUsed by:1347
Symbol 1346 GraphicUsed by:1347
Symbol 1347 MovieClip {reemus3_fla.liampaints_108}Uses:1315 998 1001 1003 401 1316 1317 1318 1319 1320 1321 1002 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346Used by:1448
Symbol 1348 GraphicUsed by:1349 1985
Symbol 1349 MovieClip {reemus3_fla.liamgrabflag2_109}Uses:997 1348 1292 226 60 219 1293 998 999 401Used by:1448
Symbol 1350 GraphicUsed by:1351 1365
Symbol 1351 MovieClip {reemus3_fla.liamgetkey_110}Uses:997 1292 226 60 219 862 863 1350 1293 401 864Used by:1448
Symbol 1352 GraphicUsed by:1359
Symbol 1353 GraphicUsed by:1359
Symbol 1354 GraphicUsed by:1359
Symbol 1355 GraphicUsed by:1359
Symbol 1356 GraphicUsed by:1359
Symbol 1357 GraphicUsed by:1359
Symbol 1358 GraphicUsed by:1359
Symbol 1359 MovieClip {reemus3_fla.getwax_111}Uses:997 887 401 1352 1353 889 1354 1355 1356 1357 1358Used by:1448
Symbol 1360 GraphicUsed by:1361
Symbol 1361 MovieClipUses:1360Used by:1363 1703
Symbol 1362 GraphicUsed by:1363
Symbol 1363 MovieClip {reemus3_fla.liamgrabtreebark_112}Uses:1361 997 401 1362 887 1004Used by:1448
Symbol 1364 GraphicUsed by:1365
Symbol 1365 MovieClip {reemus3_fla.unlockchest_114}Uses:997 862 863 1350 401 1364Used by:1448
Symbol 1366 GraphicUsed by:1371
Symbol 1367 GraphicUsed by:1371
Symbol 1368 GraphicUsed by:1371
Symbol 1369 GraphicUsed by:1371
Symbol 1370 GraphicUsed by:1371
Symbol 1371 MovieClip {reemus3_fla.liamgetseal_115}Uses:997 887 889 401 1366 1367 1368 890 1369 1370Used by:1448
Symbol 1372 GraphicUsed by:1373
Symbol 1373 MovieClip {reemus3_fla.liamputsnut_116}Uses:997 892 1005 401 1372Used by:1448
Symbol 1374 MovieClip {reemus3_fla.grabnutliam_117}Uses:997 892 401 1005Used by:1448
Symbol 1375 MovieClip {reemus3_fla.liamfumblesquirrel_118}Uses:997 1292 226 60 219 1293 401Used by:1448
Symbol 1376 MovieClip {reemus3_fla.liamattemptsrock_119}Uses:997 859 1292 226 60 219 1293 401Used by:1448
Symbol 1377 GraphicUsed by:1397 1418
Symbol 1378 GraphicUsed by:1397
Symbol 1379 GraphicUsed by:1397
Symbol 1380 GraphicUsed by:1397
Symbol 1381 GraphicUsed by:1397
Symbol 1382 GraphicUsed by:1396
Symbol 1383 GraphicUsed by:1396
Symbol 1384 GraphicUsed by:1396
Symbol 1385 GraphicUsed by:1396
Symbol 1386 GraphicUsed by:1396
Symbol 1387 GraphicUsed by:1396
Symbol 1388 GraphicUsed by:1396
Symbol 1389 GraphicUsed by:1396
Symbol 1390 GraphicUsed by:1396
Symbol 1391 GraphicUsed by:1396
Symbol 1392 GraphicUsed by:1396
Symbol 1393 GraphicUsed by:1396
Symbol 1394 GraphicUsed by:1396
Symbol 1395 GraphicUsed by:1396
Symbol 1396 MovieClip {reemus3_fla.rocksfall_121}Uses:1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395Used by:1397
Symbol 1397 MovieClip {reemus3_fla.jumponjello_120}Uses:401 997 1292 226 60 219 1293 1377 58 1378 1379 1380 1381 1396Used by:1448
Symbol 1398 GraphicUsed by:1418
Symbol 1399 GraphicUsed by:1418
Symbol 1400 GraphicUsed by:1418
Symbol 1401 GraphicUsed by:1418 1424
Symbol 1402 GraphicUsed by:1418 1424
Symbol 1403 GraphicUsed by:1418
Symbol 1404 GraphicUsed by:1418 1424
Symbol 1405 GraphicUsed by:1418 1424
Symbol 1406 GraphicUsed by:1418 1424
Symbol 1407 GraphicUsed by:1418
Symbol 1408 GraphicUsed by:1418
Symbol 1409 GraphicUsed by:1418 1424
Symbol 1410 GraphicUsed by:1418 1424
Symbol 1411 GraphicUsed by:1416 1418
Symbol 1412 GraphicUsed by:1415
Symbol 1413 GraphicUsed by:1415
Symbol 1414 GraphicUsed by:1415
Symbol 1415 MovieClipUses:1412 1413 1414Used by:1416 1418
Symbol 1416 MovieClipUses:1411 1281 1415Used by:1418
Symbol 1417 GraphicUsed by:1418
Symbol 1418 MovieClip {reemus3_fla.liamjumpin_122}Uses:401 997 1292 226 60 219 1293 1377 58 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1415 1416 1417 1281Used by:1448
Symbol 1419 MovieClip {reemus3_fla.grabvineliam_125}Uses:1292 226 60 219 1293 401Used by:1448
Symbol 1420 GraphicUsed by:1424
Symbol 1421 GraphicUsed by:1424
Symbol 1422 GraphicUsed by:1424
Symbol 1423 GraphicUsed by:1424
Symbol 1424 MovieClip {reemus3_fla.tossgelationliam_126}Uses:1008 1009 218 226 60 220 997 1420 1401 1402 1421 1404 1405 1406 1422 1423 1409 1410Used by:1448
Symbol 1425 MovieClip {reemus3_fla.grabgelatin_127}Uses:321 1282 322 324 386 1008 1009 218 220 226 60Used by:1448
Symbol 1426 MovieClip {reemus3_fla.pressbuttonliam_128}Uses:997 1292 226 60 219 1293 401Used by:1448
Symbol 1427 MovieClip {reemus3_fla.liambuttonpress2_129}Uses:997 401 985 1292 226 60 219 1293Used by:1448
Symbol 1428 MovieClip {reemus3_fla.pourliquid_130}Uses:997 985 218 226 60 220Used by:1448
Symbol 1429 GraphicUsed by:1430
Symbol 1430 MovieClipUses:1429Used by:1431 1442
Symbol 1431 MovieClip {reemus3_fla.fillliquid_131}Uses:997 1430 213 220 226 60 985 218Used by:1448
Symbol 1432 GraphicUsed by:1442
Symbol 1433 GraphicUsed by:1442
Symbol 1434 GraphicUsed by:1442
Symbol 1435 GraphicUsed by:1442
Symbol 1436 GraphicUsed by:1442
Symbol 1437 GraphicUsed by:1442
Symbol 1438 GraphicUsed by:1442
Symbol 1439 GraphicUsed by:1442
Symbol 1440 GraphicUsed by:1442
Symbol 1441 GraphicUsed by:1442
Symbol 1442 MovieClip {reemus3_fla.liamgrabvase_133}Uses:997 218 220 226 60 1432 1430 1433 1434 1435 1436 1437 1438 1439 1440 1441Used by:1448
Symbol 1443 MovieClip {reemus3_fla.pourbackin_134}Uses:997 985 218 226 60 220Used by:1448
Symbol 1444 GraphicUsed by:1445 1911
Symbol 1445 MovieClipUses:998 1000 883 401 997 1444Used by:1448
Symbol 1446 GraphicUsed by:1447
Symbol 1447 MovieClip {reemus3_fla.jumplandliam_136}Uses:997 1446 226 60 220 218Used by:1448 2011
Symbol 1448 MovieClip {Liam}Uses:1281 1285 333 401 1286 1287 1288 1289 1290 1291 1294 1295 1296 1297 1298 1305 1307 1313 1314 1347 1349 1351 1359 1363 1365 1371 1373 1374 1375 1376 1397 1418 1419 1424 1425 1426 1427 1428 1431 1442 1443 1445 1447 1208Used by:Timeline
Symbol 1449 GraphicUsed by:1453 1462 1465 1484
Symbol 1450 GraphicUsed by:1453 1462 1465 1484
Symbol 1451 GraphicUsed by:1453 1484
Symbol 1452 GraphicUsed by:1453 1456 1459 1462 1465 1468 1472 1484 1506
Symbol 1453 MovieClip {reemus3_fla.reemusstrut1_139}Uses:1449 1450 1451 36 37 112 195 196 197 38 198 39 40 1452 48Used by:1473
Symbol 1454 GraphicUsed by:1456 1484
Symbol 1455 GraphicUsed by:1456
Symbol 1456 MovieClip {reemus3_fla.reemusstrut2_141}Uses:189 1454 1455 36 37 112 195 196 197 38 198 39 40 1452 635 48Used by:1473
Symbol 1457 GraphicUsed by:1459 1484
Symbol 1458 GraphicUsed by:1459
Symbol 1459 MovieClip {reemus3_fla.reemusstrut3_142}Uses:189 1457 1458 36 37 112 195 196 197 38 198 39 40 1452 635 48Used by:1473
Symbol 1460 GraphicUsed by:1462 1484
Symbol 1461 GraphicUsed by:1462
Symbol 1462 MovieClip {reemus3_fla.reemusstrut4_143}Uses:1450 1449 1460 1461 36 37 38 198 39 40 1452 635 196 197 48Used by:1473
Symbol 1463 GraphicUsed by:1465 1484
Symbol 1464 GraphicUsed by:1465
Symbol 1465 MovieClip {reemus3_fla.reemusstrut5_144}Uses:1449 1450 1463 1464 36 37 195 196 197 38 198 39 40 1452 635 48Used by:1473
Symbol 1466 GraphicUsed by:1468 1484
Symbol 1467 GraphicUsed by:1468
Symbol 1468 MovieClip {reemus3_fla.reemusstrut6_145}Uses:189 1466 1467 36 37 38 198 39 40 1452 635 196 197 48Used by:1473
Symbol 1469 GraphicUsed by:1472 1484
Symbol 1470 GraphicUsed by:1472 1484
Symbol 1471 GraphicUsed by:1472
Symbol 1472 MovieClip {reemus3_fla.reemusstrut7_146}Uses:1469 1470 1471 36 37 112 195 196 197 38 198 39 40 1452 48Used by:1473
Symbol 1473 MovieClipUses:1453 1456 1459 1462 1465 1468 1472Used by:1574
Symbol 1474 GraphicUsed by:1477 1485
Symbol 1475 GraphicUsed by:1477 1485
Symbol 1476 GraphicUsed by:1477 1485
Symbol 1477 MovieClipUses:387 195 196 197 305 1474 304 388 390 391 1475 1476Used by:1574
Symbol 1478 GraphicUsed by:1484
Symbol 1479 GraphicUsed by:1484
Symbol 1480 GraphicUsed by:1484
Symbol 1481 GraphicUsed by:1484
Symbol 1482 GraphicUsed by:1484
Symbol 1483 GraphicUsed by:1484
Symbol 1484 MovieClip {reemus3_fla.reemusholdwalk_152}Uses:870 1449 1450 1451 36 37 38 198 39 40 1452 195 196 197 48 51 1478 189 1454 635 1479 1457 112 1480 1460 1481 1463 1482 1466 1483 1469 1470Used by:1574
Symbol 1485 MovieClip {reemus3_fla.reemusholdwalkback_154}Uses:867 387 195 196 197 305 1474 304 388 390 391 1475 1476Used by:1574
Symbol 1486 MovieClip {reemus3_fla.reemusholdwalkfront_156}Uses:301 193 302 303 36 37 304 305 40 306 307 308 44 309 310 311 312 195 314 865 51 315 316 196 197 313 317Used by:1574
Symbol 1487 MovieClip {reemus3_fla.staticholdreemus_158}Uses:870 189 190 191 192 193 194 36 37 38 198 40 39 195 112 196 197 41 206 207 44 45 208Used by:1574
Symbol 1488 MovieClip {reemus3_fla.reemusstopbounce_159}Uses:36 37 189 190 191 192 193 194 112 195 196 197 38 198 39 40 41 206 207 44 45 208Used by:1574
Symbol 1489 MovieClip {reemus3_fla.reemusholdstuffbounce_160}Uses:36 37 189 190 191 192 193 194 870 38 198 39 40 112 195 196 197 41 206 207 44 45 208Used by:1574
Symbol 1490 MovieClip {reemus3_fla.reemuspullstick_161}Uses:36 37 195 868 197 405 189 190 191 192 193 194 38 198 39 40 112 196 41 206 207 44 45 208 853 869Used by:1574
Symbol 1491 GraphicUsed by:1492
Symbol 1492 MovieClip {reemus3_fla.reemusgetglue_162}Uses:36 37 195 868 197 853 869 189 190 191 192 193 194 38 198 40 39 112 196 41 206 207 44 45 208 1491 855Used by:1574
Symbol 1493 MovieClip {reemus3_fla.glueaxe_163}Uses:36 37 195 868 197 853 855 869 1218 189 190 191 192 193 194 38 198 40 39 112 196 41 206 207 44 45 208 856Used by:1574
Symbol 1494 GraphicUsed by:1503 1504 1551 1566 1568 1569
Symbol 1495 GraphicUsed by:1503 1504 1551 1566 1568 1569
Symbol 1496 GraphicUsed by:1503 1504 1551 1566 1568 1569
Symbol 1497 GraphicUsed by:1503 1504 1551 1566 1568 1569
Symbol 1498 GraphicUsed by:1503 1504 1569
Symbol 1499 GraphicUsed by:1503 1504 1551 1566 1568 1569
Symbol 1500 GraphicUsed by:1503 1504 1551 1566 1568 1569
Symbol 1501 GraphicUsed by:1503 1504 1569
Symbol 1502 GraphicUsed by:1503 1504 1551 1566 1568 1569
Symbol 1503 MovieClip {reemus3_fla.reemusaxe_164}Uses:193 1494 36 37 304 305 40 195 404 853 855 856 1495 196 197 1496 48 51 1497 38 198 1498 1499 1500 39 866 1501 635 1502 189 190 191 192 194 868 869 112 41 206 207 44 45 208Used by:1574
Symbol 1504 MovieClip {reemus3_fla.reemusSwingStick_165}Uses:193 1494 36 37 304 305 40 195 404 853 1495 196 197 1496 48 51 1497 38 198 1498 1499 1500 39 1501 635 1502 189 190 191 192 194 868 869 112 41 206 207 44 45 208Used by:1574
Symbol 1505 GraphicUsed by:1506
Symbol 1506 MovieClip {reemus3_fla.reemuspunchbug_166}Uses:36 37 195 115 868 197 189 190 191 193 192 194 38 198 39 40 112 196 41 206 207 44 45 208 1505 635 1452 47Used by:1574
Symbol 1507 GraphicUsed by:1513
Symbol 1508 GraphicUsed by:1513
Symbol 1509 GraphicUsed by:1513 1516
Symbol 1510 GraphicUsed by:1513 1516
Symbol 1511 GraphicUsed by:1513 1516
Symbol 1512 GraphicUsed by:1513 1516
Symbol 1513 MovieClip {reemus3_fla.reemusslamit_167}Uses:36 37 195 868 197 857 189 190 191 193 192 194 38 198 39 40 112 196 41 206 207 44 45 208 1507 1508 1509 1510 1511 1512Used by:1574
Symbol 1514 GraphicUsed by:1516
Symbol 1515 GraphicUsed by:1516
Symbol 1516 MovieClip {reemus3_fla.reemusslamitaxe_169}Uses:36 37 195 868 197 853 855 856 854 189 190 191 193 192 194 38 198 39 40 112 196 41 206 207 44 45 208 1514 869 1515 1509 1510 1511 1512Used by:1574
Symbol 1517 MovieClip {reemus3_fla.pullcordreemus_170}Uses:36 37 195 868 197 112 189 190 191 192 193 194 38 198 40 39 196 41 206 207 44 45 208 115Used by:1574
Symbol 1518 MovieClip {reemus3_fla.reemusrockpaper_171}Uses:36 37 195 868 197 115 118 189 190 191 192 193 194 38 198 40 39 112 196 41 206 207 44 45 208 109Used by:1574
Symbol 1519 GraphicUsed by:1525 1533 1536 1542 1543 1544 1563 1564 1565
Symbol 1520 GraphicUsed by:1525 1533 1536 1544 1563 1564 1565
Symbol 1521 GraphicUsed by:1525 1533 1536 1544 1563 1564 1565
Symbol 1522 GraphicUsed by:1525 1533 1536 1544 1563 1564 1565
Symbol 1523 GraphicUsed by:1525 1533 1536 1544 1563 1564 1565
Symbol 1524 GraphicUsed by:1525
Symbol 1525 MovieClip {reemus3_fla.reemusunlockchest_176}Uses:36 37 189 190 191 192 195 868 197 862 115 863 864 193 194 38 198 40 39 112 196 41 206 1519 44 45 208 1520 404 1521 1522 635 1523 1524Used by:1574
Symbol 1526 ShapeTweeningUsed by:1531
Symbol 1527 GraphicUsed by:1531 1533 1536 1542 1543 1544 1564 1565 1573
Symbol 1528 ShapeTweeningUsed by:1531
Symbol 1529 ShapeTweeningUsed by:1531
Symbol 1530 GraphicUsed by:1531 1573
Symbol 1531 MovieClip {reemus3_fla.blocktreeholereemus_177}Uses:36 37 189 190 191 192 193 194 195 112 196 197 38 198 40 39 41 206 1526 44 45 208 404 1527 1528 1529 1530Used by:1574
Symbol 1532 GraphicUsed by:1533
Symbol 1533 MovieClip {reemus3_fla.grabsquirrel_178}Uses:36 37 189 190 191 192 193 194 195 112 196 197 38 198 40 39 41 206 43 44 45 208 1520 404 1527 1521 1522 635 1523 1519 1532 430 868 115 860Used by:1574
Symbol 1534 GraphicUsed by:1535 1564 1748
Symbol 1535 MovieClip {reemus3_fla.rock_180}Uses:859 1534Used by:1536 1741 1751 1775 1778
Symbol 1536 MovieClip {reemus3_fla.reemusdroprock_179}Uses:36 37 189 190 191 192 195 868 197 1535 193 194 38 198 40 39 112 196 41 206 1519 44 45 208 1520 404 1527 1521 1522 635 1523Used by:1574
Symbol 1537 GraphicUsed by:1543
Symbol 1538 GraphicUsed by:1543
Symbol 1539 GraphicUsed by:1542
Symbol 1540 GraphicUsed by:1542 1554
Symbol 1541 GraphicUsed by:1542
Symbol 1542 MovieClip {reemus3_fla.parachutyreemusandliam_182}Uses:1539 226 60 1540 36 37 195 868 197 38 198 40 39 404 1527 41 206 1519 44 45 208 115 1541Used by:1543
Symbol 1543 MovieClip {reemus3_fla.parachute_181}Uses:218 226 60 220 195 868 197 115 860 189 190 191 192 193 194 36 37 38 198 40 39 112 196 41 206 1519 44 45 208 1537 404 1527 1538 1542Used by:1574
Symbol 1544 MovieClip {reemus3_fla.pickuprockreemus_183}Uses:36 37 189 190 191 192 193 194 195 112 196 197 38 198 40 39 859 41 206 43 44 45 208 1520 404 1527 1521 1522 635 1523 1519 868 405Used by:1574
Symbol 1545 MovieClip {reemus3_fla.reemusgrabshrrom_184}Uses:36 37 112 195 196 197 189 190 191 192 193 194 38 198 40 39 41 206 207 44 45 208 861 405Used by:1574
Symbol 1546 GraphicUsed by:1551 1566 1568
Symbol 1547 GraphicUsed by:1551 1566 1568
Symbol 1548 GraphicUsed by:1551 1566 1568
Symbol 1549 GraphicUsed by:1551 1566
Symbol 1550 GraphicUsed by:1551
Symbol 1551 MovieClip {reemus3_fla.bustaxe_185}Uses:193 1494 36 37 304 305 40 195 404 853 855 856 1495 196 197 1496 48 51 1497 38 198 1546 1499 1500 39 866 1547 635 1502 1548 1549 1550 112 189 190 191 192 194 41 206 207 44 45 208Used by:1574
Symbol 1552 MovieClip {reemus3_fla.dropaxe_186}Uses:195 868 197 853 855 856 869 36 37 189 190 191 192 193 194 38 198 40 39 112 196 41 206 207 44 45 208Used by:1574
Symbol 1553 MovieClip {reemus3_fla.throwMushroom_187}Uses:36 37 405 861 195 196 197 189 190 191 192 193 194 38 198 40 39 112 41 206 207 44 45 208Used by:1574
Symbol 1554 MovieClip {reemus3_fla.Reemusjumpslands_188}Uses:1540 36 37 112 195 196 197 38 198 39 40 41 206 207 44 45 208 189 190 191 192 193 194Used by:1574 2011
Symbol 1555 GraphicUsed by:1562
Symbol 1556 GraphicUsed by:1562
Symbol 1557 GraphicUsed by:1562
Symbol 1558 GraphicUsed by:1562
Symbol 1559 GraphicUsed by:1562
Symbol 1560 GraphicUsed by:1562
Symbol 1561 GraphicUsed by:1562
Symbol 1562 MovieClipUses:1555 189 193 1556 1557 41 1558 1559 208 1560 1561Used by:1574
Symbol 1563 MovieClip {reemus3_fla.reemusgrabkey_190}Uses:36 37 189 190 191 192 195 112 196 197 193 194 38 198 862 863 864 40 39 41 206 1519 44 45 208 1520 404 405 1521 1522 635 1523 115 868Used by:1574
Symbol 1564 MovieClip {reemus3_fla.pickuprock2_191}Uses:36 37 189 190 191 192 193 194 195 112 196 197 38 198 40 39 41 206 43 44 45 208 1520 404 1527 1521 1522 635 1523 1519 1534 859 868 405Used by:1574
Symbol 1565 MovieClip {reemus3_fla.reemustakerockout_192}Uses:36 37 189 190 191 192 193 194 195 112 196 197 38 198 40 39 41 206 43 44 45 208 1520 404 1527 1521 1522 635 1523 1519 859 868 405Used by:1574
Symbol 1566 MovieClip {reemus3_fla.breakjuststick_193}Uses:193 1494 36 37 304 305 40 195 404 853 1495 196 197 1496 48 51 1497 38 198 1546 1499 1500 39 1549 1547 635 1502 1548 112 189 190 191 192 194 41 206 207 44 45 208Used by:1574
Symbol 1567 GraphicUsed by:1568
Symbol 1568 MovieClip {reemus3_fla.gluestickbreak_194}Uses:193 1494 36 37 304 305 40 195 404 853 855 1495 196 197 1496 48 51 1497 38 198 1546 1499 1500 39 1567 1547 635 1502 1548 112 189 190 191 192 194 41 206 207 44 45 208Used by:1574
Symbol 1569 MovieClip {reemus3_fla.gluestickhittree_195}Uses:193 1494 36 37 304 305 40 195 404 853 855 1495 196 197 1496 48 51 1497 38 198 1498 1499 1500 39 1501 635 1502 189 190 191 192 194 868 869 112 41 206 207 44 45 208Used by:1574
Symbol 1570 ShapeTweeningUsed by:1573
Symbol 1571 ShapeTweeningUsed by:1573
Symbol 1572 ShapeTweeningUsed by:1573
Symbol 1573 MovieClip {reemus3_fla.blocktreeholewithrock_196}Uses:36 37 189 190 191 192 193 194 195 868 197 38 198 40 39 859 112 196 41 206 1570 44 45 208 404 1527 1571 1572 1530Used by:1574
Symbol 1574 MovieClip {Reemus}Uses:1473 1477 318 209 1484 1485 1486 1487 1488 1489 1490 1492 1493 1503 1504 1506 1513 1516 1517 1518 1525 1531 1533 1536 1543 1544 1545 1551 1552 1553 1554 1562 1563 1564 1565 1566 1568 1569 1573Used by:Timeline
Symbol 1575 GraphicUsed by:1658
Symbol 1576 Sound {BeachMusic}Used by:1658
Symbol 1577 Sound {CaveInteriorMusic}Used by:1658
Symbol 1578 Sound {CutSceneMusic}Used by:1658
Symbol 1579 Sound {ForestMusic}Used by:1658
Symbol 1580 Sound {LiamEndingMusic}Used by:1658
Symbol 1581 Sound {ReemusEndingMusic}Used by:1658
Symbol 1582 Sound {SpireMusic}Used by:1658
Symbol 1583 Sound {SquirrelMusic}Used by:1658
Symbol 1584 Sound {TempleMusic}Used by:1658
Symbol 1585 Sound {VisitorLeftMusic}Used by:1658
Symbol 1586 Sound {VisitorRightMusic}Used by:1658
Symbol 1587 Sound {WarMusic}Used by:1658
Symbol 1588 Sound {WrapMusic}Used by:1658
Symbol 1589 Sound {SpitSound}Used by:1658
Symbol 1590 Sound {CrashSound}Used by:1658
Symbol 1591 Sound {SwingSound}Used by:1658
Symbol 1592 Sound {ChopSound}Used by:1658
Symbol 1593 Sound {StretchSound}Used by:1658
Symbol 1594 Sound {GulpSound}Used by:1658
Symbol 1595 Sound {BeeSound}Used by:1658
Symbol 1596 Sound {RingBellSound}Used by:1658
Symbol 1597 Sound {BoingSound}Used by:1658
Symbol 1598 Sound {BurpSound}Used by:1658
Symbol 1599 Sound {CartoonBoinkSound}Used by:1658
Symbol 1600 Sound {CartoonZipSound}Used by:1658
Symbol 1601 Sound {CartoonBonkSound}Used by:1658
Symbol 1602 Sound {SquirrelSound}Used by:1658
Symbol 1603 Sound {ClickSound}Used by:1658
Symbol 1604 Sound {SnarlSound}Used by:1658
Symbol 1605 Sound {BiteSound}Used by:1658
Symbol 1606 Sound {DoorOpenSound}Used by:1658
Symbol 1607 Sound {ChestOpenSound}Used by:1658
Symbol 1608 Sound {PourSound}Used by:1658
Symbol 1609 Sound {DropletSound}Used by:1658
Symbol 1610 Sound {CrunchyBreakSound}Used by:1658
Symbol 1611 Sound {FillSound}Used by:1658
Symbol 1612 Sound {CampfireSound}Used by:1658
Symbol 1613 Sound {FlutterSound}Used by:1658
Symbol 1614 Sound {FlappingSound}Used by:1658
Symbol 1615 Sound {WoodStepSound}Used by:1658
Symbol 1616 Sound {CroakSound}Used by:1658
Symbol 1617 Sound {HissSound}Used by:1658
Symbol 1618 Sound {GrowlSound}Used by:1658
Symbol 1619 Sound {JingleSound}Used by:1658
Symbol 1620 Sound {LightningSound}Used by:1658
Symbol 1621 Sound {PourSound2}Used by:1658
Symbol 1622 Sound {FlySound}Used by:1658
Symbol 1623 Sound {MuddyDropSound}Used by:1658
Symbol 1624 Sound {NightSound}Used by:1658
Symbol 1625 Sound {DoomSound}Used by:1658
Symbol 1626 Sound {PlaneSound}Used by:1658
Symbol 1627 Sound {PopSound}Used by:1658
Symbol 1628 Sound {SmackSound}Used by:1658
Symbol 1629 Sound {RipSound}Used by:1658
Symbol 1630 Sound {HeavyThudSound}Used by:1658
Symbol 1631 Sound {CrumblingSound}Used by:1658
Symbol 1632 Sound {BubblingSound}Used by:1658
Symbol 1633 Sound {LightThudSound}Used by:1658
Symbol 1634 Sound {EatingSound}Used by:1658
Symbol 1635 Sound {SlowLaughSound}Used by:1658
Symbol 1636 Sound {SnakeAttackSound}Used by:1658
Symbol 1637 Sound {Splash1Sound}Used by:1658
Symbol 1638 Sound {Splash2Sound}Used by:1658
Symbol 1639 Sound {SplatSound}Used by:1658
Symbol 1640 Sound {Spring1Sound}Used by:1658
Symbol 1641 Sound {Spring2Sound}Used by:1658
Symbol 1642 Sound {Spring3Sound}Used by:1658
Symbol 1643 Sound {SquirrelDistressSound}Used by:1658
Symbol 1644 Sound {SquirtSound}Used by:1658
Symbol 1645 Sound {Squirt2Sound}Used by:1658
Symbol 1646 Sound {SquishSound}Used by:1658
Symbol 1647 Sound {ThudLandSound}Used by:1658
Symbol 1648 Sound {ThunderSound}Used by:1658
Symbol 1649 Sound {TigerSound}Used by:1658
Symbol 1650 Sound {TombOpenSound}Used by:1658
Symbol 1651 Sound {Tomb2Sound}Used by:1658
Symbol 1652 Sound {Tomb3Sound}Used by:1658
Symbol 1653 Sound {TreeFallSound}Used by:1658
Symbol 1654 Sound {WaterfallSound}Used by:1658
Symbol 1655 Sound {WhipSound}Used by:1658
Symbol 1656 Sound {WhooshSound}Used by:1658
Symbol 1657 Sound {WoodFallSound}Used by:1658
Symbol 1658 MovieClipUses:1575 1576 2 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657Used by:Timeline
Symbol 1659 BitmapUsed by:1660
Symbol 1660 GraphicUses:1659Used by:1689
Symbol 1661 GraphicUsed by:1662
Symbol 1662 MovieClipUses:1661Used by:1689
Symbol 1663 GraphicUsed by:1686
Symbol 1664 GraphicUsed by:1686
Symbol 1665 GraphicUsed by:1686
Symbol 1666 GraphicUsed by:1686
Symbol 1667 GraphicUsed by:1686
Symbol 1668 GraphicUsed by:1686
Symbol 1669 GraphicUsed by:1686
Symbol 1670 GraphicUsed by:1686
Symbol 1671 GraphicUsed by:1686
Symbol 1672 GraphicUsed by:1686
Symbol 1673 GraphicUsed by:1686
Symbol 1674 GraphicUsed by:1686
Symbol 1675 GraphicUsed by:1686
Symbol 1676 GraphicUsed by:1686
Symbol 1677 GraphicUsed by:1686
Symbol 1678 GraphicUsed by:1686
Symbol 1679 GraphicUsed by:1686
Symbol 1680 GraphicUsed by:1686
Symbol 1681 GraphicUsed by:1686
Symbol 1682 GraphicUsed by:1686
Symbol 1683 GraphicUsed by:1686
Symbol 1684 GraphicUsed by:1686
Symbol 1685 GraphicUsed by:1686
Symbol 1686 MovieClip {reemus3_fla.waxtree_200}Uses:1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685Used by:1689
Symbol 1687 GraphicUsed by:1688
Symbol 1688 MovieClipUses:1687Used by:1689
Symbol 1689 MovieClip {asfiles.setting.BeachLeft}Uses:1660 1662 1686 1688Used by:Timeline
Symbol 1690 BitmapUsed by:1691
Symbol 1691 GraphicUses:1690Used by:1703
Symbol 1692 GraphicUsed by:1693
Symbol 1693 MovieClipUses:1692Used by:1703
Symbol 1694 GraphicUsed by:1700 1716 1719
Symbol 1695 GraphicUsed by:1700 1715 1716 1719
Symbol 1696 GraphicUsed by:1700 1715 1716 1719
Symbol 1697 GraphicUsed by:1700
Symbol 1698 GraphicUsed by:1700
Symbol 1699 GraphicUsed by:1700
Symbol 1700 MovieClip {reemus3_fla.wardrobe_204}Uses:1694 1695 1696 1697 1698 862 1699Used by:1703
Symbol 1701 GraphicUsed by:1702
Symbol 1702 MovieClipUses:1701Used by:1703 1764 1786 1952
Symbol 1703 MovieClip {asfiles.setting.BeachMiddle}Uses:1691 1693 1361 1700 1702Used by:Timeline
Symbol 1704 BitmapUsed by:1705
Symbol 1705 GraphicUses:1704Used by:1720
Symbol 1706 GraphicUsed by:1709
Symbol 1707 GraphicUsed by:1709
Symbol 1708 GraphicUsed by:1709
Symbol 1709 MovieClipUses:1706 1707 1708Used by:1720
Symbol 1710 GraphicUsed by:1711
Symbol 1711 MovieClipUses:1710Used by:1720
Symbol 1712 GraphicUsed by:1720
Symbol 1713 GraphicUsed by:1715
Symbol 1714 GraphicUsed by:1715
Symbol 1715 MovieClip {reemus3_fla.secondbox_209}Uses:1713 1695 1696 862 863 1714Used by:1720
Symbol 1716 MovieClipUses:1694 1695 1696Used by:1720
Symbol 1717 GraphicUsed by:1718
Symbol 1718 MovieClipUses:1717Used by:1720
Symbol 1719 MovieClipUses:1694 1695 1696Used by:1720
Symbol 1720 MovieClip {asfiles.setting.BeachRight}Uses:1705 1709 1711 1712 1715 609 1716 1718 1719Used by:Timeline
Symbol 1721 BitmapUsed by:1722
Symbol 1722 GraphicUses:1721Used by:1741
Symbol 1723 GraphicUsed by:1724
Symbol 1724 MovieClipUses:1723Used by:1741
Symbol 1725 GraphicUsed by:1731 1732 1733
Symbol 1726 GraphicUsed by:1733
Symbol 1727 GraphicUsed by:1731
Symbol 1728 GraphicUsed by:1731
Symbol 1729 GraphicUsed by:1731
Symbol 1730 GraphicUsed by:1731
Symbol 1731 MovieClip {reemus3_fla.reemuspulltree1_220}Uses:36 37 195 868 197 405 1725 189 190 191 192 193 194 38 198 40 39 41 206 207 44 45 208 112 196 1727 1728 1729 892 1730Used by:1733
Symbol 1732 MovieClip {reemus3_fla.liamtreepull_221}Uses:997 1725 218 226 60 220Used by:1733
Symbol 1733 MovieClip {reemus3_fla.bendytree_219}Uses:1725 1726 1731 1732Used by:1741
Symbol 1734 GraphicUsed by:1738 1758
Symbol 1735 GraphicUsed by:1738 1758 1781 1784
Symbol 1736 GraphicUsed by:1738 1758 1781 1784
Symbol 1737 GraphicUsed by:1738
Symbol 1738 MovieClip {reemus3_fla.squirreljumpoff_222}Uses:1734 430 1735 1736 1737Used by:1741
Symbol 1739 GraphicUsed by:1740
Symbol 1740 MovieClipUses:1739Used by:1741
Symbol 1741 MovieClip {asfiles.setting.BurrowLeft}Uses:1722 1724 1733 1535 1738 1740 1149Used by:Timeline
Symbol 1742 BitmapUsed by:1743
Symbol 1743 GraphicUses:1742Used by:1764
Symbol 1744 GraphicUsed by:1745
Symbol 1745 MovieClipUses:1744Used by:1764
Symbol 1746 GraphicUsed by:1748
Symbol 1747 GraphicUsed by:1748
Symbol 1748 MovieClipUses:1746 1534 859 1747Used by:1764
Symbol 1749 GraphicUsed by:1751
Symbol 1750 GraphicUsed by:1751
Symbol 1751 MovieClipUses:1749 1535 1750Used by:1764
Symbol 1752 GraphicUsed by:1758
Symbol 1753 TextUses:69Used by:1758
Symbol 1754 GraphicUsed by:1758
Symbol 1755 GraphicUsed by:1758
Symbol 1756 GraphicUsed by:1758
Symbol 1757 GraphicUsed by:1758
Symbol 1758 MovieClip {reemus3_fla.squirrel2_228}Uses:1752 1734 1753 430 1735 1736 1754 1755 1756 1757Used by:1764
Symbol 1759 MovieClip {reemus3_fla.droppedrock_229}Uses:859Used by:1764
Symbol 1760 GraphicUsed by:1761
Symbol 1761 MovieClipUses:1760Used by:1764
Symbol 1762 GraphicUsed by:1763
Symbol 1763 MovieClipUses:1762Used by:1764
Symbol 1764 MovieClip {asfiles.setting.BurrowMiddle}Uses:1743 1745 1748 1751 1758 1759 1761 1763 1702Used by:Timeline
Symbol 1765 BitmapUsed by:1766
Symbol 1766 GraphicUses:1765Used by:1786
Symbol 1767 GraphicUsed by:1768
Symbol 1768 MovieClipUses:1767Used by:1786
Symbol 1769 GraphicUsed by:1786
Symbol 1770 GraphicUsed by:1772
Symbol 1771 GraphicUsed by:1772
Symbol 1772 MovieClipUses:1770 1771Used by:1786
Symbol 1773 GraphicUsed by:1775
Symbol 1774 GraphicUsed by:1775
Symbol 1775 MovieClipUses:1773 1535 1774Used by:1786
Symbol 1776 GraphicUsed by:1778
Symbol 1777 GraphicUsed by:1778
Symbol 1778 MovieClipUses:1776 1535 1777Used by:1786
Symbol 1779 GraphicUsed by:1784
Symbol 1780 GraphicUsed by:1781
Symbol 1781 MovieClipUses:1735 1736 1780Used by:1784
Symbol 1782 GraphicUsed by:1784
Symbol 1783 GraphicUsed by:1784
Symbol 1784 MovieClip {reemus3_fla.squirrelrun1_237}Uses:1779 1781 1735 1736 430 1782 1783Used by:1786
Symbol 1785 MovieClip {reemus3_fla.tumblelingnut_239}Uses:892Used by:1786
Symbol 1786 MovieClip {asfiles.setting.BurrowRight}Uses:1766 1768 1769 1772 1775 1778 1784 1785 1702Used by:Timeline
Symbol 1787 BitmapUsed by:1788
Symbol 1788 GraphicUses:1787Used by:1828
Symbol 1789 GraphicUsed by:1790
Symbol 1790 MovieClipUses:1789Used by:1828
Symbol 1791 GraphicUsed by:1794
Symbol 1792 GraphicUsed by:1794
Symbol 1793 GraphicUsed by:1794
Symbol 1794 MovieClip {reemus3_fla.bigcave_242}Uses:1791 1792 1793Used by:1828
Symbol 1795 GraphicUsed by:1796
Symbol 1796 MovieClipUses:1795Used by:1828
Symbol 1797 GraphicUsed by:1798
Symbol 1798 MovieClipUses:1797Used by:1828
Symbol 1799 GraphicUsed by:1802
Symbol 1800 GraphicUsed by:1802
Symbol 1801 GraphicUsed by:1802
Symbol 1802 MovieClip {reemus3_fla.lifestone_245}Uses:1799 89 1800 1801Used by:1828
Symbol 1803 GraphicUsed by:1817
Symbol 1804 GraphicUsed by:1812
Symbol 1805 GraphicUsed by:1812
Symbol 1806 GraphicUsed by:1812
Symbol 1807 GraphicUsed by:1812
Symbol 1808 GraphicUsed by:1812
Symbol 1809 GraphicUsed by:1812
Symbol 1810 GraphicUsed by:1812
Symbol 1811 GraphicUsed by:1812
Symbol 1812 MovieClip {reemus3_fla.jumpbug_249}Uses:1804 1192 1129 1193 1805 1200 1203 1806 1807 1808 1809 1810 1811 1207 1127Used by:1817
Symbol 1813 GraphicUsed by:1817
Symbol 1814 GraphicUsed by:1816
Symbol 1815 GraphicUsed by:1816
Symbol 1816 MovieClipUses:1814 1139 1129 1815Used by:1817
Symbol 1817 MovieClipUses:1803 1127 1129 1812 1813 1816Used by:1828
Symbol 1818 GraphicUsed by:1819
Symbol 1819 MovieClipUses:1818Used by:1820
Symbol 1820 MovieClip {reemus3_fla.CaveDoor_251}Uses:1819Used by:1828
Symbol 1821 MovieClipUses:1026 1029 850Used by:1827
Symbol 1822 GraphicUsed by:1823
Symbol 1823 MovieClipUses:1822 1127 1129Used by:1827
Symbol 1824 GraphicUsed by:1827
Symbol 1825 ShapeTweeningUsed by:1827
Symbol 1826 GraphicUsed by:1827
Symbol 1827 MovieClip {reemus3_fla.liambeeintro_253}Uses:1821 1031 60 55 1823 1192 1129 1203 1193 218 226 1824 1825 1290 1826 1207 1127Used by:1828
Symbol 1828 MovieClip {asfiles.setting.CaveDoor}Uses:1788 1790 1794 1796 1798 1802 1817 1820 1827Used by:Timeline
Symbol 1829 GraphicUsed by:1831
Symbol 1830 GraphicUsed by:1831
Symbol 1831 MovieClip {reemus3_fla.waterturnstojello_258}Uses:1829 1830Used by:1834
Symbol 1832 BitmapUsed by:1833
Symbol 1833 GraphicUses:1832Used by:1834
Symbol 1834 MovieClip {reemus3_fla.CAVEPANBG_257}Uses:1831 1833Used by:1892
Symbol 1835 GraphicUsed by:1836
Symbol 1836 MovieClipUses:1835Used by:1892
Symbol 1837 GraphicUsed by:1850
Symbol 1838 GraphicUsed by:1839
Symbol 1839 MovieClipUses:1838Used by:1841
Symbol 1840 GraphicUsed by:1841 1848
Symbol 1841 MovieClipUses:1839 1840Used by:1849 1850
Symbol 1842 FontUsed by:1843
Symbol 1843 TextUses:1842Used by:1844
Symbol 1844 MovieClipUses:1843Used by:1850
Symbol 1845 GraphicUsed by:1848
Symbol 1846 GraphicUsed by:1848
Symbol 1847 GraphicUsed by:1848
Symbol 1848 MovieClip {reemus3_fla.barkingmonster_264}Uses:1845 1840 1846 1847Used by:1849 1850
Symbol 1849 MovieClip {reemus3_fla.feedfuzzy_265}Uses:1848 1841Used by:1850
Symbol 1850 MovieClip {reemus3_fla.fuzzywuzzy_260}Uses:1837 1841 1844 1848 1849Used by:1892
Symbol 1851 GraphicUsed by:1853
Symbol 1852 GraphicUsed by:1853
Symbol 1853 MovieClipUses:1851 861 1852Used by:1892
Symbol 1854 GraphicUsed by:1859
Symbol 1855 GraphicUsed by:1858 1859
Symbol 1856 GraphicUsed by:1859
Symbol 1857 GraphicUsed by:1858
Symbol 1858 MovieClip {reemus3_fla.jellocabinetdooropen_268}Uses:1855 1857Used by:1859
Symbol 1859 MovieClip {reemus3_fla.cabinet_267}Uses:1854 1855 1856 1858Used by:1892
Symbol 1860 GraphicUsed by:1871
Symbol 1861 GraphicUsed by:1871
Symbol 1862 GraphicUsed by:1871
Symbol 1863 GraphicUsed by:1871
Symbol 1864 GraphicUsed by:1871
Symbol 1865 GraphicUsed by:1871
Symbol 1866 GraphicUsed by:1871
Symbol 1867 GraphicUsed by:1871
Symbol 1868 GraphicUsed by:1871
Symbol 1869 GraphicUsed by:1871
Symbol 1870 GraphicUsed by:1871
Symbol 1871 MovieClip {reemus3_fla.vines_269}Uses:1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870Used by:1892
Symbol 1872 GraphicUsed by:1876
Symbol 1873 GraphicUsed by:1876
Symbol 1874 GraphicUsed by:1876
Symbol 1875 GraphicUsed by:1876
Symbol 1876 MovieClipUses:1872 1127 1129 1873 1874 1875Used by:1879
Symbol 1877 GraphicUsed by:1878
Symbol 1878 MovieClipUses:1877 1127 1139 1129Used by:1879
Symbol 1879 MovieClip {reemus3_fla.roachoutro_270}Uses:1876 1878Used by:1892
Symbol 1880 GraphicUsed by:1881
Symbol 1881 MovieClipUses:1880Used by:1892
Symbol 1882 GraphicUsed by:1883
Symbol 1883 MovieClipUses:1882Used by:1892
Symbol 1884 GraphicUsed by:1885
Symbol 1885 MovieClipUses:1884Used by:1892
Symbol 1886 GraphicUsed by:1887
Symbol 1887 MovieClipUses:1886Used by:1892
Symbol 1888 GraphicUsed by:1889
Symbol 1889 MovieClipUses:1888Used by:1892
Symbol 1890 GraphicUsed by:1891
Symbol 1891 MovieClipUses:1890Used by:1892
Symbol 1892 MovieClip {asfiles.setting.CaveInterior}Uses:1834 1836 1850 1853 1859 1871 1879 1881 1883 1885 1887 1889 1891Used by:Timeline
Symbol 1893 BitmapUsed by:1894
Symbol 1894 GraphicUses:1893Used by:1952
Symbol 1895 GraphicUsed by:1898
Symbol 1896 GraphicUsed by:1897
Symbol 1897 MovieClipUses:1896Used by:1898
Symbol 1898 MovieClip {reemus3_fla.CliffLeft_280}Uses:1895 1897Used by:1952
Symbol 1899 GraphicUsed by:1910
Symbol 1900 GraphicUsed by:1910
Symbol 1901 GraphicUsed by:1910
Symbol 1902 GraphicUsed by:1910
Symbol 1903 GraphicUsed by:1910
Symbol 1904 GraphicUsed by:1910
Symbol 1905 GraphicUsed by:1910
Symbol 1906 GraphicUsed by:1910
Symbol 1907 GraphicUsed by:1910
Symbol 1908 GraphicUsed by:1910
Symbol 1909 GraphicUsed by:1910
Symbol 1910 MovieClipUses:1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909Used by:1952
Symbol 1911 MovieClipUses:1444 883Used by:1952 2001
Symbol 1912 GraphicUsed by:1913
Symbol 1913 MovieClipUses:1912Used by:1952
Symbol 1914 GraphicUsed by:1923 1929
Symbol 1915 GraphicUsed by:1923 1929 1942 1950
Symbol 1916 GraphicUsed by:1923 1929 1942
Symbol 1917 GraphicUsed by:1923 1929 1942 1950
Symbol 1918 GraphicUsed by:1923 1929 1942
Symbol 1919 GraphicUsed by:1923 1924 1942 1950
Symbol 1920 GraphicUsed by:1923 1929 1942 1950
Symbol 1921 GraphicUsed by:1923 1924 1942 1950
Symbol 1922 GraphicUsed by:1923 1928 1942 1950
Symbol 1923 MovieClipUses:1914 1915 808 809 1916 1917 1918 1919 1920 813 814 1921 1922Used by:1951
Symbol 1924 MovieClipUses:809 808 1919 813 814 1921Used by:1929
Symbol 1925 GraphicUsed by:1928
Symbol 1926 GraphicUsed by:1928 1942
Symbol 1927 GraphicUsed by:1928 1950
Symbol 1928 MovieClipUses:1922 1925 1926 1927Used by:1929
Symbol 1929 MovieClipUses:1914 1915 1916 1917 1918 1924 1928 1920Used by:1951
Symbol 1930 GraphicUsed by:1942
Symbol 1931 GraphicUsed by:1942
Symbol 1932 GraphicUsed by:1942
Symbol 1933 GraphicUsed by:1942
Symbol 1934 GraphicUsed by:1942
Symbol 1935 GraphicUsed by:1942
Symbol 1936 GraphicUsed by:1942
Symbol 1937 GraphicUsed by:1942
Symbol 1938 GraphicUsed by:1942
Symbol 1939 GraphicUsed by:1942
Symbol 1940 GraphicUsed by:1942
Symbol 1941 GraphicUsed by:1942
Symbol 1942 MovieClip {reemus3_fla.perribeatsreemus_290}Uses:1930 1931 1932 1915 1933 1926 1917 1934 1935 1936 1937 1922 1938 1939 1940 1941 809 808 1916 1918 1919 813 814 1921 1920Used by:1951
Symbol 1943 GraphicUsed by:1950
Symbol 1944 GraphicUsed by:1950
Symbol 1945 GraphicUsed by:1950
Symbol 1946 GraphicUsed by:1950
Symbol 1947 GraphicUsed by:1950
Symbol 1948 GraphicUsed by:1950
Symbol 1949 GraphicUsed by:1950
Symbol 1950 MovieClip {reemus3_fla.monsterbattle_291}Uses:1943 1917 809 808 1915 1944 1919 813 814 1921 1922 1920 810 830 812 816 818 819 1945 1946 1947 1948 1927 1949Used by:1951
Symbol 1951 MovieClip {reemus3_fla.tinkertok_285}Uses:1923 1929 1942 1950Used by:1952
Symbol 1952 MovieClip {asfiles.setting.CliffLeft}Uses:1894 1898 1910 1911 1913 1149 1951 1702Used by:Timeline
Symbol 1953 BitmapUsed by:1954
Symbol 1954 GraphicUses:1953Used by:1971
Symbol 1955 GraphicUsed by:1956
Symbol 1956 MovieClipUses:1955Used by:1971
Symbol 1957 GraphicUsed by:1959
Symbol 1958 GraphicUsed by:1959
Symbol 1959 MovieClipUses:1306 883 1957 1958Used by:1971
Symbol 1960 GraphicUsed by:1961
Symbol 1961 MovieClipUses:1960Used by:1971
Symbol 1962 GraphicUsed by:1963
Symbol 1963 MovieClipUses:1962Used by:1971
Symbol 1964 GraphicUsed by:1965
Symbol 1965 MovieClipUses:1964Used by:1971
Symbol 1966 GraphicUsed by:1967
Symbol 1967 MovieClipUses:1966Used by:1971
Symbol 1968 MovieClip {reemus3_fla.tinkertokwalkaway_301}Uses:808 821 810 811 812 813 814 816 818 819 822Used by:1971
Symbol 1969 GraphicUsed by:1970
Symbol 1970 MovieClipUses:1969Used by:1971
Symbol 1971 MovieClip {asfiles.setting.CliffMiddle}Uses:1954 1956 1959 1961 1963 1965 1967 1968 1970Used by:Timeline
Symbol 1972 BitmapUsed by:1973
Symbol 1973 GraphicUses:1972Used by:2001
Symbol 1974 GraphicUsed by:1975
Symbol 1975 MovieClipUses:1974Used by:2001
Symbol 1976 GraphicUsed by:1977
Symbol 1977 MovieClip {reemus3_fla.paintsplat_306}Uses:1976Used by:1989
Symbol 1978 ShapeTweeningUsed by:1980
Symbol 1979 GraphicUsed by:1980
Symbol 1980 MovieClip {reemus3_fla.paintappear_307}Uses:1978 1979Used by:1989
Symbol 1981 GraphicUsed by:1985
Symbol 1982 GraphicUsed by:1985
Symbol 1983 GraphicUsed by:1985
Symbol 1984 GraphicUsed by:1985
Symbol 1985 MovieClip {reemus3_fla.flagfall_308}Uses:1312 1981 1982 1983 1984 1348Used by:1989
Symbol 1986 ShapeTweeningUsed by:1988
Symbol 1987 GraphicUsed by:1988
Symbol 1988 MovieClip {reemus3_fla.splattersappear_309}Uses:1986 1987Used by:1989
Symbol 1989 MovieClip {reemus3_fla.flagstencil_305}Uses:1977 1980 1985 1988Used by:2001
Symbol 1990 GraphicUsed by:1993
Symbol 1991 GraphicUsed by:1993
Symbol 1992 GraphicUsed by:1993
Symbol 1993 MovieClip {reemus3_fla.BELL_310}Uses:1990 1991 1992Used by:2001
Symbol 1994 GraphicUsed by:1995
Symbol 1995 MovieClipUses:1994Used by:2001
Symbol 1996 GraphicUsed by:1997
Symbol 1997 MovieClipUses:1996Used by:2001
Symbol 1998 GraphicUsed by:1999
Symbol 1999 MovieClipUses:1998Used by:2001
Symbol 2000 MovieClipUses:1271Used by:2001
Symbol 2001 MovieClip {asfiles.setting.CliffRight}Uses:1973 1975 1989 1993 1911 1995 1997 1999 849 2000Used by:Timeline
Symbol 2002 BitmapUsed by:2003
Symbol 2003 GraphicUses:2002Used by:2011
Symbol 2004 GraphicUsed by:2005
Symbol 2005 MovieClipUses:2004Used by:2011 2272 2648
Symbol 2006 GraphicUsed by:2010
Symbol 2007 GraphicUsed by:2010
Symbol 2008 GraphicUsed by:2010
Symbol 2009 GraphicUsed by:2010
Symbol 2010 MovieClip {reemus3_fla.secretdoor_320}Uses:2006 2007 8 9 10 11 2008 2009Used by:2011
Symbol 2011 MovieClip {asfiles.setting.Spire}Uses:2003 2005 2010 1447 1554Used by:Timeline
Symbol 2012 BitmapUsed by:2013
Symbol 2013 GraphicUses:2012Used by:2081
Symbol 2014 GraphicUsed by:2015
Symbol 2015 MovieClipUses:2014Used by:2081
Symbol 2016 ShapeTweeningUsed by:2020
Symbol 2017 ShapeTweeningUsed by:2020
Symbol 2018 ShapeTweeningUsed by:2020
Symbol 2019 GraphicUsed by:2020
Symbol 2020 MovieClipUses:2016 2017 2018 2019Used by:2081
Symbol 2021 GraphicUsed by:2026
Symbol 2022 GraphicUsed by:2026
Symbol 2023 GraphicUsed by:2026
Symbol 2024 GraphicUsed by:2026
Symbol 2025 GraphicUsed by:2026
Symbol 2026 MovieClipUses:2021 2022 2023 2024 2025Used by:2056
Symbol 2027 GraphicUsed by:2032
Symbol 2028 GraphicUsed by:2032
Symbol 2029 GraphicUsed by:2032
Symbol 2030 GraphicUsed by:2032
Symbol 2031 GraphicUsed by:2032
Symbol 2032 MovieClipUses:2027 2028 2029 2030 2031Used by:2056
Symbol 2033 GraphicUsed by:2038
Symbol 2034 GraphicUsed by:2038
Symbol 2035 GraphicUsed by:2038
Symbol 2036 GraphicUsed by:2038
Symbol 2037 GraphicUsed by:2038
Symbol 2038 MovieClipUses:2033 2034 2035 2036 2037Used by:2056
Symbol 2039 GraphicUsed by:2044
Symbol 2040 GraphicUsed by:2044
Symbol 2041 GraphicUsed by:2044
Symbol 2042 GraphicUsed by:2044
Symbol 2043 GraphicUsed by:2044
Symbol 2044 MovieClipUses:2039 2040 2041 2042 2043Used by:2056
Symbol 2045 GraphicUsed by:2050
Symbol 2046 GraphicUsed by:2050
Symbol 2047 GraphicUsed by:2050
Symbol 2048 GraphicUsed by:2050
Symbol 2049 GraphicUsed by:2050
Symbol 2050 MovieClipUses:2045 2046 2047 2048 2049Used by:2056
Symbol 2051 GraphicUsed by:2055
Symbol 2052 GraphicUsed by:2055
Symbol 2053 GraphicUsed by:2055
Symbol 2054 GraphicUsed by:2055
Symbol 2055 MovieClipUses:2051 2052 2053 2054Used by:2056
Symbol 2056 MovieClipUses:2026 2032 2038 2044 2050 2055Used by:2081
Symbol 2057 GraphicUsed by:2073
Symbol 2058 GraphicUsed by:2073
Symbol 2059 GraphicUsed by:2073
Symbol 2060 GraphicUsed by:2073
Symbol 2061 GraphicUsed by:2073
Symbol 2062 GraphicUsed by:2073
Symbol 2063 GraphicUsed by:2073
Symbol 2064 GraphicUsed by:2073
Symbol 2065 GraphicUsed by:2073
Symbol 2066 GraphicUsed by:2073
Symbol 2067 GraphicUsed by:2073
Symbol 2068 GraphicUsed by:2073
Symbol 2069 GraphicUsed by:2073
Symbol 2070 GraphicUsed by:2073
Symbol 2071 GraphicUsed by:2073
Symbol 2072 GraphicUsed by:2073
Symbol 2073 MovieClipUses:2057 985 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072Used by:2081
Symbol 2074 GraphicUsed by:2075
Symbol 2075 MovieClipUses:2074Used by:2081
Symbol 2076 GraphicUsed by:2077
Symbol 2077 MovieClipUses:2076Used by:2081
Symbol 2078 GraphicUsed by:2079
Symbol 2079 MovieClipUses:2078Used by:2081
Symbol 2080 MovieClipUses:1271Used by:2081
Symbol 2081 MovieClip {asfiles.setting.TempleLeft}Uses:2013 2015 2020 2056 2073 2075 2077 2079 2080Used by:Timeline
Symbol 2082 BitmapUsed by:2083
Symbol 2083 GraphicUses:2082Used by:2115
Symbol 2084 GraphicUsed by:2085
Symbol 2085 MovieClipUses:2084Used by:2115
Symbol 2086 ShapeTweeningUsed by:2095
Symbol 2087 ShapeTweeningUsed by:2095
Symbol 2088 ShapeTweeningUsed by:2095
Symbol 2089 GraphicUsed by:2095
Symbol 2090 GraphicUsed by:2095
Symbol 2091 ShapeTweeningUsed by:2095
Symbol 2092 ShapeTweeningUsed by:2095
Symbol 2093 ShapeTweeningUsed by:2095
Symbol 2094 GraphicUsed by:2095
Symbol 2095 MovieClip {reemus3_fla.colourpipes1_338}Uses:2086 2087 2088 2089 2090 2091 2092 2093 2094Used by:2115
Symbol 2096 ShapeTweeningUsed by:2105
Symbol 2097 ShapeTweeningUsed by:2105
Symbol 2098 ShapeTweeningUsed by:2105
Symbol 2099 GraphicUsed by:2105
Symbol 2100 GraphicUsed by:2105
Symbol 2101 ShapeTweeningUsed by:2105
Symbol 2102 ShapeTweeningUsed by:2105
Symbol 2103 ShapeTweeningUsed by:2105
Symbol 2104 GraphicUsed by:2105
Symbol 2105 MovieClip {reemus3_fla.colouredpipes2_339}Uses:2096 2097 2098 2099 2100 2101 2102 2103 2104Used by:2115
Symbol 2106 GraphicUsed by:2109
Symbol 2107 GraphicUsed by:2109
Symbol 2108 GraphicUsed by:2109
Symbol 2109 MovieClipUses:2106 2107 2108Used by:2115
Symbol 2110 GraphicUsed by:2113
Symbol 2111 GraphicUsed by:2113
Symbol 2112 GraphicUsed by:2113
Symbol 2113 MovieClip {reemus3_fla.steprock_341}Uses:2110 2111 2112Used by:2115
Symbol 2114 MovieClipUses:1271Used by:2115
Symbol 2115 MovieClip {asfiles.setting.TempleMiddle}Uses:2083 2085 2095 2105 2109 2113 2114Used by:Timeline
Symbol 2116 BitmapUsed by:2117
Symbol 2117 GraphicUses:2116Used by:2129
Symbol 2118 GraphicUsed by:2119
Symbol 2119 MovieClipUses:2118Used by:2129
Symbol 2120 GraphicUsed by:2122
Symbol 2121 GraphicUsed by:2122
Symbol 2122 MovieClip {reemus3_fla.stonestepdoor_345}Uses:2120 2121Used by:2129
Symbol 2123 GraphicUsed by:2127
Symbol 2124 GraphicUsed by:2127
Symbol 2125 GraphicUsed by:2127
Symbol 2126 GraphicUsed by:2127
Symbol 2127 MovieClipUses:2123 2124 2125 2126Used by:2129
Symbol 2128 MovieClipUses:1271Used by:2129
Symbol 2129 MovieClip {asfiles.setting.TempleRight}Uses:2117 2119 2122 806 2127 2128Used by:Timeline
Symbol 2130 BitmapUsed by:2131
Symbol 2131 GraphicUses:2130Used by:2272
Symbol 2132 GraphicUsed by:2180 2261
Symbol 2133 GraphicUsed by:2180 2261
Symbol 2134 GraphicUsed by:2180 2261
Symbol 2135 GraphicUsed by:2261
Symbol 2136 GraphicUsed by:2140 2222
Symbol 2137 GraphicUsed by:2140 2222
Symbol 2138 GraphicUsed by:2140 2222
Symbol 2139 GraphicUsed by:2140 2222
Symbol 2140 MovieClipUses:2136 2137 2138 2139Used by:2260 2261
Symbol 2141 GraphicUsed by:2162
Symbol 2142 MovieClipUses:469Used by:2162
Symbol 2143 GraphicUsed by:2162
Symbol 2144 GraphicUsed by:2162
Symbol 2145 GraphicUsed by:2162
Symbol 2146 GraphicUsed by:2162
Symbol 2147 GraphicUsed by:2162
Symbol 2148 GraphicUsed by:2162
Symbol 2149 GraphicUsed by:2162
Symbol 2150 GraphicUsed by:2162
Symbol 2151 GraphicUsed by:2162
Symbol 2152 GraphicUsed by:2162
Symbol 2153 GraphicUsed by:2162
Symbol 2154 GraphicUsed by:2162
Symbol 2155 GraphicUsed by:2162
Symbol 2156 GraphicUsed by:2162
Symbol 2157 GraphicUsed by:2162
Symbol 2158 GraphicUsed by:2162
Symbol 2159 GraphicUsed by:2162
Symbol 2160 GraphicUsed by:2162
Symbol 2161 GraphicUsed by:2162
Symbol 2162 MovieClip {reemus3_fla.wormemerge_366}Uses:2141 469 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161Used by:2261
Symbol 2163 GraphicUsed by:2166
Symbol 2164 GraphicUsed by:2166 2196
Symbol 2165 GraphicUsed by:2166 2196
Symbol 2166 MovieClipUses:2163 2164 2165Used by:2196 2261
Symbol 2167 GraphicUsed by:2254 2261
Symbol 2168 GraphicUsed by:2254 2261
Symbol 2169 MovieClip {reemus3_fla.climblog_369}Uses:473Used by:2261
Symbol 2170 MovieClip {reemus3_fla.bluetreeclimb_371}Uses:473Used by:2261
Symbol 2171 GraphicUsed by:2180
Symbol 2172 GraphicUsed by:2180
Symbol 2173 GraphicUsed by:2180
Symbol 2174 GraphicUsed by:2180
Symbol 2175 GraphicUsed by:2180
Symbol 2176 GraphicUsed by:2180
Symbol 2177 GraphicUsed by:2180
Symbol 2178 GraphicUsed by:2180
Symbol 2179 GraphicUsed by:2180 2261
Symbol 2180 MovieClip {reemus3_fla.spiderweb_372}Uses:473 2132 2133 2134 2171 2172 2173 2174 2175 2176 2177 2178 2179Used by:2261
Symbol 2181 GraphicUsed by:2184
Symbol 2182 GraphicUsed by:2184 2185 2192 2194
Symbol 2183 GraphicUsed by:2184 2185 2192
Symbol 2184 MovieClip {reemus3_fla.emergealienspider_373}Uses:2181 2182 2183Used by:2261
Symbol 2185 MovieClipUses:2182 2183Used by:2196
Symbol 2186 GraphicUsed by:2192 2194
Symbol 2187 GraphicUsed by:2192 2194
Symbol 2188 GraphicUsed by:2192 2194
Symbol 2189 GraphicUsed by:2192 2194
Symbol 2190 GraphicUsed by:2192 2194
Symbol 2191 GraphicUsed by:2192 2194
Symbol 2192 MovieClipUses:2182 2183 2186 2187 2188 2189 2190 2191Used by:2196
Symbol 2193 GraphicUsed by:2194
Symbol 2194 MovieClipUses:2182 2193 2186 2187 2188 2189 2190 2191Used by:2196
Symbol 2195 GraphicUsed by:2196
Symbol 2196 MovieClip {reemus3_fla.climbtreespider_374}Uses:2185 2166 2192 2194 2195 2164 2165Used by:2261
Symbol 2197 GraphicUsed by:2216
Symbol 2198 GraphicUsed by:2216
Symbol 2199 GraphicUsed by:2216
Symbol 2200 GraphicUsed by:2216
Symbol 2201 GraphicUsed by:2216
Symbol 2202 GraphicUsed by:2216
Symbol 2203 GraphicUsed by:2216
Symbol 2204 GraphicUsed by:2216
Symbol 2205 GraphicUsed by:2216
Symbol 2206 GraphicUsed by:2216
Symbol 2207 GraphicUsed by:2216
Symbol 2208 GraphicUsed by:2216
Symbol 2209 GraphicUsed by:2216
Symbol 2210 GraphicUsed by:2216
Symbol 2211 GraphicUsed by:2216
Symbol 2212 GraphicUsed by:2216
Symbol 2213 GraphicUsed by:2216
Symbol 2214 GraphicUsed by:2216
Symbol 2215 GraphicUsed by:2216
Symbol 2216 MovieClip {reemus3_fla.birdexplode_378}Uses:2197 2198 2199 435 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215Used by:2261
Symbol 2217 MovieClip {reemus3_fla.flyintomiddle_381}Uses:446Used by:2261
Symbol 2218 GraphicUsed by:2219
Symbol 2219 MovieClipUses:343 2218 346 393 347Used by:2222 2254
Symbol 2220 GraphicUsed by:2222
Symbol 2221 GraphicUsed by:2222
Symbol 2222 MovieClip {reemus3_fla.flytogopher_384}Uses:2219 2220 2136 2137 2138 2139 2221Used by:2261
Symbol 2223 GraphicUsed by:2254
Symbol 2224 GraphicUsed by:2254
Symbol 2225 GraphicUsed by:2254
Symbol 2226 GraphicUsed by:2254
Symbol 2227 GraphicUsed by:2254
Symbol 2228 GraphicUsed by:2254
Symbol 2229 GraphicUsed by:2254
Symbol 2230 GraphicUsed by:2254
Symbol 2231 GraphicUsed by:2254
Symbol 2232 GraphicUsed by:2254
Symbol 2233 GraphicUsed by:2254
Symbol 2234 GraphicUsed by:2254
Symbol 2235 GraphicUsed by:2254
Symbol 2236 GraphicUsed by:2254
Symbol 2237 GraphicUsed by:2254
Symbol 2238 GraphicUsed by:2254
Symbol 2239 GraphicUsed by:2254
Symbol 2240 GraphicUsed by:2254
Symbol 2241 GraphicUsed by:2254
Symbol 2242 GraphicUsed by:2254
Symbol 2243 GraphicUsed by:2254
Symbol 2244 GraphicUsed by:2254
Symbol 2245 GraphicUsed by:2254
Symbol 2246 GraphicUsed by:2254
Symbol 2247 GraphicUsed by:2254
Symbol 2248 GraphicUsed by:2254
Symbol 2249 GraphicUsed by:2254
Symbol 2250 GraphicUsed by:2254
Symbol 2251 GraphicUsed by:2254
Symbol 2252 GraphicUsed by:2254
Symbol 2253 GraphicUsed by:2254
Symbol 2254 MovieClip {reemus3_fla.flytobush_386}Uses:2219 2167 2168 2223 2224 2225 2226 2227 2228 2229 2230 2231 344 346 347 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 455Used by:2261
Symbol 2255 GraphicUsed by:2260
Symbol 2256 GraphicUsed by:2260
Symbol 2257 GraphicUsed by:2260
Symbol 2258 GraphicUsed by:2260
Symbol 2259 GraphicUsed by:2260 2293
Symbol 2260 MovieClip {reemus3_fla.enterhole_388}Uses:2255 2256 448 2140 2257 2258 2259Used by:2261
Symbol 2261 MovieClip {reemus3_fla.alien_364}Uses:2132 2133 2134 2135 2140 2162 2166 2167 2168 2169 2170 2180 2179 2184 2196 2216 2217 2222 2254 2260Used by:2272
Symbol 2262 GraphicUsed by:2263
Symbol 2263 MovieClipUses:2262Used by:2272
Symbol 2264 GraphicUsed by:2265
Symbol 2265 MovieClipUses:2264Used by:2272
Symbol 2266 GraphicUsed by:2267
Symbol 2267 MovieClipUses:2266Used by:2272
Symbol 2268 GraphicUsed by:2269
Symbol 2269 MovieClipUses:2268Used by:2272
Symbol 2270 GraphicUsed by:2271
Symbol 2271 MovieClipUses:2270Used by:2272
Symbol 2272 MovieClip {asfiles.setting.VisitorLeft}Uses:2131 2005 2261 2263 2265 2267 2269 2271Used by:Timeline
Symbol 2273 BitmapUsed by:2274
Symbol 2274 GraphicUses:2273Used by:2648
Symbol 2275 GraphicUsed by:2278
Symbol 2276 GraphicUsed by:2277
Symbol 2277 MovieClipUses:2276Used by:2278
Symbol 2278 MovieClipUses:2275 2277Used by:2648
Symbol 2279 GraphicUsed by:2648
Symbol 2280 GraphicUsed by:2293
Symbol 2281 GraphicUsed by:2293
Symbol 2282 GraphicUsed by:2293
Symbol 2283 GraphicUsed by:2293
Symbol 2284 GraphicUsed by:2293
Symbol 2285 GraphicUsed by:2293
Symbol 2286 GraphicUsed by:2293
Symbol 2287 GraphicUsed by:2293
Symbol 2288 GraphicUsed by:2293
Symbol 2289 GraphicUsed by:2293
Symbol 2290 GraphicUsed by:2293
Symbol 2291 GraphicUsed by:2293
Symbol 2292 GraphicUsed by:2293
Symbol 2293 MovieClip {reemus3_fla.snakeemerge_398}Uses:2280 2259 448 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292Used by:2353
Symbol 2294 GraphicUsed by:2353
Symbol 2295 GraphicUsed by:2298
Symbol 2296 GraphicUsed by:2298
Symbol 2297 GraphicUsed by:2298
Symbol 2298 MovieClipUses:2295 2296 2297Used by:2301 2302
Symbol 2299 GraphicUsed by:2301 2302
Symbol 2300 GraphicUsed by:2301 2302
Symbol 2301 MovieClip {reemus3_fla.snakeemergefromwater_399}Uses:2298 2299 2300Used by:2353
Symbol 2302 MovieClip {reemus3_fla.alienresubmerge_401}Uses:2299 2300 2298Used by:2353
Symbol 2303 GraphicUsed by:2330
Symbol 2304 GraphicUsed by:2330 2440
Symbol 2305 GraphicUsed by:2330
Symbol 2306 GraphicUsed by:2330
Symbol 2307 GraphicUsed by:2330
Symbol 2308 GraphicUsed by:2330
Symbol 2309 GraphicUsed by:2330
Symbol 2310 GraphicUsed by:2330
Symbol 2311 GraphicUsed by:2330
Symbol 2312 GraphicUsed by:2330
Symbol 2313 GraphicUsed by:2330
Symbol 2314 GraphicUsed by:2330
Symbol 2315 GraphicUsed by:2330
Symbol 2316 GraphicUsed by:2330
Symbol 2317 GraphicUsed by:2330
Symbol 2318 GraphicUsed by:2330
Symbol 2319 GraphicUsed by:2330
Symbol 2320 GraphicUsed by:2330
Symbol 2321 GraphicUsed by:2330
Symbol 2322 GraphicUsed by:2330
Symbol 2323 GraphicUsed by:2330
Symbol 2324 GraphicUsed by:2330
Symbol 2325 GraphicUsed by:2330
Symbol 2326 GraphicUsed by:2330
Symbol 2327 GraphicUsed by:2330
Symbol 2328 GraphicUsed by:2330
Symbol 2329 GraphicUsed by:2330
Symbol 2330 MovieClip {reemus3_fla.snakebitefruit_402}Uses:2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329Used by:2353
Symbol 2331 GraphicUsed by:2352
Symbol 2332 ShapeTweeningUsed by:2352
Symbol 2333 ShapeTweeningUsed by:2352
Symbol 2334 GraphicUsed by:2352
Symbol 2335 ShapeTweeningUsed by:2352
Symbol 2336 ShapeTweeningUsed by:2352
Symbol 2337 GraphicUsed by:2352
Symbol 2338 GraphicUsed by:2352
Symbol 2339 GraphicUsed by:2352
Symbol 2340 GraphicUsed by:2352
Symbol 2341 GraphicUsed by:2352
Symbol 2342 GraphicUsed by:2352
Symbol 2343 GraphicUsed by:2352
Symbol 2344 GraphicUsed by:2352
Symbol 2345 GraphicUsed by:2352
Symbol 2346 GraphicUsed by:2352
Symbol 2347 GraphicUsed by:2352
Symbol 2348 GraphicUsed by:2352
Symbol 2349 GraphicUsed by:2352
Symbol 2350 GraphicUsed by:2352
Symbol 2351 GraphicUsed by:2352
Symbol 2352 MovieClipUses:2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351Used by:2353
Symbol 2353 MovieClipUses:2293 2294 2301 2302 2330 2352Used by:2648
Symbol 2354 GraphicUsed by:2388
Symbol 2355 GraphicUsed by:2388
Symbol 2356 GraphicUsed by:2388
Symbol 2357 GraphicUsed by:2388
Symbol 2358 GraphicUsed by:2388
Symbol 2359 GraphicUsed by:2388
Symbol 2360 GraphicUsed by:2388
Symbol 2361 GraphicUsed by:2388
Symbol 2362 GraphicUsed by:2388
Symbol 2363 GraphicUsed by:2388
Symbol 2364 GraphicUsed by:2388
Symbol 2365 GraphicUsed by:2388
Symbol 2366 GraphicUsed by:2388
Symbol 2367 GraphicUsed by:2388
Symbol 2368 GraphicUsed by:2388
Symbol 2369 GraphicUsed by:2388
Symbol 2370 GraphicUsed by:2388
Symbol 2371 GraphicUsed by:2388
Symbol 2372 GraphicUsed by:2388
Symbol 2373 GraphicUsed by:2388
Symbol 2374 GraphicUsed by:2388
Symbol 2375 GraphicUsed by:2388
Symbol 2376 GraphicUsed by:2388
Symbol 2377 GraphicUsed by:2388
Symbol 2378 GraphicUsed by:2388
Symbol 2379 GraphicUsed by:2388
Symbol 2380 GraphicUsed by:2388
Symbol 2381 GraphicUsed by:2388
Symbol 2382 GraphicUsed by:2388
Symbol 2383 GraphicUsed by:2388
Symbol 2384 GraphicUsed by:2388
Symbol 2385 GraphicUsed by:2388
Symbol 2386 GraphicUsed by:2388
Symbol 2387 GraphicUsed by:2388
Symbol 2388 MovieClip {reemus3_fla.frogbeastjumpup_404}Uses:2354 472 457 458 459 2355 2356 2357 2358 2359 2360 2361 2362 456 460 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387Used by:2648
Symbol 2389 GraphicUsed by:2406
Symbol 2390 GraphicUsed by:2406
Symbol 2391 GraphicUsed by:2392
Symbol 2392 MovieClipUses:2391Used by:2406
Symbol 2393 GraphicUsed by:2406
Symbol 2394 GraphicUsed by:2406
Symbol 2395 GraphicUsed by:2406
Symbol 2396 GraphicUsed by:2406
Symbol 2397 GraphicUsed by:2406
Symbol 2398 GraphicUsed by:2406
Symbol 2399 GraphicUsed by:2406
Symbol 2400 GraphicUsed by:2406
Symbol 2401 GraphicUsed by:2406
Symbol 2402 GraphicUsed by:2406
Symbol 2403 GraphicUsed by:2406
Symbol 2404 GraphicUsed by:2406
Symbol 2405 GraphicUsed by:2406
Symbol 2406 MovieClip {reemus3_fla.flyfruittree_405}Uses:2389 2390 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405Used by:2648
Symbol 2407 GraphicUsed by:2409 2410
Symbol 2408 GraphicUsed by:2409
Symbol 2409 MovieClip {reemus3_fla.fruitfall_408}Uses:2407 2408Used by:2410
Symbol 2410 MovieClipUses:2407 2409Used by:2440 2452 2481 2648
Symbol 2411 GraphicUsed by:2648
Symbol 2412 GraphicUsed by:2426 2440 2452 2481
Symbol 2413 GraphicUsed by:2426 2440 2452 2481
Symbol 2414 GraphicUsed by:2426 2440 2452 2481
Symbol 2415 GraphicUsed by:2426 2440 2452 2481
Symbol 2416 GraphicUsed by:2426 2440 2452 2481
Symbol 2417 GraphicUsed by:2426 2440 2452 2481
Symbol 2418 ShapeTweeningUsed by:2425
Symbol 2419 ShapeTweeningUsed by:2425
Symbol 2420 ShapeTweeningUsed by:2425
Symbol 2421 ShapeTweeningUsed by:2425
Symbol 2422 ShapeTweeningUsed by:2425
Symbol 2423 ShapeTweeningUsed by:2425
Symbol 2424 GraphicUsed by:2425
Symbol 2425 MovieClipUses:2418 2419 2420 2421 2422 2423 2424Used by:2426 2440 2452 2481
Symbol 2426 MovieClip {reemus3_fla.castrod_410}Uses:408 380 350 2412 361 362 2413 410 2414 364 376 365 367 351 2415 2416 2417 2425Used by:2482
Symbol 2427 GraphicUsed by:2440 2452
Symbol 2428 GraphicUsed by:2440 2452
Symbol 2429 GraphicUsed by:2440 2452 2481
Symbol 2430 GraphicUsed by:2440
Symbol 2431 GraphicUsed by:2440
Symbol 2432 GraphicUsed by:2440
Symbol 2433 GraphicUsed by:2440
Symbol 2434 GraphicUsed by:2440
Symbol 2435 GraphicUsed by:2440
Symbol 2436 GraphicUsed by:2440
Symbol 2437 GraphicUsed by:2440
Symbol 2438 GraphicUsed by:2440
Symbol 2439 GraphicUsed by:2440
Symbol 2440 MovieClip {reemus3_fla.fishitmonster_417}Uses:408 380 350 2412 361 362 2413 410 2414 364 376 365 367 351 2415 2416 2417 2425 2427 2410 2304 2428 2429 455 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439Used by:2482
Symbol 2441 GraphicUsed by:2452
Symbol 2442 GraphicUsed by:2452
Symbol 2443 GraphicUsed by:2452
Symbol 2444 GraphicUsed by:2452
Symbol 2445 GraphicUsed by:2452
Symbol 2446 GraphicUsed by:2452
Symbol 2447 GraphicUsed by:2452
Symbol 2448 GraphicUsed by:2452 2590 2633
Symbol 2449 GraphicUsed by:2452
Symbol 2450 GraphicUsed by:2452
Symbol 2451 GraphicUsed by:2452
Symbol 2452 MovieClip {reemus3_fla.fishitmonster2_418}Uses:408 380 350 2412 361 362 2413 410 2414 364 376 365 367 351 2415 2416 2417 2425 2427 2410 457 458 2441 459 2428 2429 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451Used by:2482
Symbol 2453 GraphicUsed by:2481
Symbol 2454 GraphicUsed by:2481
Symbol 2455 GraphicUsed by:2481
Symbol 2456 GraphicUsed by:2481
Symbol 2457 GraphicUsed by:2481
Symbol 2458 GraphicUsed by:2481
Symbol 2459 GraphicUsed by:2481
Symbol 2460 GraphicUsed by:2481
Symbol 2461 GraphicUsed by:2481
Symbol 2462 GraphicUsed by:2481
Symbol 2463 GraphicUsed by:2481
Symbol 2464 GraphicUsed by:2481
Symbol 2465 GraphicUsed by:2481
Symbol 2466 GraphicUsed by:2481
Symbol 2467 GraphicUsed by:2481
Symbol 2468 GraphicUsed by:2481
Symbol 2469 GraphicUsed by:2481
Symbol 2470 GraphicUsed by:2481
Symbol 2471 GraphicUsed by:2481
Symbol 2472 GraphicUsed by:2481
Symbol 2473 GraphicUsed by:2481
Symbol 2474 GraphicUsed by:2481
Symbol 2475 GraphicUsed by:2481
Symbol 2476 GraphicUsed by:2481
Symbol 2477 GraphicUsed by:2481
Symbol 2478 GraphicUsed by:2481
Symbol 2479 GraphicUsed by:2481
Symbol 2480 GraphicUsed by:2481
Symbol 2481 MovieClip {reemus3_fla.shakerodmmonster_419}Uses:408 380 350 2412 2413 361 2415 362 410 2414 2416 364 376 365 367 351 2417 2425 2453 2454 2410 2455 2456 2457 2458 2459 2460 2461 2462 353 2463 354 2464 355 356 357 358 359 360 366 683 2429 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480Used by:2482
Symbol 2482 MovieClipUses:2426 2440 2452 2481Used by:2648
Symbol 2483 GraphicUsed by:2508
Symbol 2484 GraphicUsed by:2508
Symbol 2485 GraphicUsed by:2508
Symbol 2486 GraphicUsed by:2508
Symbol 2487 GraphicUsed by:2508
Symbol 2488 GraphicUsed by:2508
Symbol 2489 GraphicUsed by:2508
Symbol 2490 GraphicUsed by:2508
Symbol 2491 GraphicUsed by:2508
Symbol 2492 GraphicUsed by:2508
Symbol 2493 GraphicUsed by:2508
Symbol 2494 GraphicUsed by:2508
Symbol 2495 GraphicUsed by:2508
Symbol 2496 GraphicUsed by:2508
Symbol 2497 GraphicUsed by:2508
Symbol 2498 GraphicUsed by:2508
Symbol 2499 GraphicUsed by:2508
Symbol 2500 GraphicUsed by:2508
Symbol 2501 GraphicUsed by:2508
Symbol 2502 GraphicUsed by:2508
Symbol 2503 GraphicUsed by:2508
Symbol 2504 GraphicUsed by:2508
Symbol 2505 GraphicUsed by:2508
Symbol 2506 GraphicUsed by:2508
Symbol 2507 GraphicUsed by:2508
Symbol 2508 MovieClip {reemus3_fla.firepit_420}Uses:2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507Used by:2648
Symbol 2509 GraphicUsed by:2648
Symbol 2510 GraphicUsed by:2513
Symbol 2511 GraphicUsed by:2513 2515 2536
Symbol 2512 GraphicUsed by:2513 2515 2536
Symbol 2513 MovieClip {reemus3_fla.fishy_422}Uses:2510 2511 2512Used by:2537
Symbol 2514 GraphicUsed by:2515 2536
Symbol 2515 MovieClipUses:2514 2511 2512Used by:2537
Symbol 2516 GraphicUsed by:2536
Symbol 2517 GraphicUsed by:2536
Symbol 2518 GraphicUsed by:2536
Symbol 2519 GraphicUsed by:2536
Symbol 2520 GraphicUsed by:2536
Symbol 2521 GraphicUsed by:2536
Symbol 2522 GraphicUsed by:2536
Symbol 2523 GraphicUsed by:2536
Symbol 2524 GraphicUsed by:2536
Symbol 2525 GraphicUsed by:2536
Symbol 2526 GraphicUsed by:2536
Symbol 2527 GraphicUsed by:2536
Symbol 2528 GraphicUsed by:2536
Symbol 2529 GraphicUsed by:2536
Symbol 2530 GraphicUsed by:2536
Symbol 2531 GraphicUsed by:2536
Symbol 2532 GraphicUsed by:2536
Symbol 2533 GraphicUsed by:2536
Symbol 2534 GraphicUsed by:2536
Symbol 2535 GraphicUsed by:2536
Symbol 2536 MovieClip {reemus3_fla.fishdie_424}Uses:2514 2511 2512 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535Used by:2537
Symbol 2537 MovieClipUses:2513 2515 2536Used by:2648
Symbol 2538 GraphicUsed by:2544
Symbol 2539 GraphicUsed by:2543 2562 2633
Symbol 2540 GraphicUsed by:2543 2562 2633
Symbol 2541 GraphicUsed by:2543 2562 2633
Symbol 2542 GraphicUsed by:2543
Symbol 2543 MovieClip {reemus3_fla.froggylookeyes_427}Uses:2539 2540 2541 2542Used by:2544 2590
Symbol 2544 MovieClipUses:2538 2543Used by:2634
Symbol 2545 GraphicUsed by:2562
Symbol 2546 GraphicUsed by:2562
Symbol 2547 GraphicUsed by:2562 2590
Symbol 2548 GraphicUsed by:2562 2590
Symbol 2549 GraphicUsed by:2562
Symbol 2550 GraphicUsed by:2562
Symbol 2551 GraphicUsed by:2562
Symbol 2552 GraphicUsed by:2562
Symbol 2553 GraphicUsed by:2562
Symbol 2554 GraphicUsed by:2562
Symbol 2555 GraphicUsed by:2562
Symbol 2556 GraphicUsed by:2562
Symbol 2557 GraphicUsed by:2562
Symbol 2558 GraphicUsed by:2562
Symbol 2559 GraphicUsed by:2562
Symbol 2560 GraphicUsed by:2562
Symbol 2561 GraphicUsed by:2562
Symbol 2562 MovieClip {reemus3_fla.frog2_428}Uses:2545 2539 2540 2541 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561Used by:2634
Symbol 2563 GraphicUsed by:2590
Symbol 2564 GraphicUsed by:2590 2633
Symbol 2565 GraphicUsed by:2590 2633
Symbol 2566 GraphicUsed by:2590
Symbol 2567 GraphicUsed by:2590 2633
Symbol 2568 GraphicUsed by:2590 2633
Symbol 2569 GraphicUsed by:2590
Symbol 2570 GraphicUsed by:2590
Symbol 2571 GraphicUsed by:2590
Symbol 2572 GraphicUsed by:2590
Symbol 2573 GraphicUsed by:2590
Symbol 2574 GraphicUsed by:2590 2633
Symbol 2575 GraphicUsed by:2590 2633
Symbol 2576 GraphicUsed by:2590
Symbol 2577 GraphicUsed by:2590
Symbol 2578 GraphicUsed by:2590
Symbol 2579 GraphicUsed by:2590
Symbol 2580 GraphicUsed by:2590
Symbol 2581 GraphicUsed by:2590
Symbol 2582 GraphicUsed by:2590
Symbol 2583 GraphicUsed by:2590
Symbol 2584 GraphicUsed by:2590
Symbol 2585 GraphicUsed by:2590
Symbol 2586 GraphicUsed by:2590
Symbol 2587 GraphicUsed by:2590
Symbol 2588 GraphicUsed by:2590
Symbol 2589 GraphicUsed by:2590
Symbol 2590 MovieClip {reemus3_fla.attackfrogmiss_429}Uses:2563 2564 2565 2566 2543 2567 2568 2569 2570 2571 474 475 2572 2573 2574 2575 2547 2576 2577 2578 2579 2580 2581 2548 2582 2583 2584 2585 2448 2586 2587 2588 2589Used by:2634
Symbol 2591 GraphicUsed by:2633
Symbol 2592 GraphicUsed by:2633
Symbol 2593 GraphicUsed by:2633
Symbol 2594 GraphicUsed by:2633
Symbol 2595 GraphicUsed by:2633
Symbol 2596 GraphicUsed by:2633
Symbol 2597 GraphicUsed by:2633
Symbol 2598 GraphicUsed by:2633
Symbol 2599 GraphicUsed by:2633
Symbol 2600 GraphicUsed by:2633
Symbol 2601 GraphicUsed by:2633
Symbol 2602 GraphicUsed by:2633
Symbol 2603 GraphicUsed by:2633
Symbol 2604 GraphicUsed by:2633
Symbol 2605 GraphicUsed by:2633
Symbol 2606 GraphicUsed by:2633
Symbol 2607 GraphicUsed by:2633
Symbol 2608 GraphicUsed by:2633
Symbol 2609 GraphicUsed by:2633
Symbol 2610 GraphicUsed by:2633
Symbol 2611 GraphicUsed by:2633
Symbol 2612 GraphicUsed by:2633
Symbol 2613 GraphicUsed by:2633
Symbol 2614 GraphicUsed by:2633
Symbol 2615 GraphicUsed by:2633
Symbol 2616 GraphicUsed by:2633
Symbol 2617 GraphicUsed by:2633
Symbol 2618 GraphicUsed by:2633
Symbol 2619 GraphicUsed by:2633
Symbol 2620 GraphicUsed by:2633
Symbol 2621 GraphicUsed by:2633
Symbol 2622 GraphicUsed by:2633
Symbol 2623 GraphicUsed by:2633
Symbol 2624 GraphicUsed by:2633
Symbol 2625 GraphicUsed by:2633
Symbol 2626 GraphicUsed by:2633
Symbol 2627 GraphicUsed by:2633
Symbol 2628 GraphicUsed by:2633
Symbol 2629 GraphicUsed by:2633
Symbol 2630 GraphicUsed by:2633
Symbol 2631 GraphicUsed by:2633
Symbol 2632 GraphicUsed by:2633
Symbol 2633 MovieClip {reemus3_fla.snakebitethefrog_430}Uses:2591 2564 2565 2592 2539 2540 2541 2567 2568 2593 2594 2595 474 475 2596 2574 2575 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2448 2630 2631 2632Used by:2634
Symbol 2634 MovieClip {reemus3_fla.VisitorRight_425}Uses:2544 2562 2590 2633Used by:2648
Symbol 2635 GraphicUsed by:2636
Symbol 2636 MovieClipUses:2635Used by:2648
Symbol 2637 GraphicUsed by:2638
Symbol 2638 MovieClipUses:2637Used by:2648
Symbol 2639 GraphicUsed by:2640
Symbol 2640 MovieClipUses:2639Used by:2648
Symbol 2641 GraphicUsed by:2642
Symbol 2642 MovieClipUses:2641Used by:2648
Symbol 2643 GraphicUsed by:2644
Symbol 2644 MovieClipUses:2643Used by:2648
Symbol 2645 GraphicUsed by:2646
Symbol 2646 MovieClipUses:2645Used by:2648
Symbol 2647 GraphicUsed by:2648
Symbol 2648 MovieClip {asfiles.setting.VisitorRight}Uses:2274 2278 2279 2005 2353 2388 2406 2410 2411 2482 2508 2509 2537 2634 2636 2638 2640 2642 2644 2646 2647Used by:Timeline
Symbol 2649 GraphicUses:688Used by:Timeline
Symbol 2650 GraphicUsed by:Timeline
Symbol 2651 BitmapUsed by:2652
Symbol 2652 GraphicUses:2651Used by:2679
Symbol 2653 GraphicUsed by:2679
Symbol 2654 GraphicUsed by:2656 2679
Symbol 2655 GraphicUsed by:2656 2679
Symbol 2656 MovieClipUses:2654 2655Used by:2679
Symbol 2657 GraphicUsed by:2679
Symbol 2658 GraphicUsed by:2679
Symbol 2659 GraphicUsed by:2679
Symbol 2660 GraphicUsed by:2679
Symbol 2661 GraphicUsed by:2679
Symbol 2662 BitmapUsed by:2663
Symbol 2663 GraphicUses:2662Used by:2679
Symbol 2664 GraphicUsed by:2665
Symbol 2665 MovieClipUses:2664Used by:2679
Symbol 2666 GraphicUsed by:2679
Symbol 2667 GraphicUsed by:2679
Symbol 2668 TextUses:69Used by:2679
Symbol 2669 ButtonUses:411Used by:2679
Symbol 2670 BitmapUsed by:2671
Symbol 2671 GraphicUses:2670Used by:2679
Symbol 2672 MovieClipUses:190 192 36 37 195 112 196 197 38 198 40 39 41 42 207 44 45 208 199 404 405 200 201 202 203 204 205Used by:2679
Symbol 2673 GraphicUsed by:2679
Symbol 2674 TextUses:69Used by:2679
Symbol 2675 ShapeTweeningUsed by:2679
Symbol 2676 GraphicUsed by:2679
Symbol 2677 ButtonUses:411Used by:2679
Symbol 2678 TextUses:69Used by:2679
Symbol 2679 MovieClip {intro4}Uses:2652 2653 2656 2654 2655 2657 2658 2659 2660 2661 2663 218 2665 222 2666 226 2667 2668 2669 2671 2672 322 324 2673 2674 2675 2676 2677 2678Used by:Timeline
Symbol 2680 GraphicUsed by:2682
Symbol 2681 GraphicUsed by:2682
Symbol 2682 MovieClipUses:2680 2681Used by:Timeline
Symbol 2683 GraphicUsed by:2688
Symbol 2684 ShapeTweeningUsed by:2688
Symbol 2685 BitmapUsed by:2686
Symbol 2686 GraphicUses:2685Used by:2688
Symbol 2687 GraphicUsed by:2688
Symbol 2688 MovieClip {reemus3_fla.mapunfold_502}Uses:2683 2684 2686 299 271 2687Used by:Timeline
Symbol 2689 TextUses:69Used by:Timeline

Instance Names

"poop"Frame 1Symbol 1095 MovieClip {reemus3_fla.NewgroundsAPI_Ad_Unit_12}
"newgroundsAPIconnector"Frame 1Symbol 1107 MovieClip {reemus3_fla.NewgroundsAPI_Connector_14}
"medal_popup"Frame 1Symbol 1120 MovieClip {reemus3_fla.NewgroundsAPI_Medal_Popup_16}
"intro"Frame 3Symbol 739 MovieClip {introshot1}
"gameIntroDialogue"Frame 3Symbol 698 MovieClip {asfiles.GameIntroDialogue}
"resetDialogue"Frame 7Symbol 667 MovieClip {asfiles.ResetDialogue}
"rightArrow"Frame 7Symbol 2682 MovieClip
"leftArrow"Frame 7Symbol 2682 MovieClip
"portrait"Frame 7Symbol 659 MovieClip {asfiles.char.Portrait}
"soundMuteButton"Frame 7Symbol 657 MovieClip {asfiles.SoundMuteButton}
"musicMuteButton"Frame 7Symbol 655 MovieClip {asfiles.MusicMuteButton}
"hole7"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole3"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole16"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole10"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole13"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole6"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole14"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole15"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole4"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole5"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole11"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole12"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole9"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole8"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole17"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole18"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole1"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"hole2"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 29 MovieClip
"plug14"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug12"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug5"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug7"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug6"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug15"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug2"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug8"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug17"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug11"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug13"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug4"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug16"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug10"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug9"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug1"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug18"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"plug3"Symbol 32 MovieClip {asfiles.setting.overlay.GenusPegPuzzle} Frame 1Symbol 31 MovieClip
"reemustalk"Symbol 52 MovieClip {reemus3_fla.reemusicon_542} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemusIcon"Symbol 64 MovieClip {asfiles.char.IconSelect} Frame 1Symbol 52 MovieClip {reemus3_fla.reemusicon_542}
"liamIcon"Symbol 64 MovieClip {asfiles.char.IconSelect} Frame 1Symbol 61 MovieClip
"reemustalk"Symbol 64 MovieClip {asfiles.char.IconSelect} Frame 81Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"tip"Symbol 68 MovieClip {reemus3_fla.bubble_539} Frame 1Symbol 67 MovieClip
"altTip"Symbol 68 MovieClip {reemus3_fla.bubble_539} Frame 1Symbol 67 MovieClip
"bubble"Symbol 71 MovieClip {asfiles.char.SpeechBubble} Frame 1Symbol 68 MovieClip {reemus3_fla.bubble_539}
"label"Symbol 71 MovieClip {asfiles.char.SpeechBubble} Frame 1Symbol 70 EditableText
"circle"Symbol 87 MovieClip {reemus3_fla.puzzleholes_536} Frame 2Symbol 79 MovieClip {reemus3_fla.circle_247}
"circle"Symbol 89 MovieClip {reemus3_fla.peg_246} Frame 1Symbol 79 MovieClip {reemus3_fla.circle_247}
"hole_owl"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 87 MovieClip {reemus3_fla.puzzleholes_536}
"hole_snake"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 87 MovieClip {reemus3_fla.puzzleholes_536}
"hole_rabbit"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 87 MovieClip {reemus3_fla.puzzleholes_536}
"hole_mouse"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 87 MovieClip {reemus3_fla.puzzleholes_536}
"hole_frog"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 87 MovieClip {reemus3_fla.puzzleholes_536}
"hole_plant"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 87 MovieClip {reemus3_fla.puzzleholes_536}
"hole_carrot"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 87 MovieClip {reemus3_fla.puzzleholes_536}
"peg_snake"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 89 MovieClip {reemus3_fla.peg_246}
"peg_plant"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 89 MovieClip {reemus3_fla.peg_246}
"peg_frog"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 89 MovieClip {reemus3_fla.peg_246}
"peg_mouse"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 89 MovieClip {reemus3_fla.peg_246}
"peg_rabbit"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 89 MovieClip {reemus3_fla.peg_246}
"peg_carrot"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 89 MovieClip {reemus3_fla.peg_246}
"peg_owl"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 89 MovieClip {reemus3_fla.peg_246}
"backButton"Symbol 95 MovieClip {asfiles.setting.overlay.PegPuzzle} Frame 1Symbol 94 MovieClip
"scissorsClip"Symbol 118 MovieClip {reemus3_fla.ROCKPAPERSELECT_172} Frame 1Symbol 111 MovieClip {reemus3_fla.scissorsiconsz_173}
"paperClip"Symbol 118 MovieClip {reemus3_fla.ROCKPAPERSELECT_172} Frame 1Symbol 114 MovieClip {reemus3_fla.papericonz_174}
"rockClip"Symbol 118 MovieClip {reemus3_fla.ROCKPAPERSELECT_172} Frame 1Symbol 117 MovieClip {reemus3_fla.HANDROLLOVER_175}
"selector"Symbol 119 MovieClip {asfiles.setting.overlay.RPSOverlay} Frame 1Symbol 118 MovieClip {reemus3_fla.ROCKPAPERSELECT_172}
"mouth"Symbol 209 MovieClip {reemus3_fla.staticreemus_150} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"spriteIn"Symbol 211 MovieClip {reemus3_fla.endreemus_520} Frame 1Symbol 209 MovieClip {reemus3_fla.staticreemus_150}
"mouth"Symbol 228 MovieClip {reemus3_fla.endliam_521} Frame 1Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"button9"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 134 MovieClip
"button8"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 141 MovieClip
"button7"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 148 MovieClip
"button5"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 155 MovieClip
"button6"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 162 MovieClip
"button4"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 168 MovieClip
"button3"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 175 MovieClip
"button2"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 182 MovieClip
"button1"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 188 MovieClip
"reemus"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 211 MovieClip {reemus3_fla.endreemus_520}
"liam"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 228 MovieClip {reemus3_fla.endliam_521}
"ranking1"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 244 MovieClip {reemus3_fla.RANKINGS_522}
"ranking2"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 248 MovieClip {reemus3_fla.pathpopuup2_523}
"locked1"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 256 MovieClip
"locked2"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 256 MovieClip
"locked3"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 256 MovieClip
"locked5"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 256 MovieClip
"locked7"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 256 MovieClip
"locked8"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 256 MovieClip
"locked4"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 256 MovieClip
"locked6"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 256 MovieClip
"locked9"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 256 MovieClip
"smash1"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 266 MovieClip {reemus3_fla.giantexplosion_528}
"smash8"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 266 MovieClip {reemus3_fla.giantexplosion_528}
"smash7"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 266 MovieClip {reemus3_fla.giantexplosion_528}
"smash5"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 266 MovieClip {reemus3_fla.giantexplosion_528}
"smash3"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 266 MovieClip {reemus3_fla.giantexplosion_528}
"smash9"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 266 MovieClip {reemus3_fla.giantexplosion_528}
"smash6"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 266 MovieClip {reemus3_fla.giantexplosion_528}
"smash4"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 266 MovieClip {reemus3_fla.giantexplosion_528}
"smash2"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 266 MovieClip {reemus3_fla.giantexplosion_528}
"continueButton"Symbol 271 MovieClip {asfiles.setting.LevelSelect} Frame 1Symbol 270 MovieClip
"sponsorButton"Symbol 299 MovieClip {asfiles.Credits} Frame 1Symbol 278 MovieClip
"reemusButton"Symbol 299 MovieClip {asfiles.Credits} Frame 1Symbol 290 MovieClip
"betaButton"Symbol 299 MovieClip {asfiles.Credits} Frame 1Symbol 293 MovieClip
"favorButton"Symbol 299 MovieClip {asfiles.Credits} Frame 1Symbol 296 MovieClip
"zeebarfButton"Symbol 299 MovieClip {asfiles.Credits} Frame 1Symbol 298 MovieClip
"mitchButton"Symbol 299 MovieClip {asfiles.Credits} Frame 1Symbol 298 MovieClip
"negativeButton"Symbol 299 MovieClip {asfiles.Credits} Frame 1Symbol 298 MovieClip
"restartButton"Symbol 299 MovieClip {asfiles.Credits} Frame 1Symbol 298 MovieClip
"mouth"Symbol 401 MovieClip {reemus3_fla.staticliam_72} Frame 1Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"spriteIn"Symbol 402 MovieClip {reemus3_fla.liamhidingbehidncave_491} Frame 4Symbol 401 MovieClip {reemus3_fla.staticliam_72}
"spriteIn"Symbol 499 MovieClip {ending2movie} Frame 1Symbol 318 MovieClip
"spriteIn"Symbol 499 MovieClip {ending2movie} Frame 1Symbol 333 MovieClip
"monstermouth4"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 361 MovieClip {reemus3_fla.monstermouth4_411}
"monstermouth3"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth2"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 365 MovieClip {reemus3_fla.monstermouth2_414}
"monstermouth1"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 367 MovieClip {reemus3_fla.monstermouth_415}
"monstermouth4"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 361 MovieClip {reemus3_fla.monstermouth4_411}
"monstermouth3"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth2"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 365 MovieClip {reemus3_fla.monstermouth2_414}
"monstermouth1"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 367 MovieClip {reemus3_fla.monstermouth_415}
"monstermouth4"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 361 MovieClip {reemus3_fla.monstermouth4_411}
"monstermouth3"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth2"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 365 MovieClip {reemus3_fla.monstermouth2_414}
"monstermouth1"Symbol 499 MovieClip {ending2movie} Frame 113Symbol 367 MovieClip {reemus3_fla.monstermouth_415}
"spriteIn"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 401 MovieClip {reemus3_fla.staticliam_72}
"monstermouth4"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 361 MovieClip {reemus3_fla.monstermouth4_411}
"monstermouth3"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth2"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 365 MovieClip {reemus3_fla.monstermouth2_414}
"monstermouth1"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 367 MovieClip {reemus3_fla.monstermouth_415}
"monstermouth4"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 361 MovieClip {reemus3_fla.monstermouth4_411}
"monstermouth3"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth2"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 365 MovieClip {reemus3_fla.monstermouth2_414}
"monstermouth1"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 367 MovieClip {reemus3_fla.monstermouth_415}
"monstermouth4"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 361 MovieClip {reemus3_fla.monstermouth4_411}
"monstermouth3"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth2"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 365 MovieClip {reemus3_fla.monstermouth2_414}
"monstermouth1"Symbol 499 MovieClip {ending2movie} Frame 231Symbol 367 MovieClip {reemus3_fla.monstermouth_415}
"monstermouth4"Symbol 499 MovieClip {ending2movie} Frame 285Symbol 361 MovieClip {reemus3_fla.monstermouth4_411}
"monstermouth3"Symbol 499 MovieClip {ending2movie} Frame 285Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth2"Symbol 499 MovieClip {ending2movie} Frame 285Symbol 365 MovieClip {reemus3_fla.monstermouth2_414}
"monstermouth1"Symbol 499 MovieClip {ending2movie} Frame 285Symbol 367 MovieClip {reemus3_fla.monstermouth_415}
"monstermouth4"Symbol 499 MovieClip {ending2movie} Frame 409Symbol 361 MovieClip {reemus3_fla.monstermouth4_411}
"monstermouth3"Symbol 499 MovieClip {ending2movie} Frame 409Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth2"Symbol 499 MovieClip {ending2movie} Frame 409Symbol 365 MovieClip {reemus3_fla.monstermouth2_414}
"monstermouth1"Symbol 499 MovieClip {ending2movie} Frame 409Symbol 367 MovieClip {reemus3_fla.monstermouth_415}
"spriteIn"Symbol 499 MovieClip {ending2movie} Frame 471Symbol 401 MovieClip {reemus3_fla.staticliam_72}
"hitBox"Symbol 655 MovieClip {asfiles.MusicMuteButton} Frame 1Symbol 653 MovieClip
"hitBox"Symbol 657 MovieClip {asfiles.SoundMuteButton} Frame 1Symbol 653 MovieClip
"reemustalk"Symbol 659 MovieClip {asfiles.char.Portrait} Frame 2Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"yesButton"Symbol 667 MovieClip {asfiles.ResetDialogue} Frame 1Symbol 664 MovieClip
"noButton"Symbol 667 MovieClip {asfiles.ResetDialogue} Frame 1Symbol 666 MovieClip
"monstermouth4"Symbol 687 MovieClip {intro3} Frame 67Symbol 361 MovieClip {reemus3_fla.monstermouth4_411}
"monstermouth3"Symbol 687 MovieClip {intro3} Frame 67Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth2"Symbol 687 MovieClip {intro3} Frame 67Symbol 365 MovieClip {reemus3_fla.monstermouth2_414}
"monstermouth1"Symbol 687 MovieClip {intro3} Frame 67Symbol 367 MovieClip {reemus3_fla.monstermouth_415}
"newGameButton"Symbol 698 MovieClip {asfiles.GameIntroDialogue} Frame 1Symbol 696 MovieClip
"continueGameButton"Symbol 698 MovieClip {asfiles.GameIntroDialogue} Frame 1Symbol 697 MovieClip
"inner"Symbol 771 MovieClip {reemus3_fla.pour_347} Frame 1Symbol 745 MovieClip {reemus3_fla.pouryellow_348}
"inner"Symbol 771 MovieClip {reemus3_fla.pour_347} Frame 2Symbol 750 MovieClip {reemus3_fla.pourorange_349}
"inner"Symbol 771 MovieClip {reemus3_fla.pour_347} Frame 3Symbol 755 MovieClip {reemus3_fla.pourred_350}
"inner"Symbol 771 MovieClip {reemus3_fla.pour_347} Frame 4Symbol 760 MovieClip {reemus3_fla.pourblue_351}
"inner"Symbol 771 MovieClip {reemus3_fla.pour_347} Frame 5Symbol 765 MovieClip {reemus3_fla.pourpurple_352}
"inner"Symbol 771 MovieClip {reemus3_fla.pour_347} Frame 6Symbol 770 MovieClip {reemus3_fla.pourgreen_353}
"inner"Symbol 796 MovieClip {reemus3_fla.drain_354} Frame 1Symbol 775 MovieClip {reemus3_fla.drainyellow_355}
"inner"Symbol 796 MovieClip {reemus3_fla.drain_354} Frame 2Symbol 779 MovieClip {reemus3_fla.drainorange_356}
"inner"Symbol 796 MovieClip {reemus3_fla.drain_354} Frame 3Symbol 783 MovieClip {reemus3_fla.drainred_357}
"inner"Symbol 796 MovieClip {reemus3_fla.drain_354} Frame 4Symbol 787 MovieClip {reemus3_fla.drainblue_358}
"inner"Symbol 796 MovieClip {reemus3_fla.drain_354} Frame 5Symbol 791 MovieClip {reemus3_fla.drainpurple_359}
"inner"Symbol 796 MovieClip {reemus3_fla.drain_354} Frame 6Symbol 795 MovieClip {reemus3_fla.draingreen_360}
"bottomFill"Symbol 806 MovieClip {asfiles.setting.features.PaintStatue} Frame 1Symbol 771 MovieClip {reemus3_fla.pour_347}
"midFill"Symbol 806 MovieClip {asfiles.setting.features.PaintStatue} Frame 1Symbol 771 MovieClip {reemus3_fla.pour_347}
"topFill"Symbol 806 MovieClip {asfiles.setting.features.PaintStatue} Frame 1Symbol 771 MovieClip {reemus3_fla.pour_347}
"bottomDrain"Symbol 806 MovieClip {asfiles.setting.features.PaintStatue} Frame 1Symbol 796 MovieClip {reemus3_fla.drain_354}
"midDrain"Symbol 806 MovieClip {asfiles.setting.features.PaintStatue} Frame 1Symbol 796 MovieClip {reemus3_fla.drain_354}
"topDrain"Symbol 806 MovieClip {asfiles.setting.features.PaintStatue} Frame 1Symbol 796 MovieClip {reemus3_fla.drain_354}
"bee1"Symbol 1034 MovieClip {reemus3_fla.carriagehovers_40} Frame 1Symbol 1029 MovieClip
"bee2"Symbol 1034 MovieClip {reemus3_fla.carriagehovers_40} Frame 1Symbol 1029 MovieClip
"bee3"Symbol 1034 MovieClip {reemus3_fla.carriagehovers_40} Frame 1Symbol 1029 MovieClip
"bee4"Symbol 1034 MovieClip {reemus3_fla.carriagehovers_40} Frame 1Symbol 1029 MovieClip
"seat"Symbol 1034 MovieClip {reemus3_fla.carriagehovers_40} Frame 1Symbol 1030 MovieClip
"bee1"Symbol 1036 MovieClip {asfiles.setting.features.Carriage} Frame 1Symbol 1029 MovieClip
"bee2"Symbol 1036 MovieClip {asfiles.setting.features.Carriage} Frame 1Symbol 1029 MovieClip
"bee3"Symbol 1036 MovieClip {asfiles.setting.features.Carriage} Frame 1Symbol 1029 MovieClip
"bee4"Symbol 1036 MovieClip {asfiles.setting.features.Carriage} Frame 1Symbol 1029 MovieClip
"seat"Symbol 1036 MovieClip {asfiles.setting.features.Carriage} Frame 1Symbol 1030 MovieClip
"liam"Symbol 1036 MovieClip {asfiles.setting.features.Carriage} Frame 1Symbol 1033 MovieClip {reemus3_fla.liamsittinginshroom_36}
"zeebarfButton"Symbol 1041 MovieClip {asfiles.MiniCredits} Frame 1Symbol 298 MovieClip
"mitchButton"Symbol 1041 MovieClip {asfiles.MiniCredits} Frame 1Symbol 298 MovieClip
"negativeButton"Symbol 1041 MovieClip {asfiles.MiniCredits} Frame 1Symbol 298 MovieClip
"moreReemusButton"Symbol 1041 MovieClip {asfiles.MiniCredits} Frame 1Symbol 298 MovieClip
"NGButton"Symbol 1075 MovieClip {reemus3_fla.X_LOAD_2} Frame 151Symbol 1074 Button
"NG_Button"Symbol 1084 MovieClip {reemus3_fla.NG_AD_OBJECT_WITH_PRELOADER_1} Frame 1Symbol 1082 Button
"background"Symbol 1095 MovieClip {reemus3_fla.NewgroundsAPI_Ad_Unit_12} Frame 1Symbol 1094 MovieClip
"closeButton"Symbol 1107 MovieClip {reemus3_fla.NewgroundsAPI_Connector_14} Frame 1Symbol 1100 Button
"medalNameText"Symbol 1120 MovieClip {reemus3_fla.NewgroundsAPI_Medal_Popup_16} Frame 10Symbol 1114 EditableText
"medalValueText"Symbol 1120 MovieClip {reemus3_fla.NewgroundsAPI_Medal_Popup_16} Frame 10Symbol 1117 EditableText
"medal_icon"Symbol 1120 MovieClip {reemus3_fla.NewgroundsAPI_Medal_Popup_16} Frame 10Symbol 1119 MovieClip
"bug"Symbol 1148 MovieClip {reemus3_fla.trees2_21} Frame 1Symbol 1146 MovieClip
"chips1"Symbol 1186 MovieClip {reemus3_fla.tree_27} Frame 2Symbol 1163 MovieClip {reemus3_fla.woodchipsfly_29}
"chips2"Symbol 1186 MovieClip {reemus3_fla.tree_27} Frame 3Symbol 1163 MovieClip {reemus3_fla.woodchipsfly_29}
"chips3"Symbol 1186 MovieClip {reemus3_fla.tree_27} Frame 4Symbol 1163 MovieClip {reemus3_fla.woodchipsfly_29}
"bounds"Symbol 1209 MovieClip {asfiles.setting.ForestLeft} Frame 1Symbol 1124 MovieClip
"trees"Symbol 1209 MovieClip {asfiles.setting.ForestLeft} Frame 1Symbol 1148 MovieClip {reemus3_fla.trees2_21}
"roach"Symbol 1209 MovieClip {asfiles.setting.ForestLeft} Frame 1Symbol 1149 MovieClip
"burrow"Symbol 1209 MovieClip {asfiles.setting.ForestLeft} Frame 1Symbol 1149 MovieClip
"redTree"Symbol 1209 MovieClip {asfiles.setting.ForestLeft} Frame 1Symbol 1186 MovieClip {reemus3_fla.tree_27}
"carriage"Symbol 1209 MovieClip {asfiles.setting.ForestLeft} Frame 1Symbol 1036 MovieClip {asfiles.setting.features.Carriage}
"liamOutro"Symbol 1209 MovieClip {asfiles.setting.ForestLeft} Frame 1Symbol 1208 MovieClip {reemus3_fla.liamuntiebug_41}
"cap"Symbol 1217 MovieClip {reemus3_fla.mushroom_44} Frame 1Symbol 1216 MovieClip
"bounds"Symbol 1222 MovieClip {asfiles.setting.ForestMiddle} Frame 1Symbol 1213 MovieClip
"mushroom"Symbol 1222 MovieClip {asfiles.setting.ForestMiddle} Frame 1Symbol 1217 MovieClip {reemus3_fla.mushroom_44}
"axeHead"Symbol 1222 MovieClip {asfiles.setting.ForestMiddle} Frame 1Symbol 1219 MovieClip
"stick"Symbol 1222 MovieClip {asfiles.setting.ForestMiddle} Frame 1Symbol 853 MovieClip {reemus3_fla.stick_47}
"foreground"Symbol 1222 MovieClip {asfiles.setting.ForestMiddle} Frame 1Symbol 1221 MovieClip
"bee3"Symbol 1261 MovieClip {reemus3_fla.beesflying_59} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"bee4"Symbol 1261 MovieClip {reemus3_fla.beesflying_59} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"dud2"Symbol 1261 MovieClip {reemus3_fla.beesflying_59} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"bee2"Symbol 1261 MovieClip {reemus3_fla.beesflying_59} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"dud1"Symbol 1261 MovieClip {reemus3_fla.beesflying_59} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"bee1"Symbol 1261 MovieClip {reemus3_fla.beesflying_59} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"bee3"Symbol 1262 MovieClip {reemus3_fla.beesprotect_62} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"bee4"Symbol 1262 MovieClip {reemus3_fla.beesprotect_62} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"dud2"Symbol 1262 MovieClip {reemus3_fla.beesprotect_62} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"bee2"Symbol 1262 MovieClip {reemus3_fla.beesprotect_62} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"dud1"Symbol 1262 MovieClip {reemus3_fla.beesprotect_62} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"bee1"Symbol 1262 MovieClip {reemus3_fla.beesprotect_62} Frame 1Symbol 1024 MovieClip {asfiles.setting.features.Bee}
"spriteIn"Symbol 1263 MovieClip {reemus3_fla.beesrildup_58} Frame 1Symbol 1261 MovieClip {reemus3_fla.beesflying_59}
"spriteIn"Symbol 1263 MovieClip {reemus3_fla.beesrildup_58} Frame 2Symbol 1262 MovieClip {reemus3_fla.beesprotect_62}
"miniSquish"Symbol 1273 MovieClip {asfiles.setting.ForestRight} Frame 1Symbol 1256 MovieClip
"bounds"Symbol 1273 MovieClip {asfiles.setting.ForestRight} Frame 1Symbol 1258 MovieClip
"squishHole"Symbol 1273 MovieClip {asfiles.setting.ForestRight} Frame 1Symbol 1256 MovieClip
"nestHitArea"Symbol 1273 MovieClip {asfiles.setting.ForestRight} Frame 1Symbol 1260 MovieClip
"bees"Symbol 1273 MovieClip {asfiles.setting.ForestRight} Frame 1Symbol 1263 MovieClip {reemus3_fla.beesrildup_58}
"smoke"Symbol 1273 MovieClip {asfiles.setting.ForestRight} Frame 1Symbol 1269 MovieClip
"foreground"Symbol 1273 MovieClip {asfiles.setting.ForestRight} Frame 1Symbol 1272 MovieClip
"mouth"Symbol 1289 MovieClip {reemus3_fla.liamholding_96} Frame 1Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"mouth"Symbol 1290 MovieClip {reemus3_fla.liambounce_97} Frame 1Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"mouth"Symbol 1291 MovieClip {reemus3_fla.liamholdstuffbounce_98} Frame 1Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"mouth"Symbol 1294 MovieClip {reemus3_fla.bendingdownliam_99} Frame 56Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"mouth"Symbol 1424 MovieClip {reemus3_fla.tossgelationliam_126} Frame 1Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"mouth"Symbol 1425 MovieClip {reemus3_fla.grabgelatin_127} Frame 5Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"mouth"Symbol 1428 MovieClip {reemus3_fla.pourliquid_130} Frame 1Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"mouth"Symbol 1431 MovieClip {reemus3_fla.fillliquid_131} Frame 1Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"vase"Symbol 1431 MovieClip {reemus3_fla.fillliquid_131} Frame 10Symbol 985 MovieClip {asfiles.setting.features.Vase}
"mouth"Symbol 1442 MovieClip {reemus3_fla.liamgrabvase_133} Frame 1Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"mouth"Symbol 1443 MovieClip {reemus3_fla.pourbackin_134} Frame 1Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"mouth"Symbol 1447 MovieClip {reemus3_fla.jumplandliam_136} Frame 6Symbol 226 MovieClip {reemus3_fla.liammouth_38}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 1Symbol 1281 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 2Symbol 1285 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 3Symbol 333 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 4Symbol 401 MovieClip {reemus3_fla.staticliam_72}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 5Symbol 1286 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 6Symbol 1287 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 7Symbol 1288 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 8Symbol 1289 MovieClip {reemus3_fla.liamholding_96}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 9Symbol 1290 MovieClip {reemus3_fla.liambounce_97}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 10Symbol 1291 MovieClip {reemus3_fla.liamholdstuffbounce_98}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 40Symbol 1294 MovieClip {reemus3_fla.bendingdownliam_99}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 42Symbol 1295 MovieClip {reemus3_fla.stickshrroomtop_100}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 44Symbol 1296 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 46Symbol 1297 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 48Symbol 1298 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 50Symbol 1305 MovieClip {reemus3_fla.grabflag_104}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 52Symbol 1307 MovieClip {reemus3_fla.liampickflower_105}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 54Symbol 1313 MovieClip {reemus3_fla.tossflagliam_106}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 56Symbol 1314 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 58Symbol 1347 MovieClip {reemus3_fla.liampaints_108}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 60Symbol 1349 MovieClip {reemus3_fla.liamgrabflag2_109}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 62Symbol 1351 MovieClip {reemus3_fla.liamgetkey_110}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 64Symbol 1359 MovieClip {reemus3_fla.getwax_111}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 66Symbol 1363 MovieClip {reemus3_fla.liamgrabtreebark_112}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 68Symbol 1365 MovieClip {reemus3_fla.unlockchest_114}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 70Symbol 1371 MovieClip {reemus3_fla.liamgetseal_115}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 72Symbol 1373 MovieClip {reemus3_fla.liamputsnut_116}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 74Symbol 1374 MovieClip {reemus3_fla.grabnutliam_117}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 76Symbol 1375 MovieClip {reemus3_fla.liamfumblesquirrel_118}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 78Symbol 1376 MovieClip {reemus3_fla.liamattemptsrock_119}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 80Symbol 1397 MovieClip {reemus3_fla.jumponjello_120}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 82Symbol 1418 MovieClip {reemus3_fla.liamjumpin_122}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 84Symbol 1419 MovieClip {reemus3_fla.grabvineliam_125}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 86Symbol 1424 MovieClip {reemus3_fla.tossgelationliam_126}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 88Symbol 1425 MovieClip {reemus3_fla.grabgelatin_127}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 90Symbol 1426 MovieClip {reemus3_fla.pressbuttonliam_128}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 91Symbol 1427 MovieClip {reemus3_fla.liambuttonpress2_129}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 92Symbol 1428 MovieClip {reemus3_fla.pourliquid_130}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 94Symbol 1431 MovieClip {reemus3_fla.fillliquid_131}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 96Symbol 1442 MovieClip {reemus3_fla.liamgrabvase_133}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 98Symbol 1443 MovieClip {reemus3_fla.pourbackin_134}
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 100Symbol 1445 MovieClip
"spriteIn"Symbol 1448 MovieClip {Liam} Frame 102Symbol 1447 MovieClip {reemus3_fla.jumplandliam_136}
"reemustalk"Symbol 1453 MovieClip {reemus3_fla.reemusstrut1_139} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemustalk"Symbol 1456 MovieClip {reemus3_fla.reemusstrut2_141} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemustalk"Symbol 1459 MovieClip {reemus3_fla.reemusstrut3_142} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemustalk"Symbol 1462 MovieClip {reemus3_fla.reemusstrut4_143} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemustalk"Symbol 1465 MovieClip {reemus3_fla.reemusstrut5_144} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemustalk"Symbol 1468 MovieClip {reemus3_fla.reemusstrut6_145} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemustalk"Symbol 1472 MovieClip {reemus3_fla.reemusstrut7_146} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"held"Symbol 1484 MovieClip {reemus3_fla.reemusholdwalk_152} Frame 1Symbol 870 MovieClip {asfiles.char.HeldItemReemus}
"reemustalk"Symbol 1484 MovieClip {reemus3_fla.reemusholdwalk_152} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"held"Symbol 1485 MovieClip {reemus3_fla.reemusholdwalkback_154} Frame 1Symbol 867 MovieClip {HeldBackReemus}
"held"Symbol 1486 MovieClip {reemus3_fla.reemusholdwalkfront_156} Frame 1Symbol 865 MovieClip {reemusfrontholdhand}
"held"Symbol 1487 MovieClip {reemus3_fla.staticholdreemus_158} Frame 1Symbol 870 MovieClip {asfiles.char.HeldItemReemus}
"mouth"Symbol 1487 MovieClip {reemus3_fla.staticholdreemus_158} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1488 MovieClip {reemus3_fla.reemusstopbounce_159} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1489 MovieClip {reemus3_fla.reemusholdstuffbounce_160} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1490 MovieClip {reemus3_fla.reemuspullstick_161} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1492 MovieClip {reemus3_fla.reemusgetglue_162} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1493 MovieClip {reemus3_fla.glueaxe_163} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemustalk"Symbol 1503 MovieClip {reemus3_fla.reemusaxe_164} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemusmouth"Symbol 1503 MovieClip {reemus3_fla.reemusaxe_164} Frame 27Symbol 206 MovieClip {reemus3_fla.3_151}
"reemustalk"Symbol 1504 MovieClip {reemus3_fla.reemusSwingStick_165} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemusmouth"Symbol 1504 MovieClip {reemus3_fla.reemusSwingStick_165} Frame 27Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1506 MovieClip {reemus3_fla.reemuspunchbug_166} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1513 MovieClip {reemus3_fla.reemusslamit_167} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1516 MovieClip {reemus3_fla.reemusslamitaxe_169} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1517 MovieClip {reemus3_fla.pullcordreemus_170} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1518 MovieClip {reemus3_fla.reemusrockpaper_171} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1525 MovieClip {reemus3_fla.reemusunlockchest_176} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1531 MovieClip {reemus3_fla.blocktreeholereemus_177} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1533 MovieClip {reemus3_fla.grabsquirrel_178} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1536 MovieClip {reemus3_fla.reemusdroprock_179} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1542 MovieClip {reemus3_fla.parachutyreemusandliam_182} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1543 MovieClip {reemus3_fla.parachute_181} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1544 MovieClip {reemus3_fla.pickuprockreemus_183} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1545 MovieClip {reemus3_fla.reemusgrabshrrom_184} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemustalk"Symbol 1551 MovieClip {reemus3_fla.bustaxe_185} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemusmouth"Symbol 1551 MovieClip {reemus3_fla.bustaxe_185} Frame 18Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1552 MovieClip {reemus3_fla.dropaxe_186} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1553 MovieClip {reemus3_fla.throwMushroom_187} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1554 MovieClip {reemus3_fla.Reemusjumpslands_188} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1563 MovieClip {reemus3_fla.reemusgrabkey_190} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1564 MovieClip {reemus3_fla.pickuprock2_191} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1565 MovieClip {reemus3_fla.reemustakerockout_192} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"reemustalk"Symbol 1566 MovieClip {reemus3_fla.breakjuststick_193} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemusmouth"Symbol 1566 MovieClip {reemus3_fla.breakjuststick_193} Frame 18Symbol 206 MovieClip {reemus3_fla.3_151}
"reemustalk"Symbol 1568 MovieClip {reemus3_fla.gluestickbreak_194} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemusmouth"Symbol 1568 MovieClip {reemus3_fla.gluestickbreak_194} Frame 18Symbol 206 MovieClip {reemus3_fla.3_151}
"reemustalk"Symbol 1569 MovieClip {reemus3_fla.gluestickhittree_195} Frame 1Symbol 48 MovieClip {reemus3_fla.Reemustalk_140}
"reemusmouth"Symbol 1569 MovieClip {reemus3_fla.gluestickhittree_195} Frame 27Symbol 206 MovieClip {reemus3_fla.3_151}
"reemusmouth"Symbol 1573 MovieClip {reemus3_fla.blocktreeholewithrock_196} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 1Symbol 1473 MovieClip
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 2Symbol 1477 MovieClip
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 3Symbol 318 MovieClip
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 4Symbol 209 MovieClip {reemus3_fla.staticreemus_150}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 5Symbol 1484 MovieClip {reemus3_fla.reemusholdwalk_152}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 6Symbol 1485 MovieClip {reemus3_fla.reemusholdwalkback_154}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 7Symbol 1486 MovieClip {reemus3_fla.reemusholdwalkfront_156}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 8Symbol 1487 MovieClip {reemus3_fla.staticholdreemus_158}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 9Symbol 1488 MovieClip {reemus3_fla.reemusstopbounce_159}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 10Symbol 1489 MovieClip {reemus3_fla.reemusholdstuffbounce_160}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 35Symbol 1490 MovieClip {reemus3_fla.reemuspullstick_161}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 37Symbol 1492 MovieClip {reemus3_fla.reemusgetglue_162}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 39Symbol 1493 MovieClip {reemus3_fla.glueaxe_163}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 41Symbol 1503 MovieClip {reemus3_fla.reemusaxe_164}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 43Symbol 1504 MovieClip {reemus3_fla.reemusSwingStick_165}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 45Symbol 1506 MovieClip {reemus3_fla.reemuspunchbug_166}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 47Symbol 1513 MovieClip {reemus3_fla.reemusslamit_167}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 49Symbol 1516 MovieClip {reemus3_fla.reemusslamitaxe_169}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 51Symbol 1517 MovieClip {reemus3_fla.pullcordreemus_170}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 53Symbol 1518 MovieClip {reemus3_fla.reemusrockpaper_171}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 55Symbol 1525 MovieClip {reemus3_fla.reemusunlockchest_176}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 57Symbol 1531 MovieClip {reemus3_fla.blocktreeholereemus_177}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 59Symbol 1533 MovieClip {reemus3_fla.grabsquirrel_178}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 61Symbol 1536 MovieClip {reemus3_fla.reemusdroprock_179}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 63Symbol 1543 MovieClip {reemus3_fla.parachute_181}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 65Symbol 1544 MovieClip {reemus3_fla.pickuprockreemus_183}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 67Symbol 1545 MovieClip {reemus3_fla.reemusgrabshrrom_184}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 69Symbol 1551 MovieClip {reemus3_fla.bustaxe_185}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 71Symbol 1552 MovieClip {reemus3_fla.dropaxe_186}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 73Symbol 1553 MovieClip {reemus3_fla.throwMushroom_187}
"nope"Symbol 1574 MovieClip {Reemus} Frame 77Symbol 1562 MovieClip
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 79Symbol 1563 MovieClip {reemus3_fla.reemusgrabkey_190}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 81Symbol 1564 MovieClip {reemus3_fla.pickuprock2_191}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 85Symbol 1566 MovieClip {reemus3_fla.breakjuststick_193}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 87Symbol 1568 MovieClip {reemus3_fla.gluestickbreak_194}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 89Symbol 1569 MovieClip {reemus3_fla.gluestickhittree_195}
"spriteIn"Symbol 1574 MovieClip {Reemus} Frame 91Symbol 1573 MovieClip {reemus3_fla.blocktreeholewithrock_196}
"bounds"Symbol 1689 MovieClip {asfiles.setting.BeachLeft} Frame 1Symbol 1662 MovieClip
"tree"Symbol 1689 MovieClip {asfiles.setting.BeachLeft} Frame 1Symbol 1686 MovieClip {reemus3_fla.waxtree_200}
"sap"Symbol 1689 MovieClip {asfiles.setting.BeachLeft} Frame 1Symbol 1688 MovieClip
"bounds"Symbol 1703 MovieClip {asfiles.setting.BeachMiddle} Frame 1Symbol 1693 MovieClip
"bark"Symbol 1703 MovieClip {asfiles.setting.BeachMiddle} Frame 1Symbol 1361 MovieClip
"crate"Symbol 1703 MovieClip {asfiles.setting.BeachMiddle} Frame 1Symbol 1700 MovieClip {reemus3_fla.wardrobe_204}
"foreground"Symbol 1703 MovieClip {asfiles.setting.BeachMiddle} Frame 1Symbol 1702 MovieClip
"bounds"Symbol 1720 MovieClip {asfiles.setting.BeachRight} Frame 1Symbol 1711 MovieClip
"keyCrate"Symbol 1720 MovieClip {asfiles.setting.BeachRight} Frame 1Symbol 1715 MovieClip {reemus3_fla.secondbox_209}
"guard"Symbol 1720 MovieClip {asfiles.setting.BeachRight} Frame 1Symbol 609 MovieClip {reemus3_fla.boatguard_210}
"crates"Symbol 1720 MovieClip {asfiles.setting.BeachRight} Frame 1Symbol 1716 MovieClip
"keys"Symbol 1720 MovieClip {asfiles.setting.BeachRight} Frame 1Symbol 1718 MovieClip
"foreground"Symbol 1720 MovieClip {asfiles.setting.BeachRight} Frame 1Symbol 1719 MovieClip
"reemusmouth"Symbol 1731 MovieClip {reemus3_fla.reemuspulltree1_220} Frame 1Symbol 206 MovieClip {reemus3_fla.3_151}
"inner"Symbol 1733 MovieClip {reemus3_fla.bendytree_219} Frame 2Symbol 1731 MovieClip {reemus3_fla.reemuspulltree1_220}
"bounds"Symbol 1741 MovieClip {asfiles.setting.BurrowLeft} Frame 1Symbol 1724 MovieClip
"tree"Symbol 1741 MovieClip {asfiles.setting.BurrowLeft} Frame 1Symbol 1733 MovieClip {reemus3_fla.bendytree_219}
"rock1"Symbol 1741 MovieClip {asfiles.setting.BurrowLeft} Frame 1Symbol 1535 MovieClip {reemus3_fla.rock_180}
"squirrel"Symbol 1741 MovieClip {asfiles.setting.BurrowLeft} Frame 1Symbol 1738 MovieClip {reemus3_fla.squirreljumpoff_222}
"rock2"Symbol 1741 MovieClip {asfiles.setting.BurrowLeft} Frame 1Symbol 1535 MovieClip {reemus3_fla.rock_180}
"beach"Symbol 1741 MovieClip {asfiles.setting.BurrowLeft} Frame 1Symbol 1740 MovieClip
"exit"Symbol 1741 MovieClip {asfiles.setting.BurrowLeft} Frame 1Symbol 1149 MovieClip
"bounds"Symbol 1764 MovieClip {asfiles.setting.BurrowMiddle} Frame 1Symbol 1745 MovieClip
"hole3"Symbol 1764 MovieClip {asfiles.setting.BurrowMiddle} Frame 1Symbol 1748 MovieClip
"hole4"Symbol 1764 MovieClip {asfiles.setting.BurrowMiddle} Frame 1Symbol 1751 MovieClip
"squirrel"Symbol 1764 MovieClip {asfiles.setting.BurrowMiddle} Frame 1Symbol 1758 MovieClip {reemus3_fla.squirrel2_228}
"droppedRock"Symbol 1764 MovieClip {asfiles.setting.BurrowMiddle} Frame 1Symbol 1759 MovieClip {reemus3_fla.droppedrock_229}
"highHole"Symbol 1764 MovieClip {asfiles.setting.BurrowMiddle} Frame 1Symbol 1761 MovieClip
"lowHole"Symbol 1764 MovieClip {asfiles.setting.BurrowMiddle} Frame 1Symbol 1763 MovieClip
"foreground"Symbol 1764 MovieClip {asfiles.setting.BurrowMiddle} Frame 1Symbol 1702 MovieClip
"nut"Symbol 1785 MovieClip {reemus3_fla.tumblelingnut_239} Frame 1Symbol 892 MovieClip {reemus3_fla.nut_78}
"bounds"Symbol 1786 MovieClip {asfiles.setting.BurrowRight} Frame 1Symbol 1768 MovieClip
"feeder"Symbol 1786 MovieClip {asfiles.setting.BurrowRight} Frame 1Symbol 1772 MovieClip
"hole1"Symbol 1786 MovieClip {asfiles.setting.BurrowRight} Frame 1Symbol 1775 MovieClip
"hole2"Symbol 1786 MovieClip {asfiles.setting.BurrowRight} Frame 1Symbol 1778 MovieClip
"squirrel"Symbol 1786 MovieClip {asfiles.setting.BurrowRight} Frame 1Symbol 1784 MovieClip {reemus3_fla.squirrelrun1_237}
"nut"Symbol 1786 MovieClip {asfiles.setting.BurrowRight} Frame 1Symbol 1785 MovieClip {reemus3_fla.tumblelingnut_239}
"foreground"Symbol 1786 MovieClip {asfiles.setting.BurrowRight} Frame 1Symbol 1702 MovieClip
"peg2"Symbol 1802 MovieClip {reemus3_fla.lifestone_245} Frame 1Symbol 89 MovieClip {reemus3_fla.peg_246}
"peg1"Symbol 1802 MovieClip {reemus3_fla.lifestone_245} Frame 1Symbol 89 MovieClip {reemus3_fla.peg_246}
"foreground"Symbol 1820 MovieClip {reemus3_fla.CaveDoor_251} Frame 1Symbol 1819 MovieClip
"bounds"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1790 MovieClip
"cave"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1794 MovieClip {reemus3_fla.bigcave_242}
"door"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1796 MovieClip
"log"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1798 MovieClip
"rock3"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1802 MovieClip {reemus3_fla.lifestone_245}
"rock4"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1802 MovieClip {reemus3_fla.lifestone_245}
"rock1"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1802 MovieClip {reemus3_fla.lifestone_245}
"rock2"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1802 MovieClip {reemus3_fla.lifestone_245}
"roach"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1817 MovieClip
"foreground"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1820 MovieClip {reemus3_fla.CaveDoor_251}
"carriage"Symbol 1828 MovieClip {asfiles.setting.CaveDoor} Frame 1Symbol 1827 MovieClip {reemus3_fla.liambeeintro_253}
"pond"Symbol 1834 MovieClip {reemus3_fla.CAVEPANBG_257} Frame 1Symbol 1831 MovieClip {reemus3_fla.waterturnstojello_258}
"spriteIn"Symbol 1850 MovieClip {reemus3_fla.fuzzywuzzy_260} Frame 10Symbol 1848 MovieClip {reemus3_fla.barkingmonster_264}
"cave"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1834 MovieClip {reemus3_fla.CAVEPANBG_257}
"bounds"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1836 MovieClip
"fuzzy"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1850 MovieClip {reemus3_fla.fuzzywuzzy_260}
"mushrooms"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1853 MovieClip
"cabinet"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1859 MovieClip {reemus3_fla.cabinet_267}
"vines"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1871 MovieClip {reemus3_fla.vines_269}
"roach"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1879 MovieClip {reemus3_fla.roachoutro_270}
"stalagmites"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1883 MovieClip
"mushroom"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1885 MovieClip
"pondArea"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1887 MovieClip
"stalactite"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1889 MovieClip
"foreground"Symbol 1892 MovieClip {asfiles.setting.CaveInterior} Frame 1Symbol 1891 MovieClip
"leftExit"Symbol 1898 MovieClip {reemus3_fla.CliffLeft_280} Frame 1Symbol 1897 MovieClip
"spriteIn"Symbol 1951 MovieClip {reemus3_fla.tinkertok_285} Frame 1Symbol 1923 MovieClip
"spriteIn"Symbol 1951 MovieClip {reemus3_fla.tinkertok_285} Frame 7Symbol 1929 MovieClip
"bounds"Symbol 1952 MovieClip {asfiles.setting.CliffLeft} Frame 1Symbol 1898 MovieClip {reemus3_fla.CliffLeft_280}
"flag"Symbol 1952 MovieClip {asfiles.setting.CliffLeft} Frame 1Symbol 1910 MovieClip
"flower"Symbol 1952 MovieClip {asfiles.setting.CliffLeft} Frame 1Symbol 1911 MovieClip
"keepOut"Symbol 1952 MovieClip {asfiles.setting.CliffLeft} Frame 1Symbol 1913 MovieClip
"levelExit"Symbol 1952 MovieClip {asfiles.setting.CliffLeft} Frame 1Symbol 1149 MovieClip
"peri"Symbol 1952 MovieClip {asfiles.setting.CliffLeft} Frame 1Symbol 1951 MovieClip {reemus3_fla.tinkertok_285}
"foreground"Symbol 1952 MovieClip {asfiles.setting.CliffLeft} Frame 1Symbol 1702 MovieClip
"bounds"Symbol 1971 MovieClip {asfiles.setting.CliffMiddle} Frame 1Symbol 1956 MovieClip
"flower"Symbol 1971 MovieClip {asfiles.setting.CliffMiddle} Frame 1Symbol 1959 MovieClip
"circleRock"Symbol 1971 MovieClip {asfiles.setting.CliffMiddle} Frame 1Symbol 1961 MovieClip
"crossRock"Symbol 1971 MovieClip {asfiles.setting.CliffMiddle} Frame 1Symbol 1963 MovieClip
"descriptiveRock"Symbol 1971 MovieClip {asfiles.setting.CliffMiddle} Frame 1Symbol 1965 MovieClip
"field"Symbol 1971 MovieClip {asfiles.setting.CliffMiddle} Frame 1Symbol 1967 MovieClip
"tinkertok"Symbol 1971 MovieClip {asfiles.setting.CliffMiddle} Frame 1Symbol 1968 MovieClip {reemus3_fla.tinkertokwalkaway_301}
"foreground"Symbol 1971 MovieClip {asfiles.setting.CliffMiddle} Frame 1Symbol 1970 MovieClip
"splatter"Symbol 1989 MovieClip {reemus3_fla.flagstencil_305} Frame 1Symbol 1977 MovieClip {reemus3_fla.paintsplat_306}
"circle"Symbol 1989 MovieClip {reemus3_fla.flagstencil_305} Frame 1Symbol 1980 MovieClip {reemus3_fla.paintappear_307}
"flag"Symbol 1989 MovieClip {reemus3_fla.flagstencil_305} Frame 1Symbol 1985 MovieClip {reemus3_fla.flagfall_308}
"overSplatter"Symbol 1989 MovieClip {reemus3_fla.flagstencil_305} Frame 1Symbol 1988 MovieClip {reemus3_fla.splattersappear_309}
"bounds"Symbol 2001 MovieClip {asfiles.setting.CliffRight} Frame 1Symbol 1975 MovieClip
"flag"Symbol 2001 MovieClip {asfiles.setting.CliffRight} Frame 1Symbol 1989 MovieClip {reemus3_fla.flagstencil_305}
"bell"Symbol 2001 MovieClip {asfiles.setting.CliffRight} Frame 1Symbol 1993 MovieClip {reemus3_fla.BELL_310}
"flower"Symbol 2001 MovieClip {asfiles.setting.CliffRight} Frame 1Symbol 1911 MovieClip
"tree"Symbol 2001 MovieClip {asfiles.setting.CliffRight} Frame 1Symbol 1995 MovieClip
"rock"Symbol 2001 MovieClip {asfiles.setting.CliffRight} Frame 1Symbol 1997 MovieClip
"hole"Symbol 2001 MovieClip {asfiles.setting.CliffRight} Frame 1Symbol 1999 MovieClip
"tinkertok"Symbol 2001 MovieClip {asfiles.setting.CliffRight} Frame 1Symbol 849 MovieClip {asfiles.setting.features.Tinkertok}
"foreground"Symbol 2001 MovieClip {asfiles.setting.CliffRight} Frame 1Symbol 2000 MovieClip
"bounds"Symbol 2011 MovieClip {asfiles.setting.Spire} Frame 1Symbol 2005 MovieClip
"door"Symbol 2011 MovieClip {asfiles.setting.Spire} Frame 1Symbol 2010 MovieClip {reemus3_fla.secretdoor_320}
"spriteIn"Symbol 2011 MovieClip {asfiles.setting.Spire} Frame 1Symbol 1447 MovieClip {reemus3_fla.jumplandliam_136}
"bounds"Symbol 2081 MovieClip {asfiles.setting.TempleLeft} Frame 1Symbol 2015 MovieClip
"pool"Symbol 2081 MovieClip {asfiles.setting.TempleLeft} Frame 1Symbol 2020 MovieClip
"streams"Symbol 2081 MovieClip {asfiles.setting.TempleLeft} Frame 1Symbol 2056 MovieClip
"vase"Symbol 2081 MovieClip {asfiles.setting.TempleLeft} Frame 1Symbol 2073 MovieClip
"streamLeft"Symbol 2081 MovieClip {asfiles.setting.TempleLeft} Frame 1Symbol 2075 MovieClip
"streamMiddle"Symbol 2081 MovieClip {asfiles.setting.TempleLeft} Frame 1Symbol 2077 MovieClip
"streamRight"Symbol 2081 MovieClip {asfiles.setting.TempleLeft} Frame 1Symbol 2079 MovieClip
"foreground"Symbol 2081 MovieClip {asfiles.setting.TempleLeft} Frame 1Symbol 2080 MovieClip
"bounds"Symbol 2115 MovieClip {asfiles.setting.TempleMiddle} Frame 1Symbol 2085 MovieClip
"pipesLeft"Symbol 2115 MovieClip {asfiles.setting.TempleMiddle} Frame 1Symbol 2095 MovieClip {reemus3_fla.colourpipes1_338}
"pipesRight"Symbol 2115 MovieClip {asfiles.setting.TempleMiddle} Frame 1Symbol 2105 MovieClip {reemus3_fla.colouredpipes2_339}
"statueLeft"Symbol 2115 MovieClip {asfiles.setting.TempleMiddle} Frame 1Symbol 2109 MovieClip
"statueRight"Symbol 2115 MovieClip {asfiles.setting.TempleMiddle} Frame 1Symbol 2109 MovieClip
"stoneLeft"Symbol 2115 MovieClip {asfiles.setting.TempleMiddle} Frame 1Symbol 2113 MovieClip {reemus3_fla.steprock_341}
"stoneRight"Symbol 2115 MovieClip {asfiles.setting.TempleMiddle} Frame 1Symbol 2113 MovieClip {reemus3_fla.steprock_341}
"foreground"Symbol 2115 MovieClip {asfiles.setting.TempleMiddle} Frame 1Symbol 2114 MovieClip
"bounds"Symbol 2129 MovieClip {asfiles.setting.TempleRight} Frame 1Symbol 2119 MovieClip
"door"Symbol 2129 MovieClip {asfiles.setting.TempleRight} Frame 1Symbol 2122 MovieClip {reemus3_fla.stonestepdoor_345}
"rightStatue"Symbol 2129 MovieClip {asfiles.setting.TempleRight} Frame 1Symbol 806 MovieClip {asfiles.setting.features.PaintStatue}
"leftStatue"Symbol 2129 MovieClip {asfiles.setting.TempleRight} Frame 1Symbol 806 MovieClip {asfiles.setting.features.PaintStatue}
"rightButton"Symbol 2129 MovieClip {asfiles.setting.TempleRight} Frame 1Symbol 2127 MovieClip
"leftButton"Symbol 2129 MovieClip {asfiles.setting.TempleRight} Frame 1Symbol 2127 MovieClip
"foreground"Symbol 2129 MovieClip {asfiles.setting.TempleRight} Frame 1Symbol 2128 MovieClip
"bird"Symbol 2196 MovieClip {reemus3_fla.climbtreespider_374} Frame 1Symbol 2166 MovieClip
"bird"Symbol 2196 MovieClip {reemus3_fla.climbtreespider_374} Frame 140Symbol 2166 MovieClip
"bird"Symbol 2261 MovieClip {reemus3_fla.alien_364} Frame 1Symbol 2166 MovieClip
"spriteIn"Symbol 2261 MovieClip {reemus3_fla.alien_364} Frame 3Symbol 2170 MovieClip {reemus3_fla.bluetreeclimb_371}
"bounds"Symbol 2272 MovieClip {asfiles.setting.VisitorLeft} Frame 1Symbol 2005 MovieClip
"mainFeature"Symbol 2272 MovieClip {asfiles.setting.VisitorLeft} Frame 1Symbol 2261 MovieClip {reemus3_fla.alien_364}
"trunk"Symbol 2272 MovieClip {asfiles.setting.VisitorLeft} Frame 1Symbol 2263 MovieClip
"grass"Symbol 2272 MovieClip {asfiles.setting.VisitorLeft} Frame 1Symbol 2265 MovieClip
"cave"Symbol 2272 MovieClip {asfiles.setting.VisitorLeft} Frame 1Symbol 2267 MovieClip
"branch"Symbol 2272 MovieClip {asfiles.setting.VisitorLeft} Frame 1Symbol 2269 MovieClip
"web"Symbol 2272 MovieClip {asfiles.setting.VisitorLeft} Frame 1Symbol 2271 MovieClip
"monstermouth3"Symbol 2426 MovieClip {reemus3_fla.castrod_410} Frame 1Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth3"Symbol 2440 MovieClip {reemus3_fla.fishitmonster_417} Frame 1Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth3"Symbol 2452 MovieClip {reemus3_fla.fishitmonster2_418} Frame 1Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"monstermouth3"Symbol 2481 MovieClip {reemus3_fla.shakerodmmonster_419} Frame 1Symbol 362 MovieClip {reemus3_fla.monstermouth3_412}
"frog"Symbol 2634 MovieClip {reemus3_fla.VisitorRight_425} Frame 1Symbol 2544 MovieClip
"bounds"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2005 MovieClip
"mainFeature"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2353 MovieClip
"frogBeast"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2388 MovieClip {reemus3_fla.frogbeastjumpup_404}
"flyFruitTree"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2406 MovieClip {reemus3_fla.flyfruittree_405}
"fruit"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2410 MovieClip
"fisherman"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2482 MovieClip
"fish"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2537 MovieClip
"frog"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2634 MovieClip {reemus3_fla.VisitorRight_425}
"water"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2636 MovieClip
"branch1"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2638 MovieClip
"branch2"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2640 MovieClip
"branch3"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2642 MovieClip
"rod"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2644 MovieClip
"flyFruit"Symbol 2648 MovieClip {asfiles.setting.VisitorRight} Frame 1Symbol 2646 MovieClip
"credits"Symbol 2688 MovieClip {reemus3_fla.mapunfold_502} Frame 12Symbol 299 MovieClip {asfiles.Credits}
"credits"Symbol 2688 MovieClip {reemus3_fla.mapunfold_502} Frame 25Symbol 299 MovieClip {asfiles.Credits}
"credits"Symbol 2688 MovieClip {reemus3_fla.mapunfold_502} Frame 26Symbol 299 MovieClip {asfiles.Credits}

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS3.
Tag 0x0FF (255)Timeline Frame 11 bytes " "

Labels

"snake"Symbol 87 MovieClip {reemus3_fla.puzzleholes_536} Frame 2
"frog"Symbol 87 MovieClip {reemus3_fla.puzzleholes_536} Frame 3
"plant"Symbol 87 MovieClip {reemus3_fla.puzzleholes_536} Frame 4
"carrot"Symbol 87 MovieClip {reemus3_fla.puzzleholes_536} Frame 5
"owl"Symbol 87 MovieClip {reemus3_fla.puzzleholes_536} Frame 6
"rabbit"Symbol 87 MovieClip {reemus3_fla.puzzleholes_536} Frame 7
"mouse"Symbol 87 MovieClip {reemus3_fla.puzzleholes_536} Frame 8
"snake"Symbol 89 MovieClip {reemus3_fla.peg_246} Frame 1
"frog"Symbol 89 MovieClip {reemus3_fla.peg_246} Frame 2
"plant"Symbol 89 MovieClip {reemus3_fla.peg_246} Frame 3
"carrot"Symbol 89 MovieClip {reemus3_fla.peg_246} Frame 4
"owl"Symbol 89 MovieClip {reemus3_fla.peg_246} Frame 5
"rabbit"Symbol 89 MovieClip {reemus3_fla.peg_246} Frame 6
"mouse"Symbol 89 MovieClip {reemus3_fla.peg_246} Frame 7
"closed"Symbol 206 MovieClip {reemus3_fla.3_151} Frame 1
"a"Symbol 206 MovieClip {reemus3_fla.3_151} Frame 10
"o"Symbol 206 MovieClip {reemus3_fla.3_151} Frame 20
"e"Symbol 206 MovieClip {reemus3_fla.3_151} Frame 30
"th"Symbol 206 MovieClip {reemus3_fla.3_151} Frame 40
"l"Symbol 206 MovieClip {reemus3_fla.3_151} Frame 50
"talk"Symbol 206 MovieClip {reemus3_fla.3_151} Frame 67
"talkmore"Symbol 206 MovieClip {reemus3_fla.3_151} Frame 98
"orange"Symbol 218 MovieClip {reemus3_fla.liambeebody_73} Frame 5
"bee"Symbol 218 MovieClip {reemus3_fla.liambeebody_73} Frame 10
"black"Symbol 218 MovieClip {reemus3_fla.liambeebody_73} Frame 15
"stripes"Symbol 218 MovieClip {reemus3_fla.liambeebody_73} Frame 20
"a"Symbol 226 MovieClip {reemus3_fla.liammouth_38} Frame 5
"o"Symbol 226 MovieClip {reemus3_fla.liammouth_38} Frame 11
"e"Symbol 226 MovieClip {reemus3_fla.liammouth_38} Frame 16
"l"Symbol 226 MovieClip {reemus3_fla.liammouth_38} Frame 22
"ah"Symbol 226 MovieClip {reemus3_fla.liammouth_38} Frame 27
"talk"Symbol 226 MovieClip {reemus3_fla.liammouth_38} Frame 35
"roar"Symbol 361 MovieClip {reemus3_fla.monstermouth4_411} Frame 2
"roar"Symbol 362 MovieClip {reemus3_fla.monstermouth3_412} Frame 2
"roar"Symbol 365 MovieClip {reemus3_fla.monstermouth2_414} Frame 2
"roar"Symbol 367 MovieClip {reemus3_fla.monstermouth_415} Frame 2
"die"Symbol 376 MovieClip {reemus3_fla.alieneye_413} Frame 130
"shot21"Symbol 499 MovieClip {ending2movie} Frame 131
"shot22"Symbol 499 MovieClip {ending2movie} Frame 472
"raft"Symbol 499 MovieClip {ending2movie} Frame 473
"redend"Symbol 499 MovieClip {ending2movie} Frame 474
"talk"Symbol 609 MovieClip {reemus3_fla.boatguard_210} Frame 3
"halt"Symbol 609 MovieClip {reemus3_fla.boatguard_210} Frame 5
"shoot"Symbol 609 MovieClip {reemus3_fla.boatguard_210} Frame 30
"scissors"Symbol 609 MovieClip {reemus3_fla.boatguard_210} Frame 75
"rock"Symbol 609 MovieClip {reemus3_fla.boatguard_210} Frame 90
"paper"Symbol 609 MovieClip {reemus3_fla.boatguard_210} Frame 105
"laugh"Symbol 609 MovieClip {reemus3_fla.boatguard_210} Frame 126
"shot2"Symbol 646 MovieClip {ending1movie} Frame 53
"shot2b"Symbol 646 MovieClip {ending1movie} Frame 122
"shot3"Symbol 646 MovieClip {ending1movie} Frame 123
"shot4"Symbol 646 MovieClip {ending1movie} Frame 124
"shot5"Symbol 646 MovieClip {ending1movie} Frame 125
"shot7"Symbol 646 MovieClip {ending1movie} Frame 215
"shot8"Symbol 646 MovieClip {ending1movie} Frame 240
"shot9"Symbol 646 MovieClip {ending1movie} Frame 302
"liam"Symbol 659 MovieClip {asfiles.char.Portrait} Frame 1
"reemus"Symbol 659 MovieClip {asfiles.char.Portrait} Frame 2
"rant"Symbol 849 MovieClip {asfiles.setting.features.Tinkertok} Frame 59
"just flag"Symbol 849 MovieClip {asfiles.setting.features.Tinkertok} Frame 94
"graffiti"Symbol 849 MovieClip {asfiles.setting.features.Tinkertok} Frame 212
"scrub paint"Symbol 849 MovieClip {asfiles.setting.features.Tinkertok} Frame 319
"loading"Symbol 1075 MovieClip {reemus3_fla.X_LOAD_2} Frame 1
"loaded"Symbol 1075 MovieClip {reemus3_fla.X_LOAD_2} Frame 101
"lastframe"Symbol 1075 MovieClip {reemus3_fla.X_LOAD_2} Frame 165
"end"Symbol 1075 MovieClip {reemus3_fla.X_LOAD_2} Frame 166
"walkingSide"Symbol 1448 MovieClip {Liam} Frame 1
"walkingBack"Symbol 1448 MovieClip {Liam} Frame 2
"walkingFront"Symbol 1448 MovieClip {Liam} Frame 3
"waiting"Symbol 1448 MovieClip {Liam} Frame 4
"walkingSide_held"Symbol 1448 MovieClip {Liam} Frame 5
"walkingBack_held"Symbol 1448 MovieClip {Liam} Frame 6
"walkingFront_held"Symbol 1448 MovieClip {Liam} Frame 7
"waiting_held"Symbol 1448 MovieClip {Liam} Frame 8
"bounce"Symbol 1448 MovieClip {Liam} Frame 9
"bounce_held"Symbol 1448 MovieClip {Liam} Frame 10
"pickUpMushroom"Symbol 1448 MovieClip {Liam} Frame 40
"pickUpMushroom_held"Symbol 1448 MovieClip {Liam} Frame 41
"setDownMushroom"Symbol 1448 MovieClip {Liam} Frame 42
"setDownMushroom_held"Symbol 1448 MovieClip {Liam} Frame 43
"tieBee"Symbol 1448 MovieClip {Liam} Frame 44
"tieBee_held"Symbol 1448 MovieClip {Liam} Frame 45
"grabBee"Symbol 1448 MovieClip {Liam} Frame 46
"grabBee_held"Symbol 1448 MovieClip {Liam} Frame 47
"liftRock"Symbol 1448 MovieClip {Liam} Frame 48
"liftRock_held"Symbol 1448 MovieClip {Liam} Frame 49
"grabFlag"Symbol 1448 MovieClip {Liam} Frame 50
"grabFlag_held"Symbol 1448 MovieClip {Liam} Frame 51
"grabFlower"Symbol 1448 MovieClip {Liam} Frame 52
"grabFlower_held"Symbol 1448 MovieClip {Liam} Frame 53
"tossFlag"Symbol 1448 MovieClip {Liam} Frame 54
"tossFlag_held"Symbol 1448 MovieClip {Liam} Frame 55
"ringBell"Symbol 1448 MovieClip {Liam} Frame 56
"ringBell_held"Symbol 1448 MovieClip {Liam} Frame 57
"paint"Symbol 1448 MovieClip {Liam} Frame 58
"paint_held"Symbol 1448 MovieClip {Liam} Frame 59
"grabDroppedFlag"Symbol 1448 MovieClip {Liam} Frame 60
"grabDroppedFlag_held"Symbol 1448 MovieClip {Liam} Frame 61
"grabKeys"Symbol 1448 MovieClip {Liam} Frame 62
"grabKeys_held"Symbol 1448 MovieClip {Liam} Frame 63
"getWax"Symbol 1448 MovieClip {Liam} Frame 64
"getWax_held"Symbol 1448 MovieClip {Liam} Frame 65
"grabBark"Symbol 1448 MovieClip {Liam} Frame 66
"grabBark_held"Symbol 1448 MovieClip {Liam} Frame 67
"openCrate"Symbol 1448 MovieClip {Liam} Frame 68
"openCrate_held"Symbol 1448 MovieClip {Liam} Frame 69
"getSeal"Symbol 1448 MovieClip {Liam} Frame 70
"getSeal_held"Symbol 1448 MovieClip {Liam} Frame 71
"tossNut"Symbol 1448 MovieClip {Liam} Frame 72
"tossNut_held"Symbol 1448 MovieClip {Liam} Frame 73
"grabNut"Symbol 1448 MovieClip {Liam} Frame 74
"grabNut_held"Symbol 1448 MovieClip {Liam} Frame 75
"missSquirrel"Symbol 1448 MovieClip {Liam} Frame 76
"missSquirrel_held"Symbol 1448 MovieClip {Liam} Frame 77
"grabRock"Symbol 1448 MovieClip {Liam} Frame 78
"grabRock_held"Symbol 1448 MovieClip {Liam} Frame 79
"jumpJello"Symbol 1448 MovieClip {Liam} Frame 80
"jumpJello_held"Symbol 1448 MovieClip {Liam} Frame 81
"jumpWater"Symbol 1448 MovieClip {Liam} Frame 82
"jumpWater_held"Symbol 1448 MovieClip {Liam} Frame 83
"dropVine"Symbol 1448 MovieClip {Liam} Frame 84
"dropVine_held"Symbol 1448 MovieClip {Liam} Frame 85
"throwGelatin"Symbol 1448 MovieClip {Liam} Frame 86
"throwGelatin_held"Symbol 1448 MovieClip {Liam} Frame 87
"getGelatin"Symbol 1448 MovieClip {Liam} Frame 88
"getGelatin_held"Symbol 1448 MovieClip {Liam} Frame 89
"pushButton"Symbol 1448 MovieClip {Liam} Frame 90
"pushButton_held"Symbol 1448 MovieClip {Liam} Frame 91
"pourVase"Symbol 1448 MovieClip {Liam} Frame 92
"pourVase_held"Symbol 1448 MovieClip {Liam} Frame 93
"fillVase"Symbol 1448 MovieClip {Liam} Frame 94
"fillVase_held"Symbol 1448 MovieClip {Liam} Frame 95
"getVase"Symbol 1448 MovieClip {Liam} Frame 96
"getVase_held"Symbol 1448 MovieClip {Liam} Frame 97
"dumpVase"Symbol 1448 MovieClip {Liam} Frame 98
"dumpVase_held"Symbol 1448 MovieClip {Liam} Frame 99
"dropFlower"Symbol 1448 MovieClip {Liam} Frame 100
"dropFlower_held"Symbol 1448 MovieClip {Liam} Frame 101
"drop"Symbol 1448 MovieClip {Liam} Frame 102
"drop_held"Symbol 1448 MovieClip {Liam} Frame 103
"rock"Symbol 1518 MovieClip {reemus3_fla.reemusrockpaper_171} Frame 49
"paper"Symbol 1518 MovieClip {reemus3_fla.reemusrockpaper_171} Frame 61
"scissors"Symbol 1518 MovieClip {reemus3_fla.reemusrockpaper_171} Frame 75
"walkingSide"Symbol 1574 MovieClip {Reemus} Frame 1
"walkingBack"Symbol 1574 MovieClip {Reemus} Frame 2
"walkingFront"Symbol 1574 MovieClip {Reemus} Frame 3
"waiting"Symbol 1574 MovieClip {Reemus} Frame 4
"walkingSide_held"Symbol 1574 MovieClip {Reemus} Frame 5
"walkingBack_held"Symbol 1574 MovieClip {Reemus} Frame 6
"walkingFront_held"Symbol 1574 MovieClip {Reemus} Frame 7
"waiting_held"Symbol 1574 MovieClip {Reemus} Frame 8
"bounce"Symbol 1574 MovieClip {Reemus} Frame 9
"bounce_held"Symbol 1574 MovieClip {Reemus} Frame 10
"pullStick"Symbol 1574 MovieClip {Reemus} Frame 35
"pullStick_held"Symbol 1574 MovieClip {Reemus} Frame 36
"getGlue"Symbol 1574 MovieClip {Reemus} Frame 37
"getGlue_held"Symbol 1574 MovieClip {Reemus} Frame 38
"pickUpAxe"Symbol 1574 MovieClip {Reemus} Frame 39
"pickUpAxe_held"Symbol 1574 MovieClip {Reemus} Frame 40
"axeSwing"Symbol 1574 MovieClip {Reemus} Frame 41
"axeSwing_held"Symbol 1574 MovieClip {Reemus} Frame 42
"stickSwing"Symbol 1574 MovieClip {Reemus} Frame 43
"stickSwing_held"Symbol 1574 MovieClip {Reemus} Frame 44
"bugPunch"Symbol 1574 MovieClip {Reemus} Frame 45
"bugPunch_held"Symbol 1574 MovieClip {Reemus} Frame 46
"bugSquish"Symbol 1574 MovieClip {Reemus} Frame 47
"bugSquish_held"Symbol 1574 MovieClip {Reemus} Frame 48
"ringBell"Symbol 1574 MovieClip {Reemus} Frame 51
"ringBell_held"Symbol 1574 MovieClip {Reemus} Frame 52
"rockPaperScissors"Symbol 1574 MovieClip {Reemus} Frame 53
"rockPaperScissors_held"Symbol 1574 MovieClip {Reemus} Frame 54
"openCrate"Symbol 1574 MovieClip {Reemus} Frame 55
"openCrate_held"Symbol 1574 MovieClip {Reemus} Frame 56
"poiseHigh"Symbol 1574 MovieClip {Reemus} Frame 57
"poiseHigh_held"Symbol 1574 MovieClip {Reemus} Frame 58
"grabSquirrel"Symbol 1574 MovieClip {Reemus} Frame 59
"grabSquirrel_held"Symbol 1574 MovieClip {Reemus} Frame 60
"plugHole"Symbol 1574 MovieClip {Reemus} Frame 61
"plugHole_held"Symbol 1574 MovieClip {Reemus} Frame 62
"squirrelFly"Symbol 1574 MovieClip {Reemus} Frame 63
"squirrelFly_held"Symbol 1574 MovieClip {Reemus} Frame 64
"grabRock"Symbol 1574 MovieClip {Reemus} Frame 65
"grabRock_held"Symbol 1574 MovieClip {Reemus} Frame 66
"getMushroom"Symbol 1574 MovieClip {Reemus} Frame 67
"getMushroom_held"Symbol 1574 MovieClip {Reemus} Frame 68
"bustAxe"Symbol 1574 MovieClip {Reemus} Frame 69
"bustAxe_held"Symbol 1574 MovieClip {Reemus} Frame 70
"dropAxe"Symbol 1574 MovieClip {Reemus} Frame 71
"dropAxe_held"Symbol 1574 MovieClip {Reemus} Frame 72
"throwMushroom"Symbol 1574 MovieClip {Reemus} Frame 73
"throwMushroom_held"Symbol 1574 MovieClip {Reemus} Frame 74
"drop"Symbol 1574 MovieClip {Reemus} Frame 75
"drop_held"Symbol 1574 MovieClip {Reemus} Frame 76
"beaten"Symbol 1574 MovieClip {Reemus} Frame 77
"beaten_held"Symbol 1574 MovieClip {Reemus} Frame 78
"grabKeys"Symbol 1574 MovieClip {Reemus} Frame 79
"grabKeys_held"Symbol 1574 MovieClip {Reemus} Frame 80
"retrieveRock"Symbol 1574 MovieClip {Reemus} Frame 81
"retrieveRock_held"Symbol 1574 MovieClip {Reemus} Frame 82
"breakStick"Symbol 1574 MovieClip {Reemus} Frame 85
"breakGlueStick"Symbol 1574 MovieClip {Reemus} Frame 87
"swingAxeGlue"Symbol 1574 MovieClip {Reemus} Frame 89
"poiseHighRock"Symbol 1574 MovieClip {Reemus} Frame 91
"idle"Symbol 1733 MovieClip {reemus3_fla.bendytree_219} Frame 1
"reemus"Symbol 1733 MovieClip {reemus3_fla.bendytree_219} Frame 2
"liam"Symbol 1733 MovieClip {reemus3_fla.bendytree_219} Frame 3
"hole1"Symbol 1758 MovieClip {reemus3_fla.squirrel2_228} Frame 1
"hole2"Symbol 1758 MovieClip {reemus3_fla.squirrel2_228} Frame 65
"eat"Symbol 1784 MovieClip {reemus3_fla.squirrelrun1_237} Frame 2
"hole1"Symbol 1784 MovieClip {reemus3_fla.squirrelrun1_237} Frame 20
"hole2"Symbol 1784 MovieClip {reemus3_fla.squirrelrun1_237} Frame 80
"hole3"Symbol 1784 MovieClip {reemus3_fla.squirrelrun1_237} Frame 140
"sleep"Symbol 1850 MovieClip {reemus3_fla.fuzzywuzzy_260} Frame 1
"wake"Symbol 1850 MovieClip {reemus3_fla.fuzzywuzzy_260} Frame 10
"eat"Symbol 1850 MovieClip {reemus3_fla.fuzzywuzzy_260} Frame 20
"stamp"Symbol 1951 MovieClip {reemus3_fla.tinkertok_285} Frame 1
"talk"Symbol 1951 MovieClip {reemus3_fla.tinkertok_285} Frame 7
"beat"Symbol 1951 MovieClip {reemus3_fla.tinkertok_285} Frame 15
"war"Symbol 1951 MovieClip {reemus3_fla.tinkertok_285} Frame 23
"fall"Symbol 1985 MovieClip {reemus3_fla.flagfall_308} Frame 3
"emerge"Symbol 2388 MovieClip {reemus3_fla.frogbeastjumpup_404} Frame 1
"nextHop"Symbol 2388 MovieClip {reemus3_fla.frogbeastjumpup_404} Frame 31
"lastHop"Symbol 2388 MovieClip {reemus3_fla.frogbeastjumpup_404} Frame 56
"chew"Symbol 2388 MovieClip {reemus3_fla.frogbeastjumpup_404} Frame 92
"highDive"Symbol 2388 MovieClip {reemus3_fla.frogbeastjumpup_404} Frame 118
"mediumDive"Symbol 2388 MovieClip {reemus3_fla.frogbeastjumpup_404} Frame 142
"lowDive"Symbol 2388 MovieClip {reemus3_fla.frogbeastjumpup_404} Frame 155
"shot30"Symbol 2679 MovieClip {intro4} Frame 80
"shot31"Symbol 2679 MovieClip {intro4} Frame 98




http://swfchan.com/19/91710/info.shtml
Created: 27/3 -2019 19:31:56 Last modified: 27/3 -2019 19:31:56 Server time: 10/05 -2024 11:03:35