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

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

zombie-avenger.swf

This is the info page for
Flash #119576

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


Text
PLAY

PLAY

PLAY

Start Game

Start Game

Instructions

Instructions

More Games

More Games

Play Addicting Games

Play Addicting Games

10

10

10

<p align="left"><font face="Pixel Cyr Normal" size="8" color="#ffffff" letterSpacing="0.000000" kerning="1">0</font></p>

<p align="left"><font face="Pixel Cyr Normal" size="8" color="#ffffff" letterSpacing="0.000000" kerning="1">0</font></p>

TIME:

KILLED:

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

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

HEALTH

PAUSE

PAUSE

PAUSE

Boss Fight!

Back to menu

Back to menu

Congratulations

Into it, you have the heavy responsibility ...

You Won!!!

Time on the stage:

Killed on the stage:

Total score:

<p align="left"><font face="Helvetica LT Condensed" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">10</font></p>

<p align="left"><font face="Helvetica LT Condensed" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">10</font></p>

<p align="left"><font face="Helvetica LT Condensed" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">10</font></p>

Sorry

You have been killed...

<p align="left"><font face="Helvetica LT Condensed" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">10</font></p>

<p align="left"><font face="Helvetica LT Condensed" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">10</font></p>

<p align="left"><font face="Helvetica LT Condensed" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">10</font></p>

Next Game

Next Game

You completed the level

Next Level

Next Level

<p align="left"><font face="Helvetica LT Condensed" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">10</font></p>

<p align="left"><font face="Helvetica LT Condensed" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">10</font></p>

<p align="left"><font face="Helvetica LT Condensed" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">10</font></p>

<p align="left"><font face="Helvetica LT Condensed" size="20" color="#ffffff" letterSpacing="0.000000" kerning="1">1</font></p>

ActionScript [AS3]

Section 1
//BaseButton (fl.controls.BaseButton) package fl.controls { import flash.display.*; import flash.events.*; import fl.core.*; import flash.utils.*; import fl.events.*; public class BaseButton extends UIComponent { protected var pressTimer:Timer; protected var _autoRepeat:Boolean;// = false protected var _selected:Boolean;// = false protected var background:DisplayObject; private var unlockedMouseState:String; protected var mouseState:String; private var _mouseStateLocked:Boolean;// = false private static var defaultStyles:Object = {upSkin:"Button_upSkin", downSkin:"Button_downSkin", overSkin:"Button_overSkin", disabledSkin:"Button_disabledSkin", selectedDisabledSkin:"Button_selectedDisabledSkin", selectedUpSkin:"Button_selectedUpSkin", selectedDownSkin:"Button_selectedDownSkin", selectedOverSkin:"Button_selectedOverSkin", focusRectSkin:null, focusRectPadding:null, repeatDelay:500, repeatInterval:35}; public function BaseButton(){ buttonMode = true; mouseChildren = false; useHandCursor = false; setupMouseEvents(); setMouseState("up"); pressTimer = new Timer(1, 0); pressTimer.addEventListener(TimerEvent.TIMER, buttonDown, false, 0, true); } override public function get enabled():Boolean{ return (super.enabled); } protected function startPress():void{ if (_autoRepeat){ pressTimer.delay = Number(getStyleValue("repeatDelay")); pressTimer.start(); }; dispatchEvent(new ComponentEvent(ComponentEvent.BUTTON_DOWN, true)); } override protected function draw():void{ if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ drawBackground(); invalidate(InvalidationType.SIZE, false); }; if (isInvalid(InvalidationType.SIZE)){ drawLayout(); }; super.draw(); } protected function drawLayout():void{ background.width = width; background.height = height; } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; mouseEnabled = _arg1; } public function set autoRepeat(_arg1:Boolean):void{ _autoRepeat = _arg1; } protected function mouseEventHandler(_arg1:MouseEvent):void{ if (_arg1.type == MouseEvent.MOUSE_DOWN){ setMouseState("down"); startPress(); } else { if ((((_arg1.type == MouseEvent.ROLL_OVER)) || ((_arg1.type == MouseEvent.MOUSE_UP)))){ setMouseState("over"); endPress(); } else { if (_arg1.type == MouseEvent.ROLL_OUT){ setMouseState("up"); endPress(); }; }; }; } protected function drawBackground():void{ var _local1:String = (enabled) ? mouseState : "disabled"; if (selected){ _local1 = (("selected" + _local1.substr(0, 1).toUpperCase()) + _local1.substr(1)); }; _local1 = (_local1 + "Skin"); var _local2:DisplayObject = background; background = getDisplayObjectInstance(getStyleValue(_local1)); addChildAt(background, 0); if (((!((_local2 == null))) && (!((_local2 == background))))){ removeChild(_local2); }; } public function get selected():Boolean{ return (_selected); } protected function setupMouseEvents():void{ addEventListener(MouseEvent.ROLL_OVER, mouseEventHandler, false, 0, true); addEventListener(MouseEvent.MOUSE_DOWN, mouseEventHandler, false, 0, true); addEventListener(MouseEvent.MOUSE_UP, mouseEventHandler, false, 0, true); addEventListener(MouseEvent.ROLL_OUT, mouseEventHandler, false, 0, true); } protected function endPress():void{ pressTimer.reset(); } public function set mouseStateLocked(_arg1:Boolean):void{ _mouseStateLocked = _arg1; if (_arg1 == false){ setMouseState(unlockedMouseState); } else { unlockedMouseState = mouseState; }; } public function get autoRepeat():Boolean{ return (_autoRepeat); } public function set selected(_arg1:Boolean):void{ if (_selected == _arg1){ return; }; _selected = _arg1; invalidate(InvalidationType.STATE); } protected function buttonDown(_arg1:TimerEvent):void{ if (!_autoRepeat){ endPress(); return; }; if (pressTimer.currentCount == 1){ pressTimer.delay = Number(getStyleValue("repeatInterval")); }; dispatchEvent(new ComponentEvent(ComponentEvent.BUTTON_DOWN, true)); } public function setMouseState(_arg1:String):void{ if (_mouseStateLocked){ unlockedMouseState = _arg1; return; }; if (mouseState == _arg1){ return; }; mouseState = _arg1; invalidate(InvalidationType.STATE); } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controls
Section 2
//Button (fl.controls.Button) package fl.controls { import flash.display.*; import fl.core.*; import fl.managers.*; public class Button extends LabelButton implements IFocusManagerComponent { protected var _emphasized:Boolean;// = false protected var emphasizedBorder:DisplayObject; private static var defaultStyles:Object = {emphasizedSkin:"Button_emphasizedSkin", emphasizedPadding:2}; public static var createAccessibilityImplementation:Function; public function set emphasized(_arg1:Boolean):void{ _emphasized = _arg1; invalidate(InvalidationType.STYLES); } override protected function initializeAccessibility():void{ if (Button.createAccessibilityImplementation != null){ Button.createAccessibilityImplementation(this); }; } protected function drawEmphasized():void{ var _local2:Number; if (emphasizedBorder != null){ removeChild(emphasizedBorder); }; emphasizedBorder = null; if (!_emphasized){ return; }; var _local1:Object = getStyleValue("emphasizedSkin"); if (_local1 != null){ emphasizedBorder = getDisplayObjectInstance(_local1); }; if (emphasizedBorder != null){ addChildAt(emphasizedBorder, 0); _local2 = Number(getStyleValue("emphasizedPadding")); emphasizedBorder.x = (emphasizedBorder.y = -(_local2)); emphasizedBorder.width = (width + (_local2 * 2)); emphasizedBorder.height = (height + (_local2 * 2)); }; } public function get emphasized():Boolean{ return (_emphasized); } override protected function draw():void{ if (((isInvalid(InvalidationType.STYLES)) || (isInvalid(InvalidationType.SIZE)))){ drawEmphasized(); }; super.draw(); if (emphasizedBorder != null){ setChildIndex(emphasizedBorder, (numChildren - 1)); }; } override public function drawFocus(_arg1:Boolean):void{ var _local2:Number; var _local3:*; super.drawFocus(_arg1); if (_arg1){ _local2 = Number(getStyleValue("emphasizedPadding")); if ((((_local2 < 0)) || (!(_emphasized)))){ _local2 = 0; }; _local3 = getStyleValue("focusRectPadding"); _local3 = ((_local3)==null) ? 2 : _local3; _local3 = (_local3 + _local2); uiFocusRect.x = -(_local3); uiFocusRect.y = -(_local3); uiFocusRect.width = (width + (_local3 * 2)); uiFocusRect.height = (height + (_local3 * 2)); }; } public static function getStyleDefinition():Object{ return (UIComponent.mergeStyles(LabelButton.getStyleDefinition(), defaultStyles)); } } }//package fl.controls
Section 3
//ButtonLabelPlacement (fl.controls.ButtonLabelPlacement) package fl.controls { public class ButtonLabelPlacement { public static const TOP:String = "top"; public static const LEFT:String = "left"; public static const BOTTOM:String = "bottom"; public static const RIGHT:String = "right"; } }//package fl.controls
Section 4
//LabelButton (fl.controls.LabelButton) package fl.controls { import flash.display.*; import flash.events.*; import fl.core.*; import fl.managers.*; import fl.events.*; import flash.text.*; import flash.ui.*; public class LabelButton extends BaseButton implements IFocusManagerComponent { protected var _toggle:Boolean;// = false public var textField:TextField; protected var mode:String;// = "center" protected var _labelPlacement:String;// = "right" protected var oldMouseState:String; protected var _label:String;// = "Label" protected var icon:DisplayObject; private static var defaultStyles:Object = {icon:null, upIcon:null, downIcon:null, overIcon:null, disabledIcon:null, selectedDisabledIcon:null, selectedUpIcon:null, selectedDownIcon:null, selectedOverIcon:null, textFormat:null, disabledTextFormat:null, textPadding:5, embedFonts:false}; public static var createAccessibilityImplementation:Function; override protected function draw():void{ if (textField.text != _label){ label = _label; }; if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ drawBackground(); drawIcon(); drawTextFormat(); invalidate(InvalidationType.SIZE, false); }; if (isInvalid(InvalidationType.SIZE)){ drawLayout(); }; if (isInvalid(InvalidationType.SIZE, InvalidationType.STYLES)){ if (((isFocused) && (focusManager.showFocusIndicator))){ drawFocus(true); }; }; validate(); } override protected function drawLayout():void{ var _local7:Number; var _local8:Number; var _local1:Number = Number(getStyleValue("textPadding")); var _local2:String = ((((icon == null)) && ((mode == "center")))) ? ButtonLabelPlacement.TOP : _labelPlacement; textField.height = (textField.textHeight + 4); var _local3:Number = (textField.textWidth + 4); var _local4:Number = (textField.textHeight + 4); var _local5:Number = ((icon)==null) ? 0 : (icon.width + _local1); var _local6:Number = ((icon)==null) ? 0 : (icon.height + _local1); textField.visible = (label.length > 0); if (icon != null){ icon.x = Math.round(((width - icon.width) / 2)); icon.y = Math.round(((height - icon.height) / 2)); }; if (textField.visible == false){ textField.width = 0; textField.height = 0; } else { if ((((_local2 == ButtonLabelPlacement.BOTTOM)) || ((_local2 == ButtonLabelPlacement.TOP)))){ _local7 = Math.max(0, Math.min(_local3, (width - (2 * _local1)))); if ((height - 2) > _local4){ _local8 = _local4; } else { _local8 = (height - 2); }; _local3 = _local7; textField.width = _local3; _local4 = _local8; textField.height = _local4; textField.x = Math.round(((width - _local3) / 2)); textField.y = Math.round(((((height - textField.height) - _local6) / 2) + ((_local2)==ButtonLabelPlacement.BOTTOM) ? _local6 : 0)); if (icon != null){ icon.y = Math.round(((_local2)==ButtonLabelPlacement.BOTTOM) ? (textField.y - _local6) : ((textField.y + textField.height) + _local1)); }; } else { _local7 = Math.max(0, Math.min(_local3, ((width - _local5) - (2 * _local1)))); _local3 = _local7; textField.width = _local3; textField.x = Math.round(((((width - _local3) - _local5) / 2) + ((_local2)!=ButtonLabelPlacement.LEFT) ? _local5 : 0)); textField.y = Math.round(((height - textField.height) / 2)); if (icon != null){ icon.x = Math.round(((_local2)!=ButtonLabelPlacement.LEFT) ? (textField.x - _local5) : ((textField.x + _local3) + _local1)); }; }; }; super.drawLayout(); } protected function toggleSelected(_arg1:MouseEvent):void{ selected = !(selected); dispatchEvent(new Event(Event.CHANGE, true)); } override protected function keyUpHandler(_arg1:KeyboardEvent):void{ if (!enabled){ return; }; if (_arg1.keyCode == Keyboard.SPACE){ setMouseState(oldMouseState); oldMouseState = null; endPress(); dispatchEvent(new MouseEvent(MouseEvent.CLICK)); }; } public function get labelPlacement():String{ return (_labelPlacement); } public function get toggle():Boolean{ return (_toggle); } protected function setEmbedFont(){ var _local1:Object = getStyleValue("embedFonts"); if (_local1 != null){ textField.embedFonts = _local1; }; } override public function get selected():Boolean{ return ((_toggle) ? _selected : false); } override protected function configUI():void{ super.configUI(); textField = new TextField(); textField.type = TextFieldType.DYNAMIC; textField.selectable = false; addChild(textField); } override protected function initializeAccessibility():void{ if (LabelButton.createAccessibilityImplementation != null){ LabelButton.createAccessibilityImplementation(this); }; } public function set labelPlacement(_arg1:String):void{ _labelPlacement = _arg1; invalidate(InvalidationType.SIZE); } protected function drawIcon():void{ var _local1:DisplayObject = icon; var _local2:String = (enabled) ? mouseState : "disabled"; if (selected){ _local2 = (("selected" + _local2.substr(0, 1).toUpperCase()) + _local2.substr(1)); }; _local2 = (_local2 + "Icon"); var _local3:Object = getStyleValue(_local2); if (_local3 == null){ _local3 = getStyleValue("icon"); }; if (_local3 != null){ icon = getDisplayObjectInstance(_local3); }; if (icon != null){ addChildAt(icon, 1); }; if (((!((_local1 == null))) && (!((_local1 == icon))))){ removeChild(_local1); }; } public function set label(_arg1:String):void{ _label = _arg1; if (textField.text != _label){ textField.text = _label; dispatchEvent(new ComponentEvent(ComponentEvent.LABEL_CHANGE)); }; invalidate(InvalidationType.SIZE); invalidate(InvalidationType.STYLES); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ if (!enabled){ return; }; if (_arg1.keyCode == Keyboard.SPACE){ if (oldMouseState == null){ oldMouseState = mouseState; }; setMouseState("down"); startPress(); }; } public function set toggle(_arg1:Boolean):void{ if (((!(_arg1)) && (super.selected))){ selected = false; }; _toggle = _arg1; if (_toggle){ addEventListener(MouseEvent.CLICK, toggleSelected, false, 0, true); } else { removeEventListener(MouseEvent.CLICK, toggleSelected); }; invalidate(InvalidationType.STATE); } override public function set selected(_arg1:Boolean):void{ _selected = _arg1; if (_toggle){ invalidate(InvalidationType.STATE); }; } protected function drawTextFormat():void{ var _local1:Object = UIComponent.getStyleDefinition(); var _local2:TextFormat = (enabled) ? (_local1.defaultTextFormat as TextFormat) : (_local1.defaultDisabledTextFormat as TextFormat); textField.setTextFormat(_local2); var _local3:TextFormat = (getStyleValue((enabled) ? "textFormat" : "disabledTextFormat") as TextFormat); if (_local3 != null){ textField.setTextFormat(_local3); } else { _local3 = _local2; }; textField.defaultTextFormat = _local3; setEmbedFont(); } public function get label():String{ return (_label); } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, BaseButton.getStyleDefinition())); } } }//package fl.controls
Section 5
//InvalidationType (fl.core.InvalidationType) package fl.core { public class InvalidationType { public static const SIZE:String = "size"; public static const ALL:String = "all"; public static const DATA:String = "data"; public static const SCROLL:String = "scroll"; public static const STATE:String = "state"; public static const STYLES:String = "styles"; public static const SELECTED:String = "selected"; public static const RENDERER_STYLES:String = "rendererStyles"; } }//package fl.core
Section 6
//UIComponent (fl.core.UIComponent) package fl.core { import flash.display.*; import flash.events.*; import fl.managers.*; import flash.utils.*; import fl.events.*; import flash.text.*; import flash.system.*; public class UIComponent extends Sprite { protected var _x:Number; protected var _enabled:Boolean;// = true protected var callLaterMethods:Dictionary; private var _mouseFocusEnabled:Boolean;// = true private var tempText:TextField; private var _focusEnabled:Boolean;// = true protected var startHeight:Number; protected var _height:Number; protected var invalidateFlag:Boolean;// = false protected var _oldIMEMode:String;// = null protected var _inspector:Boolean;// = false protected var startWidth:Number; public var focusTarget:IFocusManagerComponent; protected var errorCaught:Boolean;// = false protected var invalidHash:Object; protected var sharedStyles:Object; protected var uiFocusRect:DisplayObject; protected var isLivePreview:Boolean;// = false protected var _imeMode:String;// = null protected var _width:Number; protected var instanceStyles:Object; public var version:String;// = "3.0.0.16" protected var isFocused:Boolean;// = false protected var _y:Number; public static var inCallLaterPhase:Boolean = false; private static var defaultStyles:Object = {focusRectSkin:"focusRectSkin", focusRectPadding:2, textFormat:new TextFormat("_sans", 11, 0, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0), disabledTextFormat:new TextFormat("_sans", 11, 0x999999, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0), defaultTextFormat:new TextFormat("_sans", 11, 0, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0), defaultDisabledTextFormat:new TextFormat("_sans", 11, 0x999999, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0)}; public static var createAccessibilityImplementation:Function; private static var focusManagers:Dictionary = new Dictionary(false); public function UIComponent(){ instanceStyles = {}; sharedStyles = {}; invalidHash = {}; callLaterMethods = new Dictionary(); StyleManager.registerInstance(this); configUI(); invalidate(InvalidationType.ALL); tabEnabled = (this is IFocusManagerComponent); focusRect = false; if (tabEnabled){ addEventListener(FocusEvent.FOCUS_IN, focusInHandler); addEventListener(FocusEvent.FOCUS_OUT, focusOutHandler); addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler); addEventListener(KeyboardEvent.KEY_UP, keyUpHandler); }; initializeFocusManager(); addEventListener(Event.ENTER_FRAME, hookAccessibility, false, 0, true); } public function getStyle(_arg1:String):Object{ return (instanceStyles[_arg1]); } protected function checkLivePreview():Boolean{ var className:String; if (parent == null){ return (false); }; try { className = getQualifiedClassName(parent); } catch(e:Error) { }; return ((className == "fl.livepreview::LivePreviewParent")); } private function callLaterDispatcher(_arg1:Event):void{ var _local3:Object; if (_arg1.type == Event.ADDED_TO_STAGE){ removeEventListener(Event.ADDED_TO_STAGE, callLaterDispatcher); stage.addEventListener(Event.RENDER, callLaterDispatcher, false, 0, true); stage.invalidate(); return; }; _arg1.target.removeEventListener(Event.RENDER, callLaterDispatcher); if (stage == null){ addEventListener(Event.ADDED_TO_STAGE, callLaterDispatcher, false, 0, true); return; }; inCallLaterPhase = true; var _local2:Dictionary = callLaterMethods; for (_local3 in _local2) { _local3(); delete _local2[_local3]; }; inCallLaterPhase = false; } protected function validate():void{ invalidHash = {}; } protected function focusOutHandler(_arg1:FocusEvent):void{ if (isOurFocus((_arg1.target as DisplayObject))){ drawFocus(false); isFocused = false; }; } public function set mouseFocusEnabled(_arg1:Boolean):void{ _mouseFocusEnabled = _arg1; } public function getFocus():InteractiveObject{ if (stage){ return (stage.focus); }; return (null); } override public function get height():Number{ return (_height); } private function addedHandler(_arg1:Event):void{ removeEventListener("addedToStage", addedHandler); initializeFocusManager(); } protected function getStyleValue(_arg1:String):Object{ return (((instanceStyles[_arg1])==null) ? sharedStyles[_arg1] : instanceStyles[_arg1]); } public function invalidate(_arg1:String="all", _arg2:Boolean=true):void{ invalidHash[_arg1] = true; if (_arg2){ this.callLater(draw); }; } protected function isOurFocus(_arg1:DisplayObject):Boolean{ return ((_arg1 == this)); } public function get enabled():Boolean{ return (_enabled); } protected function getScaleX():Number{ return (super.scaleX); } protected function getScaleY():Number{ return (super.scaleY); } public function get focusEnabled():Boolean{ return (_focusEnabled); } protected function afterComponentParameters():void{ } override public function get scaleY():Number{ return ((height / startHeight)); } protected function setIMEMode(_arg1:Boolean){ var enabled = _arg1; if (_imeMode != null){ if (enabled){ IME.enabled = true; _oldIMEMode = IME.conversionMode; try { if (((!(errorCaught)) && (!((IME.conversionMode == IMEConversionMode.UNKNOWN))))){ IME.conversionMode = _imeMode; }; errorCaught = false; } catch(e:Error) { errorCaught = true; throw (new Error(("IME mode not supported: " + _imeMode))); }; } else { if (((!((IME.conversionMode == IMEConversionMode.UNKNOWN))) && (!((_oldIMEMode == IMEConversionMode.UNKNOWN))))){ IME.conversionMode = _oldIMEMode; }; IME.enabled = false; }; }; } protected function draw():void{ if (isInvalid(InvalidationType.SIZE, InvalidationType.STYLES)){ if (((isFocused) && (focusManager.showFocusIndicator))){ drawFocus(true); }; }; validate(); } override public function set height(_arg1:Number):void{ if (_height == _arg1){ return; }; setSize(width, _arg1); } protected function configUI():void{ isLivePreview = checkLivePreview(); var _local1:Number = rotation; rotation = 0; var _local2:Number = super.width; var _local3:Number = super.height; var _local4 = 1; super.scaleY = _local4; super.scaleX = _local4; setSize(_local2, _local3); move(super.x, super.y); rotation = _local1; startWidth = _local2; startHeight = _local3; if (numChildren > 0){ removeChildAt(0); }; } protected function setScaleY(_arg1:Number):void{ super.scaleY = _arg1; } override public function get scaleX():Number{ return ((width / startWidth)); } protected function setScaleX(_arg1:Number):void{ super.scaleX = _arg1; } private function initializeFocusManager():void{ if (stage == null){ addEventListener(Event.ADDED_TO_STAGE, addedHandler, false, 0, true); } else { createFocusManager(); }; } protected function keyDownHandler(_arg1:KeyboardEvent):void{ } public function set focusManager(_arg1:IFocusManager):void{ UIComponent.focusManagers[this] = _arg1; } public function clearStyle(_arg1:String):void{ setStyle(_arg1, null); } protected function isInvalid(_arg1:String, ... _args):Boolean{ if (((invalidHash[_arg1]) || (invalidHash[InvalidationType.ALL]))){ return (true); }; while (_args.length > 0) { if (invalidHash[_args.pop()]){ return (true); }; }; return (false); } public function setStyle(_arg1:String, _arg2:Object):void{ if ((((instanceStyles[_arg1] === _arg2)) && (!((_arg2 is TextFormat))))){ return; }; instanceStyles[_arg1] = _arg2; invalidate(InvalidationType.STYLES); } override public function get visible():Boolean{ return (super.visible); } protected function focusInHandler(_arg1:FocusEvent):void{ var _local2:IFocusManager; if (isOurFocus((_arg1.target as DisplayObject))){ _local2 = focusManager; if (((_local2) && (_local2.showFocusIndicator))){ drawFocus(true); isFocused = true; }; }; } public function get componentInspectorSetting():Boolean{ return (_inspector); } override public function get x():Number{ return ((isNaN(_x)) ? super.x : _x); } override public function get y():Number{ return ((isNaN(_y)) ? super.y : _y); } public function set enabled(_arg1:Boolean):void{ if (_arg1 == _enabled){ return; }; _enabled = _arg1; invalidate(InvalidationType.STATE); } public function setSize(_arg1:Number, _arg2:Number):void{ _width = _arg1; _height = _arg2; invalidate(InvalidationType.SIZE); dispatchEvent(new ComponentEvent(ComponentEvent.RESIZE, false)); } protected function keyUpHandler(_arg1:KeyboardEvent):void{ } public function setSharedStyle(_arg1:String, _arg2:Object):void{ if ((((sharedStyles[_arg1] === _arg2)) && (!((_arg2 is TextFormat))))){ return; }; sharedStyles[_arg1] = _arg2; if (instanceStyles[_arg1] == null){ invalidate(InvalidationType.STYLES); }; } public function set focusEnabled(_arg1:Boolean):void{ _focusEnabled = _arg1; } override public function set width(_arg1:Number):void{ if (_width == _arg1){ return; }; setSize(_arg1, height); } public function setFocus():void{ if (stage){ stage.focus = this; }; } override public function set scaleX(_arg1:Number):void{ setSize((startWidth * _arg1), height); } public function get mouseFocusEnabled():Boolean{ return (_mouseFocusEnabled); } override public function set scaleY(_arg1:Number):void{ setSize(width, (startHeight * _arg1)); } protected function getDisplayObjectInstance(_arg1:Object):DisplayObject{ var skin = _arg1; var classDef:Object; if ((skin is Class)){ return ((new (skin) as DisplayObject)); }; if ((skin is DisplayObject)){ (skin as DisplayObject).x = 0; (skin as DisplayObject).y = 0; return ((skin as DisplayObject)); }; try { classDef = getDefinitionByName(skin.toString()); } catch(e:Error) { try { classDef = (loaderInfo.applicationDomain.getDefinition(skin.toString()) as Object); } catch(e:Error) { }; }; if (classDef == null){ return (null); }; return ((new (classDef) as DisplayObject)); } protected function copyStylesToChild(_arg1:UIComponent, _arg2:Object):void{ var _local3:String; for (_local3 in _arg2) { _arg1.setStyle(_local3, getStyleValue(_arg2[_local3])); }; } protected function initializeAccessibility():void{ if (UIComponent.createAccessibilityImplementation != null){ UIComponent.createAccessibilityImplementation(this); }; } public function get focusManager():IFocusManager{ var _local1:DisplayObject = this; while (_local1) { if (UIComponent.focusManagers[_local1] != null){ return (IFocusManager(UIComponent.focusManagers[_local1])); }; _local1 = _local1.parent; }; return (null); } override public function get width():Number{ return (_width); } protected function beforeComponentParameters():void{ } protected function callLater(_arg1:Function):void{ if (inCallLaterPhase){ return; }; callLaterMethods[_arg1] = true; if (stage != null){ stage.addEventListener(Event.RENDER, callLaterDispatcher, false, 0, true); stage.invalidate(); } else { addEventListener(Event.ADDED_TO_STAGE, callLaterDispatcher, false, 0, true); }; } public function move(_arg1:Number, _arg2:Number):void{ _x = _arg1; _y = _arg2; super.x = Math.round(_arg1); super.y = Math.round(_arg2); dispatchEvent(new ComponentEvent(ComponentEvent.MOVE)); } public function validateNow():void{ invalidate(InvalidationType.ALL, false); draw(); } override public function set visible(_arg1:Boolean):void{ if (super.visible == _arg1){ return; }; super.visible = _arg1; var _local2:String = (_arg1) ? ComponentEvent.SHOW : ComponentEvent.HIDE; dispatchEvent(new ComponentEvent(_local2, true)); } protected function createFocusManager():void{ if (focusManagers[stage] == null){ focusManagers[stage] = new FocusManager(stage); }; } protected function hookAccessibility(_arg1:Event):void{ removeEventListener(Event.ENTER_FRAME, hookAccessibility); initializeAccessibility(); } public function set componentInspectorSetting(_arg1:Boolean):void{ _inspector = _arg1; if (_inspector){ beforeComponentParameters(); } else { afterComponentParameters(); }; } override public function set y(_arg1:Number):void{ move(_x, _arg1); } public function drawFocus(_arg1:Boolean):void{ var _local2:Number; isFocused = _arg1; if (((!((uiFocusRect == null))) && (contains(uiFocusRect)))){ removeChild(uiFocusRect); uiFocusRect = null; }; if (_arg1){ uiFocusRect = (getDisplayObjectInstance(getStyleValue("focusRectSkin")) as Sprite); if (uiFocusRect == null){ return; }; _local2 = Number(getStyleValue("focusRectPadding")); uiFocusRect.x = -(_local2); uiFocusRect.y = -(_local2); uiFocusRect.width = (width + (_local2 * 2)); uiFocusRect.height = (height + (_local2 * 2)); addChildAt(uiFocusRect, 0); }; } override public function set x(_arg1:Number):void{ move(_arg1, _y); } public function drawNow():void{ draw(); } public static function getStyleDefinition():Object{ return (defaultStyles); } public static function mergeStyles(... _args):Object{ var _local5:Object; var _local6:String; var _local2:Object = {}; var _local3:uint = _args.length; var _local4:uint; while (_local4 < _local3) { _local5 = _args[_local4]; for (_local6 in _local5) { if (_local2[_local6] != null){ } else { _local2[_local6] = _args[_local4][_local6]; }; }; _local4++; }; return (_local2); } } }//package fl.core
Section 7
//ComponentEvent (fl.events.ComponentEvent) package fl.events { import flash.events.*; public class ComponentEvent extends Event { public static const HIDE:String = "hide"; public static const BUTTON_DOWN:String = "buttonDown"; public static const MOVE:String = "move"; public static const RESIZE:String = "resize"; public static const ENTER:String = "enter"; public static const LABEL_CHANGE:String = "labelChange"; public static const SHOW:String = "show"; public function ComponentEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false){ super(_arg1, _arg2, _arg3); } override public function toString():String{ return (formatToString("ComponentEvent", "type", "bubbles", "cancelable")); } override public function clone():Event{ return (new ComponentEvent(type, bubbles, cancelable)); } } }//package fl.events
Section 8
//FocusManager (fl.managers.FocusManager) package fl.managers { import flash.display.*; import flash.events.*; import fl.controls.*; import fl.core.*; import flash.utils.*; import flash.text.*; import flash.ui.*; public class FocusManager implements IFocusManager { private var focusableObjects:Dictionary; private var _showFocusIndicator:Boolean;// = true private var defButton:Button; private var focusableCandidates:Array; private var _form:DisplayObjectContainer; private var _defaultButtonEnabled:Boolean;// = true private var activated:Boolean;// = false private var _defaultButton:Button; private var calculateCandidates:Boolean;// = true private var lastFocus:InteractiveObject; private var lastAction:String; public function FocusManager(_arg1:DisplayObjectContainer){ focusableObjects = new Dictionary(true); if (_arg1 != null){ _form = _arg1; addFocusables(DisplayObject(_arg1)); _arg1.addEventListener(Event.ADDED, addedHandler); _arg1.addEventListener(Event.REMOVED, removedHandler); activate(); }; } public function get showFocusIndicator():Boolean{ return (_showFocusIndicator); } private function getIndexOfNextObject(_arg1:int, _arg2:Boolean, _arg3:Boolean, _arg4:String):int{ var _local7:DisplayObject; var _local8:IFocusManagerGroup; var _local9:int; var _local10:DisplayObject; var _local11:IFocusManagerGroup; var _local5:int = focusableCandidates.length; var _local6:int = _arg1; while (true) { if (_arg2){ _arg1--; } else { _arg1++; }; if (_arg3){ if (((_arg2) && ((_arg1 < 0)))){ break; }; if (((!(_arg2)) && ((_arg1 == _local5)))){ break; }; } else { _arg1 = ((_arg1 + _local5) % _local5); if (_local6 == _arg1){ break; }; }; if (isValidFocusCandidate(focusableCandidates[_arg1], _arg4)){ _local7 = DisplayObject(findFocusManagerComponent(focusableCandidates[_arg1])); if ((_local7 is IFocusManagerGroup)){ _local8 = IFocusManagerGroup(_local7); _local9 = 0; while (_local9 < focusableCandidates.length) { _local10 = focusableCandidates[_local9]; if ((_local10 is IFocusManagerGroup)){ _local11 = IFocusManagerGroup(_local10); if ((((_local11.groupName == _local8.groupName)) && (_local11.selected))){ _arg1 = _local9; break; }; }; _local9++; }; }; return (_arg1); }; }; return (_arg1); } private function mouseFocusChangeHandler(_arg1:FocusEvent):void{ if ((_arg1.relatedObject is TextField)){ return; }; _arg1.preventDefault(); } public function set form(_arg1:DisplayObjectContainer):void{ _form = _arg1; } private function addFocusables(_arg1:DisplayObject, _arg2:Boolean=false):void{ var focusable:IFocusManagerComponent; var io:InteractiveObject; var doc:DisplayObjectContainer; var i:int; var child:DisplayObject; var o = _arg1; var skipTopLevel = _arg2; if (!skipTopLevel){ if ((o is IFocusManagerComponent)){ focusable = IFocusManagerComponent(o); if (focusable.focusEnabled){ if (((focusable.tabEnabled) && (isTabVisible(o)))){ focusableObjects[o] = true; calculateCandidates = true; }; o.addEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); o.addEventListener(Event.TAB_INDEX_CHANGE, tabIndexChangeHandler); }; } else { if ((o is InteractiveObject)){ io = (o as InteractiveObject); if (((((io) && (io.tabEnabled))) && ((findFocusManagerComponent(io) == io)))){ focusableObjects[io] = true; calculateCandidates = true; }; io.addEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); io.addEventListener(Event.TAB_INDEX_CHANGE, tabIndexChangeHandler); }; }; }; if ((o is DisplayObjectContainer)){ doc = DisplayObjectContainer(o); o.addEventListener(Event.TAB_CHILDREN_CHANGE, tabChildrenChangeHandler); if ((((((doc is Stage)) || ((doc.parent is Stage)))) || (doc.tabChildren))){ i = 0; while (i < doc.numChildren) { try { child = doc.getChildAt(i); if (child != null){ addFocusables(doc.getChildAt(i)); }; } catch(error:SecurityError) { }; i = (i + 1); }; }; }; } private function getChildIndex(_arg1:DisplayObjectContainer, _arg2:DisplayObject):int{ return (_arg1.getChildIndex(_arg2)); } public function findFocusManagerComponent(_arg1:InteractiveObject):InteractiveObject{ var _local2:InteractiveObject = _arg1; while (_arg1) { if ((((_arg1 is IFocusManagerComponent)) && (IFocusManagerComponent(_arg1).focusEnabled))){ return (_arg1); }; _arg1 = _arg1.parent; }; return (_local2); } private function focusOutHandler(_arg1:FocusEvent):void{ var _local2:InteractiveObject = (_arg1.target as InteractiveObject); } private function isValidFocusCandidate(_arg1:DisplayObject, _arg2:String):Boolean{ var _local3:IFocusManagerGroup; if (!isEnabledAndVisible(_arg1)){ return (false); }; if ((_arg1 is IFocusManagerGroup)){ _local3 = IFocusManagerGroup(_arg1); if (_arg2 == _local3.groupName){ return (false); }; }; return (true); } private function setFocusToNextObject(_arg1:FocusEvent):void{ if (!hasFocusableObjects()){ return; }; var _local2:InteractiveObject = getNextFocusManagerComponent(_arg1.shiftKey); if (_local2){ setFocus(_local2); }; } private function sortFocusableObjectsTabIndex():void{ var _local1:Object; var _local2:InteractiveObject; focusableCandidates = []; for (_local1 in focusableObjects) { _local2 = InteractiveObject(_local1); if (((_local2.tabIndex) && (!(isNaN(Number(_local2.tabIndex)))))){ focusableCandidates.push(_local2); }; }; focusableCandidates.sort(sortByTabIndex); } private function removeFocusables(_arg1:DisplayObject):void{ var _local2:Object; var _local3:DisplayObject; if ((_arg1 is DisplayObjectContainer)){ _arg1.removeEventListener(Event.TAB_CHILDREN_CHANGE, tabChildrenChangeHandler); _arg1.removeEventListener(Event.TAB_INDEX_CHANGE, tabIndexChangeHandler); for (_local2 in focusableObjects) { _local3 = DisplayObject(_local2); if (DisplayObjectContainer(_arg1).contains(_local3)){ if (_local3 == lastFocus){ lastFocus = null; }; _local3.removeEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); delete focusableObjects[_local2]; calculateCandidates = true; }; }; }; } private function getTopLevelFocusTarget(_arg1:InteractiveObject):InteractiveObject{ while (_arg1 != InteractiveObject(form)) { if ((((((((_arg1 is IFocusManagerComponent)) && (IFocusManagerComponent(_arg1).focusEnabled))) && (IFocusManagerComponent(_arg1).mouseFocusEnabled))) && (UIComponent(_arg1).enabled))){ return (_arg1); }; _arg1 = _arg1.parent; if (_arg1 == null){ break; }; }; return (null); } public function sendDefaultButtonEvent():void{ defButton.dispatchEvent(new MouseEvent(MouseEvent.CLICK)); } private function addedHandler(_arg1:Event):void{ var _local2:DisplayObject = DisplayObject(_arg1.target); if (_local2.stage){ addFocusables(DisplayObject(_arg1.target)); }; } private function isEnabledAndVisible(_arg1:DisplayObject):Boolean{ var _local3:TextField; var _local4:SimpleButton; var _local2:DisplayObjectContainer = DisplayObject(form).parent; while (_arg1 != _local2) { if ((_arg1 is UIComponent)){ if (!UIComponent(_arg1).enabled){ return (false); }; } else { if ((_arg1 is TextField)){ _local3 = TextField(_arg1); if ((((_local3.type == TextFieldType.DYNAMIC)) || (!(_local3.selectable)))){ return (false); }; } else { if ((_arg1 is SimpleButton)){ _local4 = SimpleButton(_arg1); if (!_local4.enabled){ return (false); }; }; }; }; if (!_arg1.visible){ return (false); }; _arg1 = _arg1.parent; }; return (true); } private function tabChildrenChangeHandler(_arg1:Event):void{ if (_arg1.target != _arg1.currentTarget){ return; }; calculateCandidates = true; var _local2:DisplayObjectContainer = DisplayObjectContainer(_arg1.target); if (_local2.tabChildren){ addFocusables(_local2, true); } else { removeFocusables(_local2); }; } private function deactivateHandler(_arg1:Event):void{ var _local2:InteractiveObject = InteractiveObject(_arg1.target); } public function setFocus(_arg1:InteractiveObject):void{ if ((_arg1 is IFocusManagerComponent)){ IFocusManagerComponent(_arg1).setFocus(); } else { form.stage.focus = _arg1; }; } public function getFocus():InteractiveObject{ var _local1:InteractiveObject = form.stage.focus; return (findFocusManagerComponent(_local1)); } private function hasFocusableObjects():Boolean{ var _local1:Object; for (_local1 in focusableObjects) { return (true); }; return (false); } private function tabIndexChangeHandler(_arg1:Event):void{ calculateCandidates = true; } public function set defaultButton(_arg1:Button):void{ var _local2:Button = (_arg1) ? Button(_arg1) : null; if (_local2 != _defaultButton){ if (_defaultButton){ _defaultButton.emphasized = false; }; if (defButton){ defButton.emphasized = false; }; _defaultButton = _local2; defButton = _local2; if (_local2){ _local2.emphasized = true; }; }; } private function sortFocusableObjects():void{ var _local1:Object; var _local2:InteractiveObject; focusableCandidates = []; for (_local1 in focusableObjects) { _local2 = InteractiveObject(_local1); if (((((_local2.tabIndex) && (!(isNaN(Number(_local2.tabIndex)))))) && ((_local2.tabIndex > 0)))){ sortFocusableObjectsTabIndex(); return; }; focusableCandidates.push(_local2); }; focusableCandidates.sort(sortByDepth); } private function keyFocusChangeHandler(_arg1:FocusEvent):void{ showFocusIndicator = true; if ((((((_arg1.keyCode == Keyboard.TAB)) || ((_arg1.keyCode == 0)))) && (!(_arg1.isDefaultPrevented())))){ setFocusToNextObject(_arg1); _arg1.preventDefault(); }; } private function getIndexOfFocusedObject(_arg1:DisplayObject):int{ var _local2:int = focusableCandidates.length; var _local3:int; _local3 = 0; while (_local3 < _local2) { if (focusableCandidates[_local3] == _arg1){ return (_local3); }; _local3++; }; return (-1); } public function hideFocus():void{ } private function removedHandler(_arg1:Event):void{ var _local2:int; var _local4:InteractiveObject; var _local3:DisplayObject = DisplayObject(_arg1.target); if ((((_local3 is IFocusManagerComponent)) && ((focusableObjects[_local3] == true)))){ if (_local3 == lastFocus){ IFocusManagerComponent(lastFocus).drawFocus(false); lastFocus = null; }; _local3.removeEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); delete focusableObjects[_local3]; calculateCandidates = true; } else { if ((((_local3 is InteractiveObject)) && ((focusableObjects[_local3] == true)))){ _local4 = (_local3 as InteractiveObject); if (_local4){ if (_local4 == lastFocus){ lastFocus = null; }; delete focusableObjects[_local4]; calculateCandidates = true; }; _local3.addEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); }; }; removeFocusables(_local3); } private function sortByDepth(_arg1:InteractiveObject, _arg2:InteractiveObject):Number{ var _local5:int; var _local6:String; var _local7:String; var _local3 = ""; var _local4 = ""; var _local8 = "0000"; var _local9:DisplayObject = DisplayObject(_arg1); var _local10:DisplayObject = DisplayObject(_arg2); while (((!((_local9 == DisplayObject(form)))) && (_local9.parent))) { _local5 = getChildIndex(_local9.parent, _local9); _local6 = _local5.toString(16); if (_local6.length < 4){ _local7 = (_local8.substring(0, (4 - _local6.length)) + _local6); }; _local3 = (_local7 + _local3); _local9 = _local9.parent; }; while (((!((_local10 == DisplayObject(form)))) && (_local10.parent))) { _local5 = getChildIndex(_local10.parent, _local10); _local6 = _local5.toString(16); if (_local6.length < 4){ _local7 = (_local8.substring(0, (4 - _local6.length)) + _local6); }; _local4 = (_local7 + _local4); _local10 = _local10.parent; }; return (((_local3 > _local4)) ? 1 : ((_local3 < _local4)) ? -1 : 0); } public function get defaultButton():Button{ return (_defaultButton); } private function activateHandler(_arg1:Event):void{ var _local2:InteractiveObject = InteractiveObject(_arg1.target); if (lastFocus){ if ((lastFocus is IFocusManagerComponent)){ IFocusManagerComponent(lastFocus).setFocus(); } else { form.stage.focus = lastFocus; }; }; lastAction = "ACTIVATE"; } public function showFocus():void{ } public function set defaultButtonEnabled(_arg1:Boolean):void{ _defaultButtonEnabled = _arg1; } public function getNextFocusManagerComponent(_arg1:Boolean=false):InteractiveObject{ var _local8:IFocusManagerGroup; if (!hasFocusableObjects()){ return (null); }; if (calculateCandidates){ sortFocusableObjects(); calculateCandidates = false; }; var _local2:DisplayObject = form.stage.focus; _local2 = DisplayObject(findFocusManagerComponent(InteractiveObject(_local2))); var _local3 = ""; if ((_local2 is IFocusManagerGroup)){ _local8 = IFocusManagerGroup(_local2); _local3 = _local8.groupName; }; var _local4:int = getIndexOfFocusedObject(_local2); var _local5:Boolean; var _local6:int = _local4; if (_local4 == -1){ if (_arg1){ _local4 = focusableCandidates.length; }; _local5 = true; }; var _local7:int = getIndexOfNextObject(_local4, _arg1, _local5, _local3); return (findFocusManagerComponent(focusableCandidates[_local7])); } private function mouseDownHandler(_arg1:MouseEvent):void{ if (_arg1.isDefaultPrevented()){ return; }; var _local2:InteractiveObject = getTopLevelFocusTarget(InteractiveObject(_arg1.target)); if (!_local2){ return; }; showFocusIndicator = false; if (((((!((_local2 == lastFocus))) || ((lastAction == "ACTIVATE")))) && (!((_local2 is TextField))))){ setFocus(_local2); }; lastAction = "MOUSEDOWN"; } private function isTabVisible(_arg1:DisplayObject):Boolean{ var _local2:DisplayObjectContainer = _arg1.parent; while (((((_local2) && (!((_local2 is Stage))))) && (!(((_local2.parent) && ((_local2.parent is Stage))))))) { if (!_local2.tabChildren){ return (false); }; _local2 = _local2.parent; }; return (true); } public function get nextTabIndex():int{ return (0); } private function keyDownHandler(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == Keyboard.TAB){ lastAction = "KEY"; if (calculateCandidates){ sortFocusableObjects(); calculateCandidates = false; }; }; if (((((((defaultButtonEnabled) && ((_arg1.keyCode == Keyboard.ENTER)))) && (defaultButton))) && (defButton.enabled))){ sendDefaultButtonEvent(); }; } private function focusInHandler(_arg1:FocusEvent):void{ var _local3:Button; var _local2:InteractiveObject = InteractiveObject(_arg1.target); if (form.contains(_local2)){ lastFocus = findFocusManagerComponent(InteractiveObject(_local2)); if ((lastFocus is Button)){ _local3 = Button(lastFocus); if (defButton){ defButton.emphasized = false; defButton = _local3; _local3.emphasized = true; }; } else { if (((defButton) && (!((defButton == _defaultButton))))){ defButton.emphasized = false; defButton = _defaultButton; _defaultButton.emphasized = true; }; }; }; } private function tabEnabledChangeHandler(_arg1:Event):void{ calculateCandidates = true; var _local2:InteractiveObject = InteractiveObject(_arg1.target); var _local3 = (focusableObjects[_local2] == true); if (_local2.tabEnabled){ if (((!(_local3)) && (isTabVisible(_local2)))){ if (!(_local2 is IFocusManagerComponent)){ _local2.focusRect = false; }; focusableObjects[_local2] = true; }; } else { if (_local3){ delete focusableObjects[_local2]; }; }; } public function set showFocusIndicator(_arg1:Boolean):void{ _showFocusIndicator = _arg1; } public function get form():DisplayObjectContainer{ return (_form); } private function sortByTabIndex(_arg1:InteractiveObject, _arg2:InteractiveObject):int{ return (((_arg1.tabIndex > _arg2.tabIndex)) ? 1 : ((_arg1.tabIndex < _arg2.tabIndex)) ? -1 : sortByDepth(_arg1, _arg2)); } public function get defaultButtonEnabled():Boolean{ return (_defaultButtonEnabled); } public function activate():void{ if (activated){ return; }; form.stage.addEventListener(FocusEvent.MOUSE_FOCUS_CHANGE, mouseFocusChangeHandler, false, 0, true); form.stage.addEventListener(FocusEvent.KEY_FOCUS_CHANGE, keyFocusChangeHandler, false, 0, true); form.addEventListener(FocusEvent.FOCUS_IN, focusInHandler, true); form.addEventListener(FocusEvent.FOCUS_OUT, focusOutHandler, true); form.stage.addEventListener(Event.ACTIVATE, activateHandler, false, 0, true); form.stage.addEventListener(Event.DEACTIVATE, deactivateHandler, false, 0, true); form.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler); form.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler, true); activated = true; if (lastFocus){ setFocus(lastFocus); }; } public function deactivate():void{ form.stage.removeEventListener(FocusEvent.MOUSE_FOCUS_CHANGE, mouseFocusChangeHandler); form.stage.removeEventListener(FocusEvent.KEY_FOCUS_CHANGE, keyFocusChangeHandler); form.removeEventListener(FocusEvent.FOCUS_IN, focusInHandler, true); form.removeEventListener(FocusEvent.FOCUS_OUT, focusOutHandler, true); form.stage.removeEventListener(Event.ACTIVATE, activateHandler); form.stage.removeEventListener(Event.DEACTIVATE, deactivateHandler); form.removeEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler); form.removeEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler, true); activated = false; } } }//package fl.managers
Section 9
//IFocusManager (fl.managers.IFocusManager) package fl.managers { import flash.display.*; import fl.controls.*; public interface IFocusManager { function getFocus():InteractiveObject; function deactivate():void; function set defaultButton(_arg1:Button):void; function set showFocusIndicator(_arg1:Boolean):void; function get defaultButtonEnabled():Boolean; function findFocusManagerComponent(_arg1:InteractiveObject):InteractiveObject; function get nextTabIndex():int; function get defaultButton():Button; function get showFocusIndicator():Boolean; function hideFocus():void; function activate():void; function showFocus():void; function set defaultButtonEnabled(_arg1:Boolean):void; function setFocus(_arg1:InteractiveObject):void; function getNextFocusManagerComponent(_arg1:Boolean=false):InteractiveObject; } }//package fl.managers
Section 10
//IFocusManagerComponent (fl.managers.IFocusManagerComponent) package fl.managers { public interface IFocusManagerComponent { function set focusEnabled(_arg1:Boolean):void; function drawFocus(_arg1:Boolean):void; function setFocus():void; function get focusEnabled():Boolean; function get tabEnabled():Boolean; function get tabIndex():int; function get mouseFocusEnabled():Boolean; } }//package fl.managers
Section 11
//IFocusManagerGroup (fl.managers.IFocusManagerGroup) package fl.managers { public interface IFocusManagerGroup { function get groupName():String; function get selected():Boolean; function set groupName(_arg1:String):void; function set selected(_arg1:Boolean):void; } }//package fl.managers
Section 12
//StyleManager (fl.managers.StyleManager) package fl.managers { import fl.core.*; import flash.utils.*; import flash.text.*; public class StyleManager { private var classToInstancesDict:Dictionary; private var globalStyles:Object; private var styleToClassesHash:Object; private var classToStylesDict:Dictionary; private var classToDefaultStylesDict:Dictionary; private static var _instance:StyleManager; public function StyleManager(){ styleToClassesHash = {}; classToInstancesDict = new Dictionary(true); classToStylesDict = new Dictionary(true); classToDefaultStylesDict = new Dictionary(true); globalStyles = UIComponent.getStyleDefinition(); } public static function clearComponentStyle(_arg1:Object, _arg2:String):void{ var _local3:Class = getClassDef(_arg1); var _local4:Object = getInstance().classToStylesDict[_local3]; if (((!((_local4 == null))) && (!((_local4[_arg2] == null))))){ delete _local4[_arg2]; invalidateComponentStyle(_local3, _arg2); }; } private static function getClassDef(_arg1:Object):Class{ var component = _arg1; if ((component is Class)){ return ((component as Class)); }; try { return ((getDefinitionByName(getQualifiedClassName(component)) as Class)); } catch(e:Error) { if ((component is UIComponent)){ try { return ((component.loaderInfo.applicationDomain.getDefinition(getQualifiedClassName(component)) as Class)); } catch(e:Error) { }; }; }; return (null); } public static function clearStyle(_arg1:String):void{ setStyle(_arg1, null); } public static function setComponentStyle(_arg1:Object, _arg2:String, _arg3:Object):void{ var _local4:Class = getClassDef(_arg1); var _local5:Object = getInstance().classToStylesDict[_local4]; if (_local5 == null){ _local5 = (getInstance().classToStylesDict[_local4] = {}); }; if (_local5 == _arg3){ return; }; _local5[_arg2] = _arg3; invalidateComponentStyle(_local4, _arg2); } private static function setSharedStyles(_arg1:UIComponent):void{ var _local5:String; var _local2:StyleManager = getInstance(); var _local3:Class = getClassDef(_arg1); var _local4:Object = _local2.classToDefaultStylesDict[_local3]; for (_local5 in _local4) { _arg1.setSharedStyle(_local5, getSharedStyle(_arg1, _local5)); }; } public static function getComponentStyle(_arg1:Object, _arg2:String):Object{ var _local3:Class = getClassDef(_arg1); var _local4:Object = getInstance().classToStylesDict[_local3]; return (((_local4)==null) ? null : _local4[_arg2]); } private static function getInstance(){ if (_instance == null){ _instance = new (StyleManager); }; return (_instance); } private static function invalidateComponentStyle(_arg1:Class, _arg2:String):void{ var _local4:Object; var _local5:UIComponent; var _local3:Dictionary = getInstance().classToInstancesDict[_arg1]; if (_local3 == null){ return; }; for (_local4 in _local3) { _local5 = (_local4 as UIComponent); if (_local5 == null){ } else { _local5.setSharedStyle(_arg2, getSharedStyle(_local5, _arg2)); }; }; } private static function invalidateStyle(_arg1:String):void{ var _local3:Object; var _local2:Dictionary = getInstance().styleToClassesHash[_arg1]; if (_local2 == null){ return; }; for (_local3 in _local2) { invalidateComponentStyle(Class(_local3), _arg1); }; } public static function registerInstance(_arg1:UIComponent):void{ var target:Class; var defaultStyles:Object; var styleToClasses:Object; var n:String; var instance = _arg1; var inst:StyleManager = getInstance(); var classDef:Class = getClassDef(instance); if (classDef == null){ return; }; if (inst.classToInstancesDict[classDef] == null){ inst.classToInstancesDict[classDef] = new Dictionary(true); target = classDef; while (defaultStyles == null) { if (target["getStyleDefinition"] != null){ defaultStyles = target["getStyleDefinition"](); break; }; try { target = (instance.loaderInfo.applicationDomain.getDefinition(getQualifiedSuperclassName(target)) as Class); } catch(err:Error) { try { target = (getDefinitionByName(getQualifiedSuperclassName(target)) as Class); } catch(e:Error) { defaultStyles = UIComponent.getStyleDefinition(); break; }; }; }; styleToClasses = inst.styleToClassesHash; for (n in defaultStyles) { if (styleToClasses[n] == null){ styleToClasses[n] = new Dictionary(true); }; styleToClasses[n][classDef] = true; }; inst.classToDefaultStylesDict[classDef] = defaultStyles; if (inst.classToStylesDict[classDef] == null){ inst.classToStylesDict[classDef] = {}; }; }; inst.classToInstancesDict[classDef][instance] = true; setSharedStyles(instance); } public static function getStyle(_arg1:String):Object{ return (getInstance().globalStyles[_arg1]); } private static function getSharedStyle(_arg1:UIComponent, _arg2:String):Object{ var _local3:Class = getClassDef(_arg1); var _local4:StyleManager = getInstance(); var _local5:Object = _local4.classToStylesDict[_local3][_arg2]; if (_local5 != null){ return (_local5); }; _local5 = _local4.globalStyles[_arg2]; if (_local5 != null){ return (_local5); }; return (_local4.classToDefaultStylesDict[_local3][_arg2]); } public static function setStyle(_arg1:String, _arg2:Object):void{ var _local3:Object = getInstance().globalStyles; if ((((_local3[_arg1] === _arg2)) && (!((_arg2 is TextFormat))))){ return; }; _local3[_arg1] = _arg2; invalidateStyle(_arg1); } } }//package fl.managers
Section 13
//MochiAd (mochi.as3.MochiAd) package mochi.as3 { import flash.display.*; import flash.events.*; import flash.utils.*; import flash.system.*; import flash.net.*; public class MochiAd { public static function getVersion():String{ return ("3.0 as3"); } public static function showClickAwayAd(_arg1:Object):void{ var clip:Object; var mc:MovieClip; var chk:MovieClip; var options = _arg1; var DEFAULTS:Object = {ad_timeout:2000, regpt:"o", method:"showClickAwayAd", res:"300x250", no_bg:true, ad_started:function ():void{ }, ad_finished:function ():void{ }, ad_loaded:function (_arg1:Number, _arg2:Number):void{ }, ad_failed:function ():void{ trace("[MochiAd] Couldn't load an ad, make sure your game's local security sandbox is configured for Access Network Only and that you are not using ad blocking software"); }, ad_skipped:function ():void{ }}; options = MochiAd._parseOptions(options, DEFAULTS); clip = options.clip; var ad_timeout:Number = options.ad_timeout; delete options.ad_timeout; if (!MochiAd.load(options)){ options.ad_failed(); options.ad_finished(); return; }; options.ad_started(); mc = clip._mochiad; mc["onUnload"] = function ():void{ MochiAd._cleanup(mc); options.ad_finished(); }; var wh:Array = MochiAd._getRes(options, clip); var w:Number = wh[0]; var h:Number = wh[1]; mc.x = (w * 0.5); mc.y = (h * 0.5); chk = createEmptyMovieClip(mc, "_mochiad_wait", 3); chk.ad_timeout = ad_timeout; chk.started = getTimer(); chk.showing = false; mc.unloadAd = function ():void{ MochiAd.unload(clip); }; mc.adLoaded = options.ad_loaded; mc.adSkipped = options.ad_skipped; mc.rpc = function (_arg1:Number, _arg2:Object):void{ MochiAd.rpc(clip, _arg1, _arg2); }; var sendHostProgress:Boolean; mc.regContLC = function (_arg1:String):void{ mc._containerLCName = _arg1; }; chk["onEnterFrame"] = function ():void{ var _local4:Number; if (!this.parent){ delete this.onEnterFrame; return; }; var _local1:Object = this.parent._mochiad_ctr; var _local2:Number = (getTimer() - this.started); var _local3:Boolean; if (!chk.showing){ _local4 = this.parent._mochiad_ctr.contentLoaderInfo.bytesTotal; if (_local4 > 0){ chk.showing = true; _local3 = true; chk.started = getTimer(); } else { if (_local2 > chk.ad_timeout){ options.ad_failed(); _local3 = true; }; }; }; if (this.root == null){ _local3 = true; }; if (_local3){ delete this.onEnterFrame; }; }; doOnEnterFrame(chk); } public static function _isNetworkAvailable():Boolean{ return (!((Security.sandboxType == "localWithFile"))); } public static function _allowDomains(_arg1:String):String{ var _local2:String = _arg1.split("/")[2].split(":")[0]; if (Security.sandboxType == "application"){ return (_local2); }; Security.allowDomain("*"); Security.allowDomain(_local2); Security.allowInsecureDomain("*"); Security.allowInsecureDomain(_local2); return (_local2); } public static function unload(_arg1:Object):Boolean{ if (((_arg1.clip) && (_arg1.clip._mochiad))){ _arg1 = _arg1.clip; }; if (_arg1.origFrameRate != undefined){ _arg1.stage.frameRate = _arg1.origFrameRate; }; if (!_arg1._mochiad){ return (false); }; if (_arg1._mochiad._containerLCName != undefined){ _arg1._mochiad.lc.send(_arg1._mochiad._containerLCName, "notify", {id:"unload"}); }; if (_arg1._mochiad.onUnload){ _arg1._mochiad.onUnload(); }; delete _arg1._mochiad_loaded; delete _arg1._mochiad; return (true); } public static function showInterLevelAd(_arg1:Object):void{ var clip:Object; var mc:MovieClip; var chk:MovieClip; var options = _arg1; var DEFAULTS:Object = {ad_timeout:2000, fadeout_time:250, regpt:"o", method:"showTimedAd", ad_started:function ():void{ if ((this.clip is MovieClip)){ this.clip.stop(); } else { throw (new Error("MochiAd.showInterLevelAd requires a clip that is a MovieClip or is an instance of a class that extends MovieClip. If your clip is a Sprite, then you must provide custom ad_started and ad_finished handlers.")); }; }, ad_finished:function ():void{ if ((this.clip is MovieClip)){ this.clip.play(); } else { throw (new Error("MochiAd.showInterLevelAd requires a clip that is a MovieClip or is an instance of a class that extends MovieClip. If your clip is a Sprite, then you must provide custom ad_started and ad_finished handlers.")); }; }, ad_loaded:function (_arg1:Number, _arg2:Number):void{ }, ad_failed:function ():void{ trace("[MochiAd] Couldn't load an ad, make sure your game's local security sandbox is configured for Access Network Only and that you are not using ad blocking software"); }, ad_skipped:function ():void{ }}; options = MochiAd._parseOptions(options, DEFAULTS); clip = options.clip; var ad_msec:Number = 11000; var ad_timeout:Number = options.ad_timeout; delete options.ad_timeout; var fadeout_time:Number = options.fadeout_time; delete options.fadeout_time; if (!MochiAd.load(options)){ options.ad_failed(); options.ad_finished(); return; }; options.ad_started(); mc = clip._mochiad; mc["onUnload"] = function ():void{ MochiAd._cleanup(mc); options.ad_finished(); }; var wh:Array = MochiAd._getRes(options, clip); var w:Number = wh[0]; var h:Number = wh[1]; mc.x = (w * 0.5); mc.y = (h * 0.5); chk = createEmptyMovieClip(mc, "_mochiad_wait", 3); chk.ad_msec = ad_msec; chk.ad_timeout = ad_timeout; chk.started = getTimer(); chk.showing = false; chk.fadeout_time = fadeout_time; chk.fadeFunction = function ():void{ if (!this.parent){ delete this.onEnterFrame; delete this.fadeFunction; return; }; var _local1:Number = (100 * (1 - ((getTimer() - this.fadeout_start) / this.fadeout_time))); if (_local1 > 0){ this.parent.alpha = (_local1 * 0.01); } else { MochiAd.unload(clip); delete this["onEnterFrame"]; }; }; mc.unloadAd = function ():void{ MochiAd.unload(clip); }; mc.adLoaded = options.ad_loaded; mc.adSkipped = options.ad_skipped; mc.adjustProgress = function (_arg1:Number):void{ var _local2:Object = mc._mochiad_wait; _local2.server_control = true; _local2.showing = true; _local2.started = getTimer(); _local2.ad_msec = (_arg1 - 250); }; mc.rpc = function (_arg1:Number, _arg2:Object):void{ MochiAd.rpc(clip, _arg1, _arg2); }; chk["onEnterFrame"] = function ():void{ var _local4:Number; if (!this.parent){ delete this.onEnterFrame; delete this.fadeFunction; return; }; var _local1:Object = this.parent._mochiad_ctr; var _local2:Number = (getTimer() - this.started); var _local3:Boolean; if (!chk.showing){ _local4 = this.parent._mochiad_ctr.contentLoaderInfo.bytesTotal; if (_local4 > 0){ chk.showing = true; chk.started = getTimer(); MochiAd.adShowing(clip); } else { if (_local2 > chk.ad_timeout){ options.ad_failed(); _local3 = true; }; }; }; if (_local2 > chk.ad_msec){ _local3 = true; }; if (_local3){ if (this.server_control){ delete this.onEnterFrame; } else { this.fadeout_start = getTimer(); this.onEnterFrame = this.fadeFunction; }; }; }; doOnEnterFrame(chk); } public static function _parseOptions(_arg1:Object, _arg2:Object):Object{ var _local4:String; var _local5:Array; var _local6:Number; var _local7:Array; var _local3:Object = {}; for (_local4 in _arg2) { _local3[_local4] = _arg2[_local4]; }; if (_arg1){ for (_local4 in _arg1) { _local3[_local4] = _arg1[_local4]; }; }; if (_local3.clip == undefined){ throw (new Error("MochiAd is missing the 'clip' parameter. This should be a MovieClip, Sprite or an instance of a class that extends MovieClip or Sprite.")); }; _arg1 = _local3.clip.loaderInfo.parameters.mochiad_options; if (_arg1){ _local5 = _arg1.split("&"); _local6 = 0; while (_local6 < _local5.length) { _local7 = _local5[_local6].split("="); _local3[unescape(_local7[0])] = unescape(_local7[1]); _local6++; }; }; if (_local3.id == "test"){ trace("[MochiAd] WARNING: Using the MochiAds test identifier, make sure to use the code from your dashboard, not this example!"); }; return (_local3); } public static function _cleanup(_arg1:Object):void{ var k:String; var lc:LocalConnection; var f:Function; var mc = _arg1; if (("lc" in mc)){ lc = mc.lc; f = function ():void{ try { lc.client = null; lc.close(); } catch(e:Error) { }; }; setTimeout(f, 0); }; var idx:Number = DisplayObjectContainer(mc).numChildren; while (idx > 0) { idx = (idx - 1); DisplayObjectContainer(mc).removeChildAt(idx); }; for (k in mc) { delete mc[k]; }; } public static function load(_arg1:Object):MovieClip{ var clip:Object; var k:String; var server:String; var hostname:String; var lc:LocalConnection; var name:String; var loader:Loader; var g:Function; var req:URLRequest; var v:Object; var options = _arg1; var DEFAULTS:Object = {server:"http://x.mochiads.com/srv/1/", method:"load", depth:10333, id:"_UNKNOWN_"}; options = MochiAd._parseOptions(options, DEFAULTS); options.swfv = 9; options.mav = MochiAd.getVersion(); clip = options.clip; if (!MochiAd._isNetworkAvailable()){ return (null); }; try { if (clip._mochiad_loaded){ return (null); }; } catch(e:Error) { throw (new Error("MochiAd requires a clip that is an instance of a dynamic class. If your class extends Sprite or MovieClip, you must make it dynamic.")); }; var depth:Number = options.depth; delete options.depth; var mc:MovieClip = createEmptyMovieClip(clip, "_mochiad", depth); var wh:Array = MochiAd._getRes(options, clip); options.res = ((wh[0] + "x") + wh[1]); options.server = (options.server + options.id); delete options.id; clip._mochiad_loaded = true; if (clip.loaderInfo.loaderURL.indexOf("http") == 0){ options.as3_swf = clip.loaderInfo.loaderURL; } else { trace("[MochiAd] NOTE: Security Sandbox Violation errors below are normal"); }; var lv:URLVariables = new URLVariables(); for (k in options) { v = options[k]; if (!(v is Function)){ lv[k] = v; }; }; server = lv.server; delete lv.server; hostname = _allowDomains(server); lc = new LocalConnection(); lc.client = mc; name = ["", Math.floor(new Date().getTime()), Math.floor((Math.random() * 999999))].join("_"); lc.allowDomain("*", "localhost"); lc.allowInsecureDomain("*", "localhost"); lc.connect(name); mc.lc = lc; mc.lcName = name; lv.lc = name; lv.st = getTimer(); loader = new Loader(); g = function (_arg1:Object):void{ _arg1.target.removeEventListener(_arg1.type, arguments.callee); MochiAd.unload(clip); }; loader.contentLoaderInfo.addEventListener(Event.UNLOAD, g); req = new URLRequest(((server + ".swf?cacheBust=") + new Date().getTime())); req.contentType = "application/x-www-form-urlencoded"; req.method = URLRequestMethod.POST; req.data = lv; loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, function (_arg1:IOErrorEvent):void{ trace("[MochiAds] Blocked URL"); }); loader.load(req); mc.addChild(loader); mc._mochiad_ctr = loader; return (mc); } public static function runMethod(_arg1:Object, _arg2:String, _arg3:Array):Object{ var _local4:Array = _arg2.split("."); var _local5:Number = 0; while (_local5 < (_local4.length - 1)) { if ((((_arg1[_local4[_local5]] == undefined)) || ((_arg1[_local4[_local5]] == null)))){ return (undefined); }; _arg1 = _arg1[_local4[_local5]]; _local5++; }; if (typeof(_arg1[_local4[_local5]]) == "function"){ return (_arg1[_local4[_local5]].apply(_arg1, _arg3)); }; return (undefined); } public static function createEmptyMovieClip(_arg1:Object, _arg2:String, _arg3:Number):MovieClip{ var _local4:MovieClip = new MovieClip(); if (((false) && (_arg3))){ _arg1.addChildAt(_local4, _arg3); } else { _arg1.addChild(_local4); }; _arg1[_arg2] = _local4; _local4["_name"] = _arg2; return (_local4); } public static function _getRes(_arg1:Object, _arg2:Object):Array{ var _local6:Array; var _local3:Object = _arg2.getBounds(_arg2.root); var _local4:Number = 0; var _local5:Number = 0; if (typeof(_arg1.res) != "undefined"){ _local6 = _arg1.res.split("x"); _local4 = parseFloat(_local6[0]); _local5 = parseFloat(_local6[1]); } else { _local4 = (_local3.xMax - _local3.xMin); _local5 = (_local3.yMax - _local3.yMin); }; if ((((_local4 == 0)) || ((_local5 == 0)))){ _local4 = _arg2.stage.stageWidth; _local5 = _arg2.stage.stageHeight; }; return ([_local4, _local5]); } public static function adShowing(_arg1:Object):void{ _arg1.origFrameRate = _arg1.stage.frameRate; _arg1.stage.frameRate = 30; } public static function getValue(_arg1:Object, _arg2:String):Object{ var _local3:Array = _arg2.split("."); var _local4:Number = 0; while (_local4 < (_local3.length - 1)) { if ((((_arg1[_local3[_local4]] == undefined)) || ((_arg1[_local3[_local4]] == null)))){ return (undefined); }; _arg1 = _arg1[_local3[_local4]]; _local4++; }; return (_arg1[_local3[_local4]]); } public static function rpc(_arg1:Object, _arg2:Number, _arg3:Object):void{ var _local4:Object; var _local5:Object; switch (_arg3.id){ case "setValue": MochiAd.setValue(_arg1, _arg3.objectName, _arg3.value); break; case "getValue": _local4 = MochiAd.getValue(_arg1, _arg3.objectName); _arg1._mochiad.lc.send(_arg1._mochiad._containerLCName, "rpcResult", _arg2, _local4); break; case "runMethod": _local5 = MochiAd.runMethod(_arg1, _arg3.method, _arg3.args); _arg1._mochiad.lc.send(_arg1._mochiad._containerLCName, "rpcResult", _arg2, _local5); break; default: trace(("[mochiads rpc] unknown rpc id: " + _arg3.id)); }; } public static function setValue(_arg1:Object, _arg2:String, _arg3:Object):void{ var _local4:Array = _arg2.split("."); var _local5:Number = 0; while (_local5 < (_local4.length - 1)) { if ((((_arg1[_local4[_local5]] == undefined)) || ((_arg1[_local4[_local5]] == null)))){ return; }; _arg1 = _arg1[_local4[_local5]]; _local5++; }; _arg1[_local4[_local5]] = _arg3; } public static function showPreGameAd(_arg1:Object):void{ var clip:Object; var mc:MovieClip; var chk:MovieClip; var complete:Boolean; var unloaded:Boolean; var sendHostProgress:Boolean; var fn:Function; var r:MovieClip; var options = _arg1; var DEFAULTS:Object = {ad_timeout:3000, fadeout_time:250, regpt:"o", method:"showPreloaderAd", color:0xFF8A00, background:16777161, outline:13994812, no_progress_bar:false, ad_started:function ():void{ if ((this.clip is MovieClip)){ this.clip.stop(); } else { throw (new Error("MochiAd.showPreGameAd requires a clip that is a MovieClip or is an instance of a class that extends MovieClip. If your clip is a Sprite, then you must provide custom ad_started and ad_finished handlers.")); }; }, ad_finished:function ():void{ if ((this.clip is MovieClip)){ this.clip.play(); } else { throw (new Error("MochiAd.showPreGameAd requires a clip that is a MovieClip or is an instance of a class that extends MovieClip. If your clip is a Sprite, then you must provide custom ad_started and ad_finished handlers.")); }; }, ad_loaded:function (_arg1:Number, _arg2:Number):void{ }, ad_failed:function ():void{ trace("[MochiAd] Couldn't load an ad, make sure your game's local security sandbox is configured for Access Network Only and that you are not using ad blocking software"); }, ad_skipped:function ():void{ }, ad_progress:function (_arg1:Number):void{ }}; options = MochiAd._parseOptions(options, DEFAULTS); if ("c862232051e0a94e1c3609b3916ddb17".substr(0) == "dfeada81ac97cde83665f81c12da7def"){ options.ad_started(); fn = function ():void{ options.ad_finished(); }; setTimeout(fn, 100); return; }; clip = options.clip; var ad_msec:Number = 11000; var ad_timeout:Number = options.ad_timeout; delete options.ad_timeout; var fadeout_time:Number = options.fadeout_time; delete options.fadeout_time; if (!MochiAd.load(options)){ options.ad_failed(); options.ad_finished(); return; }; options.ad_started(); mc = clip._mochiad; mc["onUnload"] = function ():void{ MochiAd._cleanup(mc); var fn:Function = function ():void{ options.ad_finished(); }; setTimeout(fn, 100); }; var wh:Array = MochiAd._getRes(options, clip); var w:Number = wh[0]; var h:Number = wh[1]; mc.x = (w * 0.5); mc.y = (h * 0.5); chk = createEmptyMovieClip(mc, "_mochiad_wait", 3); chk.x = (w * -0.5); chk.y = (h * -0.5); var bar:MovieClip = createEmptyMovieClip(chk, "_mochiad_bar", 4); if (options.no_progress_bar){ bar.visible = false; delete options.no_progress_bar; } else { bar.x = 10; bar.y = (h - 20); }; var bar_color:Number = options.color; delete options.color; var bar_background:Number = options.background; delete options.background; var bar_outline:Number = options.outline; delete options.outline; var backing_mc:MovieClip = createEmptyMovieClip(bar, "_outline", 1); var backing:Object = backing_mc.graphics; backing.beginFill(bar_background); backing.moveTo(0, 0); backing.lineTo((w - 20), 0); backing.lineTo((w - 20), 10); backing.lineTo(0, 10); backing.lineTo(0, 0); backing.endFill(); var inside_mc:MovieClip = createEmptyMovieClip(bar, "_inside", 2); var inside:Object = inside_mc.graphics; inside.beginFill(bar_color); inside.moveTo(0, 0); inside.lineTo((w - 20), 0); inside.lineTo((w - 20), 10); inside.lineTo(0, 10); inside.lineTo(0, 0); inside.endFill(); inside_mc.scaleX = 0; var outline_mc:MovieClip = createEmptyMovieClip(bar, "_outline", 3); var outline:Object = outline_mc.graphics; outline.lineStyle(0, bar_outline, 100); outline.moveTo(0, 0); outline.lineTo((w - 20), 0); outline.lineTo((w - 20), 10); outline.lineTo(0, 10); outline.lineTo(0, 0); chk.ad_msec = ad_msec; chk.ad_timeout = ad_timeout; chk.started = getTimer(); chk.showing = false; chk.last_pcnt = 0; chk.fadeout_time = fadeout_time; chk.fadeFunction = function ():void{ var _local1:Number = (100 * (1 - ((getTimer() - this.fadeout_start) / this.fadeout_time))); if (_local1 > 0){ this.parent.alpha = (_local1 * 0.01); } else { MochiAd.unload(clip); delete this["onEnterFrame"]; }; }; complete = false; unloaded = false; var f:Function = function (_arg1:Event):void{ _arg1.target.removeEventListener(_arg1.type, arguments.callee); complete = true; if (unloaded){ MochiAd.unload(clip); }; }; clip.loaderInfo.addEventListener(Event.COMPLETE, f); if ((clip.root is MovieClip)){ r = (clip.root as MovieClip); if (r.framesLoaded >= r.totalFrames){ complete = true; }; }; mc.unloadAd = function ():void{ unloaded = true; if (complete){ MochiAd.unload(clip); }; }; mc.adLoaded = options.ad_loaded; mc.adSkipped = options.ad_skipped; mc.adjustProgress = function (_arg1:Number):void{ var _local2:Object = mc._mochiad_wait; _local2.server_control = true; _local2.showing = true; _local2.started = getTimer(); _local2.ad_msec = _arg1; }; mc.rpc = function (_arg1:Number, _arg2:Object):void{ MochiAd.rpc(clip, _arg1, _arg2); }; mc.rpcTestFn = function (_arg1:String):Object{ trace(("[MOCHIAD rpcTestFn] " + _arg1)); return (_arg1); }; mc.regContLC = function (_arg1:String):void{ mc._containerLCName = _arg1; }; sendHostProgress = false; mc.sendHostLoadProgress = function (_arg1:String):void{ sendHostProgress = true; }; chk["onEnterFrame"] = function ():void{ var _local11:Number; if (((!(this.parent)) || (!(this.parent.parent)))){ delete this["onEnterFrame"]; return; }; var _local1:Object = this.parent.parent.root; var _local2:Object = this.parent._mochiad_ctr; var _local3:Number = (getTimer() - this.started); var _local4:Boolean; var _local5:Number = _local1.loaderInfo.bytesTotal; var _local6:Number = _local1.loaderInfo.bytesLoaded; if (complete){ _local6 = Math.max(1, _local6); _local5 = _local6; }; var _local7:Number = ((100 * _local6) / _local5); var _local8:Number = ((100 * _local3) / chk.ad_msec); var _local9:Object = this._mochiad_bar._inside; var _local10:Number = Math.min(100, Math.min(((_local7) || (0)), _local8)); _local10 = Math.max(this.last_pcnt, _local10); this.last_pcnt = _local10; _local9.scaleX = (_local10 * 0.01); options.ad_progress(_local10); if (sendHostProgress){ clip._mochiad.lc.send(clip._mochiad._containerLCName, "notify", {id:"hostLoadPcnt", pcnt:_local7}); if (_local7 == 100){ sendHostProgress = false; }; }; if (!chk.showing){ _local11 = this.parent._mochiad_ctr.contentLoaderInfo.bytesTotal; if (_local11 > 0){ chk.showing = true; chk.started = getTimer(); MochiAd.adShowing(clip); } else { if ((((_local3 > chk.ad_timeout)) && ((_local7 == 100)))){ options.ad_failed(); _local4 = true; }; }; }; if (_local3 > chk.ad_msec){ _local4 = true; }; if (((complete) && (_local4))){ if (this.server_control){ delete this.onEnterFrame; } else { this.fadeout_start = getTimer(); this.onEnterFrame = chk.fadeFunction; }; }; }; doOnEnterFrame(chk); } public static function showPreloaderAd(_arg1:Object):void{ trace("[MochiAd] DEPRECATED: showPreloaderAd was renamed to showPreGameAd in 2.0"); MochiAd.showPreGameAd(_arg1); } public static function showTimedAd(_arg1:Object):void{ trace("[MochiAd] DEPRECATED: showTimedAd was renamed to showInterLevelAd in 2.0"); MochiAd.showInterLevelAd(_arg1); } public static function doOnEnterFrame(_arg1:MovieClip):void{ var mc = _arg1; var f:Function = function (_arg1:Object):void{ if (((("onEnterFrame" in mc)) && (mc.onEnterFrame))){ mc.onEnterFrame(); } else { _arg1.target.removeEventListener(_arg1.type, arguments.callee); }; }; mc.addEventListener(Event.ENTER_FRAME, f); } } }//package mochi.as3
Section 14
//Util (myUtil.Util) package myUtil { import flash.display.*; import flash.geom.*; import fl.managers.*; import ZombieKiller.*; import flash.system.*; public class Util { public static function addObject(_arg1:Number, _arg2:String, _arg3:Array, _arg4:MovieClip, _arg5:Object):void{ var _local6:int = _arg3.length; var _local7:int = _local6; while (_local7 < (_local6 + _arg1)) { _arg3[_local7] = MovieClip(Util.getResource((_arg2 + "MC"))); _arg5.addChild(_arg3[_local7]); _local7++; }; } public static function setStageFocus(_arg1:Object):void{ var _local2:* = _arg1; var _local3:* = new FocusManager(_local2); if (_local3 == null){ _local3 = new FocusManager(_local2); _local3.setFocus(_local2); } else { _local3.setFocus(_local2); }; } public static function getResource(_arg1:String):Sprite{ var _local2:ApplicationDomain = ApplicationDomain.currentDomain; var _local3:MovieClip; var _local4:Class = (_local2.getDefinition(_arg1) as Class); if (_local4 != null){ _local3 = new (_local4); }; return (_local3); } public static function getRotation_fixedPoint(_arg1:Number, _arg2:Number, _arg3:MovieClip):Number{ var _local4:Number = _arg3.mouseX; var _local5:Number = _arg3.mouseY; var _local6:Number = ((Math.atan2((_local5 - _arg2), (_local4 - _arg1)) * 180) / Math.PI); return (_local6); } public static function getSpeedY(_arg1:Number, _arg2:Number, _arg3:MovieClip, _arg4:Number):Number{ var _local5:Number = _arg3.mouseX; var _local6:Number = _arg3.mouseY; var _local7:Number = Math.atan2((_local6 - _arg2), (_local5 - _arg1)); var _local8:* = (_arg4 * Math.sin(_local7)); return (_local8); } public static function getDistanceToPoint(_arg1:Point, _arg2:MovieClip):Number{ var _local3:Number = Math.sqrt((Math.pow((_arg1.x - _arg2.x), 2) + Math.pow((_arg1.y - _arg2.y), 2))); return (_local3); } public static function getDistance(_arg1:MovieClip, _arg2:MovieClip):Number{ var _local3:Number = Math.sqrt((Math.pow((_arg1.x - _arg2.x), 2) + Math.pow((_arg1.y - _arg2.y), 2))); return (_local3); } public static function getSpeedX(_arg1:Number, _arg2:Number, _arg3:MovieClip, _arg4:Number):Number{ var _local5:Number = _arg3.mouseX; var _local6:Number = _arg3.mouseY; var _local7:Number = Math.atan2((_local6 - _arg2), (_local5 - _arg1)); var _local8:* = (_arg4 * Math.cos(_local7)); return (_local8); } public static function doFigure(_arg1:MovieClip, _arg2:Number, _arg3:Number, _arg4:MovieClip){ var _local5:Number = 0; var _local6:* = new Object(); _local6.x = (_arg1.x + _arg2); _local6.y = _arg1.y; if (_arg2 < 0){ if (_arg4.hitTestPoint((_arg1.x + _arg2), _arg1.y, true)){ _local5 = -3.14159265358979; while (_local5 < -1.5707963267949) { _local6.x = ((Math.cos(_local5) * -(_arg3)) + _arg1.x); _local6.y = ((Math.sin(_local5) * -(_arg3)) + _arg1.y); if (_arg4.hitTestPoint(_local6.x, _local6.y, true) == false){ _local5 = 0; }; _local5 = (_local5 + 0.0628318530717959); }; }; } else { if (_arg2 > 0){ if (_arg4.hitTestPoint((_arg1.x + _arg2), _arg1.y, true)){ _local5 = 0; while (_local5 > -1.5707963267949) { _local6.x = ((Math.cos(_local5) * _arg3) + _arg1.x); _local6.y = ((Math.sin(_local5) * _arg3) + _arg1.y); if (_arg4.hitTestPoint(_local6.x, _local6.y, true) == false){ _local5 = -1.5707963267949; }; _local5 = (_local5 - 0.10471975511966); }; }; }; }; if ((_arg1.y - _local6.y) < (Math.abs(_arg3) * 0.96)){ if ((((((((_arg4.hitTestPoint((_arg1.x + 40), (_arg1.y - 20), true) == false)) && ((_arg2 > 0)))) || ((((_arg4.hitTestPoint((_arg1.x - 40), (_arg1.y - 20), true) == false)) && ((_arg2 < 0)))))) && (!((_arg1.currentLabel == "pndHit"))))){ _arg1.x = _local6.x; }; _arg1.y = _local6.y; }; } public static function getRandomColor():ColorTransform{ var _local1:Number = ((Math.random() * 0x0200) - 0xFF); var _local2:Number = ((Math.random() * 0x0200) - 0xFF); var _local3:Number = ((Math.random() * 0x0200) - 0xFF); return (new ColorTransform(1, 1, 1, 1, _local1, _local2, _local3, 0)); } public static function initLayers(_arg1:MovieClip):void{ var _local3:*; var _local4:MovieClip; var _local2:Array = ["background", "scene", "tool", "enemy", "weapon", "charactor", "alert"]; for (_local3 in _local2) { _local4 = new MovieClip(); _local4.name = _local2[_local3]; _arg1.addChild(_local4); Cache.Layers[_local2[_local3]] = _local4; }; } public static function getRotation(_arg1:MovieClip, _arg2:MovieClip):Number{ var _local3:Number = _arg2.mouseX; var _local4:Number = _arg2.mouseY; var _local5:Number = ((Math.atan2((_local4 - _arg1.y), (_local3 - _arg1.x)) * 180) / Math.PI); return (_local5); } public static function randRange(_arg1:Number, _arg2:Number):Number{ var _local3:Number = (Math.floor((Math.random() * ((_arg2 - _arg1) + 1))) + _arg1); return (_local3); } public static function getLocaledPoint(_arg1:MovieClip, _arg2:MovieClip):Point{ var _local3:* = new Point(_arg1.x, _arg1.y); _local3 = _arg1.parent.localToGlobal(_local3); _local3 = _arg2.globalToLocal(_local3); return (_local3); } public static function getDistanceToMouse(_arg1:MovieClip, _arg2:MovieClip):Number{ var _local3:Number = _arg2.mouseX; var _local4:Number = _arg2.mouseY; var _local5:Number = Math.sqrt((Math.pow((_arg1.x - _local3), 2) + Math.pow((_arg1.y - _local4), 2))); return (_local5); } } }//package myUtil
Section 15
//Timeline_109 (ZombieAvengerCS3_fla.Timeline_109) package ZombieAvengerCS3_fla { import flash.display.*; public dynamic class Timeline_109 extends MovieClip { public function Timeline_109(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame1(){ this.stop(); } function frame2(){ this.stop(); } function frame3(){ this.stop(); } } }//package ZombieAvengerCS3_fla
Section 16
//Timeline_29 (ZombieAvengerCS3_fla.Timeline_29) package ZombieAvengerCS3_fla { import flash.display.*; public dynamic class Timeline_29 extends MovieClip { public function Timeline_29(){ addFrameScript(80, frame81); } function frame81(){ this.stop(); } } }//package ZombieAvengerCS3_fla
Section 17
//Timeline_83 (ZombieAvengerCS3_fla.Timeline_83) package ZombieAvengerCS3_fla { import flash.display.*; public dynamic class Timeline_83 extends MovieClip { public var gun:MovieClip; public function Timeline_83(){ addFrameScript(0, frame1, 4, frame5, 7, frame8, 10, frame11); } function frame1(){ this.stop(); } function frame5(){ this.gotoAndStop(1); } function frame8(){ this.gotoAndStop(1); } function frame11(){ this.gotoAndStop(1); } } }//package ZombieAvengerCS3_fla
Section 18
//Timeline_84 (ZombieAvengerCS3_fla.Timeline_84) package ZombieAvengerCS3_fla { import flash.display.*; public dynamic class Timeline_84 extends MovieClip { public var sensor:MovieClip; public function Timeline_84(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame1(){ this.stop(); } function frame2(){ this.stop(); } function frame3(){ this.stop(); } } }//package ZombieAvengerCS3_fla
Section 19
//BackGround (ZombieKiller.BackGround) package ZombieKiller { import flash.display.*; import myUtil.*; public class BackGround extends MovieClip { var ss:String; var s:String;// = "" public function BackGround(){ while (Cache.Layers["background"].numChildren > 0) { Cache.Layers["background"].removeChildAt(0); }; Cache.backGroundArr.splice(0, Cache.backGroundArr.length); if (Cache.level == 1){ addBackGround("background1_", 7); } else { if (Cache.level == 2){ addBackGround("background2_", 7); } else { if (Cache.level == 3){ addBackGround("background3_", 8); }; }; }; } public function addBackGround(_arg1:String, _arg2:Number):void{ this.s = _arg1; var _local3:int; while (_local3 < _arg2) { ss = String(_local3); s = s.concat(ss); Cache.backGroundArr[_local3] = Util.getResource(s); Cache.backGroundArr[0].x = 0; if (_local3 > 0){ Cache.backGroundArr[_local3].x = ((Cache.backGroundArr[(_local3 - 1)].x + Cache.backGroundArr[(_local3 - 1)].width) - 1); }; Cache.backGroundArr[_local3].cacheAsBitmap = true; Cache.Layers["background"].addChild(Cache.backGroundArr[_local3]); this.s = _arg1; _local3++; }; } } }//package ZombieKiller
Section 20
//Boss1 (ZombieKiller.Boss1) package ZombieKiller { public class Boss1 extends Enemy { public function Boss1(){ this.x = (Cache.totalWidth - 1500); this.y = 300; this.scaleX = (scaleY = 0.6); enemyHealth = 1000; easingSpeed = 0.5; canJump = true; jumpSpeed = 60; Cache.boss = this; this.cacheAsBitmap = true; } } }//package ZombieKiller
Section 21
//Boss2 (ZombieKiller.Boss2) package ZombieKiller { import flash.display.*; import flash.geom.*; public class Boss2 extends Enemy { public var boss2fire:MovieClip; public function Boss2(){ this.x = (Cache.totalWidth - 1500); this.y = 300; this.scaleX = (scaleY = 0.6); enemyHealth = 1000; easingSpeed = 0.3; canJump = true; jumpSpeed = 60; Cache.boss = this; } override public function attack():void{ if (Math.abs((this.x - Cache.hero.x)) <= 80){ if (((!((this.currentLabel == "attack"))) && (!((this.currentLabel == "attack1"))))){ this.gotoAndPlay("attack1"); }; }; if ((((Math.abs((this.x - Cache.hero.x)) <= 800)) && ((Math.abs((this.x - Cache.hero.x)) > 80)))){ if (((!((this.currentLabel == "attack"))) && (!((this.currentLabel == "attack1"))))){ this.gotoAndPlay("attack"); }; }; if (((!((this.boss2fire == null))) && (this.boss2fire.hitTestObject(Cache.hero)))){ Cache.heroHealth = (Cache.heroHealth - 0.1); Cache.hero.transform.colorTransform = new ColorTransform(3, 3, 3, 1); }; } } }//package ZombieKiller
Section 22
//Box (ZombieKiller.Box) package ZombieKiller { import flash.display.*; import flash.events.*; import myUtil.*; public class Box extends MovieClip { public function Box(){ this.y = -100; this.addEventListener(Event.ENTER_FRAME, boxMove); } public function boxMove(_arg1:Event):void{ if (this.parent == null){ return; }; this.y = (this.y + 6); if (Cache.scene.hitTestPoint(this.x, this.y, true)){ removeBox(); }; if (Cache.hero.hitTestObject(this)){ if ((this is Box1MC)){ Cache.heroHealth = (Cache.heroHealth + 2); removeBox(); } else { if ((((this is Box2MC)) && (!((Cache.main.parent.getChildAt((Cache.main.parent.numChildren - 1)) == null))))){ MovieClip(Cache.main.parent.getChildAt((Cache.main.parent.numChildren - 1))).m2Num.text = (Number(MovieClip(Cache.main.parent.getChildAt((Cache.main.parent.numChildren - 1))).m2Num.text) + 10); removeBox(); } else { if ((((this is Box3MC)) && (!((Cache.main.parent.getChildAt((Cache.main.parent.numChildren - 1)) == null))))){ MovieClip(Cache.main.parent.getChildAt((Cache.main.parent.numChildren - 1))).m3Num.text = (Number(MovieClip(Cache.main.parent.getChildAt((Cache.main.parent.numChildren - 1))).m3Num.text) + 5); removeBox(); }; }; }; }; } public function removeBox():void{ if (this.hasEventListener(Event.ENTER_FRAME)){ this.removeEventListener(Event.ENTER_FRAME, boxMove); }; if (this.parent != null){ this.parent.removeChild(this); }; Cache.boxArr.splice(Cache.boxArr.indexOf(this), 1); } public static function addBox(_arg1, _arg2){ var _local3:int = Cache.boxArr.length; var _local4:int = _local3; while (_local4 < (_local3 + _arg1)) { Cache.boxArr[_local4] = MovieClip(Util.getResource((_arg2 + "MC"))); if (Util.randRange(0, 2) == 1){ Cache.boxArr[_local4].x = Util.randRange((Cache.hero.x - 300), Cache.hero.x); } else { Cache.boxArr[_local4].x = Util.randRange(Cache.hero.x, (Cache.hero.x + 300)); }; Cache.Layers["scene"].addChild(Cache.boxArr[_local4]); _local4++; }; } } }//package ZombieKiller
Section 23
//Cache (ZombieKiller.Cache) package ZombieKiller { import flash.display.*; public class Cache { public static var soundSwit:Boolean = false; public static var enemyArr:Array = []; public static var scene:MovieClip = null; public static var level:Number = 1; public static var boxArr:Array = []; public static var scene3_Length:Number = 8; public static var scene1_Length:Number = 7; public static var totalKilled:Number = 0; public static var Layers:Array = []; public static var pauseSwit:Boolean = false; public static var boss:MovieClip = null; public static var totalWidth:Number = 0; public static var backGroundArr:Array = []; public static var sceneArr:Array = []; public static var heroHealth:int = 100; public static var totalTime:Number = 0; public static var main:Main = null; public static var hero:Hero = null; public static var scene2_Length:Number = 7; public static function reset():void{ Cache.totalKilled = 0; Cache.totalTime = 0; Cache.heroHealth = 35; Cache.enemyArr.splice(0, Cache.enemyArr.length); if (Cache.main.tool != null){ MovieClip(Cache.main.tool).weapon.gotoAndStop("m1"); MovieClip(Cache.main.tool).m2Num.text = "10"; MovieClip(Cache.main.tool).m3Num.text = "5"; MovieClip(Cache.main.tool).killedTxt.text = "0"; }; } } }//package ZombieKiller
Section 24
//Enemy (ZombieKiller.Enemy) package ZombieKiller { import flash.display.*; import flash.geom.*; import myUtil.*; public class Enemy extends MovieClip { var enemyHealth:int;// = 10 var easingSpeed:Number;// = 0 var initSpeed:Number;// = 10 var canJump:Boolean;// = false var enemySpeed:Number;// = 0 var grav:Number;// = 0.5 var maxEnemySpeed:Number;// = 15 var noWay:Number;// = 0 var enemyName:String;// = "" var jumping:Boolean;// = false var jump:Boolean;// = false var jumpSpeed:Number;// = 0 public function Enemy(){ if (Util.randRange(0, 1) == 0){ this.x = Util.randRange((Cache.hero.x + 350), (Cache.hero.x + 500)); } else { this.x = Util.randRange((Cache.hero.x - 500), (Cache.hero.x - 350)); }; this.y = 400; this.scaleX = (scaleY = 0.5); this.gotoAndPlay("standBy"); this.cacheAsBitmap = true; } public function run():void{ enemyMove(); if (this.currentLabel == "dead"){ removeEnemy(); }; if (((((((((!((this.currentLabel == "death"))) && (!((this.currentLabel == "dead"))))) && (!((Cache.hero.currentLabel == "death"))))) && (!((this.currentLabel == "jump"))))) && (!((this.currentLabel == "fall"))))){ attack(); }; } public function attack():void{ if (this.hitTestObject(Cache.hero)){ if (this.currentLabel != "attack"){ this.gotoAndPlay("attack"); Cache.heroHealth = (Cache.heroHealth - 1); Cache.hero.transform.colorTransform = new ColorTransform(3, 3, 3, 1); }; }; } public function enemyMove():void{ if (((((!((this.currentLabel == "death"))) && (!((this.currentLabel == "dead"))))) && (!((Cache.hero.currentLabel == "death"))))){ if (this.hitTestObject(Cache.hero)){ enemySpeed = 0; } else { if (this.hitTestObject(Cache.hero) == false){ if (this.x < Cache.hero.x){ enemySpeed = (initSpeed * easingSpeed); } else { if (this.x > Cache.hero.x){ enemySpeed = (-(initSpeed) * easingSpeed); }; }; }; }; } else { enemySpeed = 0; }; if (enemySpeed > 0){ this.scaleX = Math.abs(this.scaleX); if ((Cache.scene.hitTestPoint((this.x + 20), (this.y - 20), true) == false)){ this.x = (this.x + enemySpeed); }; } else { if (enemySpeed < 0){ this.scaleX = -(Math.abs(this.scaleX)); if (Cache.scene.hitTestPoint((this.x - 20), (this.y - 20), true) == false){ this.x = (this.x + enemySpeed); }; }; }; var _local1:Number = 0; while ((((Cache.scene.hitTestPoint(this.x, (this.y + 2), true) == false)) && ((_local1 < 18)))) { this.y = (this.y + 1); _local1++; }; while (Cache.scene.hitTestPoint(this.x, this.y, true)) { this.y = (this.y - 3); }; if (((canJump) && (!((((((this.currentLabel == "death")) || ((this.currentLabel == "dead")))) || ((Cache.hero.currentLabel == "death"))))))){ jumpAction(); }; if (((!((Math.abs(enemySpeed) == 0))) && (Cache.scene.hitTestPoint(this.x, (this.y + 5), true)))){ if ((((this.currentLabel == "standBy")) || ((this.currentLabel == "fall")))){ if (this.currentLabel != "move"){ this.gotoAndPlay("move"); }; }; }; if ((((Math.abs(enemySpeed) == 0)) && (Cache.scene.hitTestPoint(this.x, (this.y + 5), true)))){ if ((((this.currentLabel == "move")) || ((this.currentLabel == "fall")))){ if (this.currentLabel != "standBy"){ this.gotoAndPlay("standBy"); }; }; }; enemySpeed = 0; } public function jumpAction():void{ if (((Cache.scene.hitTestPoint((this.x + 20), (this.y - 20), true)) || (Cache.scene.hitTestPoint((this.x - 20), (this.y - 20), true)))){ jumpSpeed = 50; if (((!((this.currentLabel == "jump"))) && (!((this.currentLabel == "fall"))))){ this.gotoAndPlay("jump"); }; }; if ((((jumpSpeed > 0)) && ((Cache.scene.hitTestPoint(this.x, (this.y - 80), true) == false)))){ this.y = (this.y - jumpSpeed); } else { jumpSpeed = 0; }; jumpSpeed = (jumpSpeed - (jumpSpeed / 10)); if (Cache.scene.hitTestPoint(this.x, (this.y + 5), true)){ jumpSpeed = 0; }; } public function removeEnemy():void{ if (this.parent != null){ this.parent.removeChild(this); }; Cache.enemyArr.splice(Cache.enemyArr.indexOf(this), 1); } } }//package ZombieKiller
Section 25
//EnemyGroup (ZombieKiller.EnemyGroup) package ZombieKiller { import flash.display.*; import myUtil.*; public class EnemyGroup { public static function addEnemy(_arg1:int, _arg2:String){ var _local3:int; while (_local3 < _arg1) { Cache.enemyArr.push(MovieClip(Util.getResource((_arg2 + "MC")))); Cache.Layers["enemy"].addChild(Cache.enemyArr[(Cache.enemyArr.length - 1)]); _local3++; }; } } }//package ZombieKiller
Section 26
//GameOver (ZombieKiller.GameOver) package ZombieKiller { import flash.events.*; import flash.display.*; import flash.text.*; import flash.net.*; public class GameOver extends MovieClip { public var totalScoreTxt:TextField; public var timeTxt:TextField; public var btnMoreGames:SimpleButton; public var btnNextGames:SimpleButton; public var killedTxt:TextField; public var btnBackToMenu:SimpleButton; public function GameOver(){ btnBackToMenu.addEventListener(MouseEvent.CLICK, playAgainProcess); btnMoreGames.addEventListener(MouseEvent.CLICK, moreGamesProcess); btnNextGames.addEventListener(MouseEvent.CLICK, nextGamesProcess); killedTxt.text = String(Cache.totalKilled); timeTxt.text = String(Cache.totalTime); totalScoreTxt.text = String(Math.round(((Cache.totalKilled / Cache.totalTime) * 100))); } function nextGamesProcess(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.onlineaddicted.com"), "_blank"); } function playAgainProcess(_arg1:MouseEvent):void{ this.parent.removeChild(this); Cache.main.restart(); } function moreGamesProcess(_arg1:MouseEvent):void{ var _local2:URLRequest = new URLRequest("http://www.gamebusted.com"); navigateToURL(_local2, "_blank"); } } }//package ZombieKiller
Section 27
//GreenGhost (ZombieKiller.GreenGhost) package ZombieKiller { public class GreenGhost extends Enemy { public function GreenGhost(){ enemyHealth = 50; easingSpeed = 0.5; canJump = true; jumpSpeed = 60; } } }//package ZombieKiller
Section 28
//Hero (ZombieKiller.Hero) package ZombieKiller { import flash.display.*; import flash.events.*; import flash.geom.*; import myUtil.*; import flash.media.*; import flash.ui.*; public class Hero extends MovieClip { public var gun:MovieClip; var canMove:Boolean;// = false var isShot:Boolean;// = false var moveRight:Boolean;// = false var charSpeed:Number;// = 0 var weapon1:MovieClip;// = null var weapon3:MovieClip;// = null var shotSound1:Sound; var weapon2:MovieClip;// = null var canJump:Boolean;// = false var shotSound2:Sound; var canShot:Boolean;// = false var moveLeft:Boolean;// = false var jumpSpeed:Number;// = 0 public function Hero(){ this.scaleX = (scaleY = 0.5); this.gotoAndPlay("standBy"); this.x = 480; this.y = 430; this.cacheAsBitmap = true; Cache.hero = this; Cache.main.stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDown); Cache.main.stage.addEventListener(KeyboardEvent.KEY_UP, keyUp); Cache.main.stage.addEventListener(MouseEvent.MOUSE_DOWN, mouseDown); Cache.main.stage.addEventListener(MouseEvent.MOUSE_UP, mouseUp); Cache.main.stage.addEventListener(FocusEvent.FOCUS_OUT, handleFocus); shotSound1 = new ShotSound1(); shotSound2 = new ShotSound2(); } public function removeHeroListener():void{ this.charSpeed = 0; this.canJump = false; this.canShot = false; if (Cache.main.stage.hasEventListener(KeyboardEvent.KEY_DOWN)){ Cache.main.stage.removeEventListener(KeyboardEvent.KEY_DOWN, keyDown); }; if (Cache.main.stage.hasEventListener(KeyboardEvent.KEY_UP)){ Cache.main.stage.removeEventListener(KeyboardEvent.KEY_UP, keyUp); }; if (Cache.main.stage.hasEventListener(MouseEvent.MOUSE_DOWN)){ Cache.main.stage.removeEventListener(MouseEvent.MOUSE_DOWN, mouseDown); }; if (Cache.main.stage.hasEventListener(MouseEvent.MOUSE_UP)){ Cache.main.stage.removeEventListener(MouseEvent.MOUSE_UP, mouseUp); }; } public function charMove():void{ if (this.currentLabel != "death"){ if (((!((this.gun == null))) && (!((this.gun.gun == null))))){ this.gun.rotation = ((Math.atan2(((this.mouseY + 110) - this.gun.gun.y), (this.mouseX - this.gun.gun.x)) * 180) / Math.PI); }; }; this.transform.colorTransform = new ColorTransform(0.6, 0.6, 0.8, 1); if ((((this.parent.mouseX > this.x)) && (!((this.currentLabel == "death"))))){ this.scaleX = Math.abs(this.scaleX); }; if ((((this.parent.mouseX <= this.x)) && (!((this.currentLabel == "death"))))){ this.scaleX = -(Math.abs(this.scaleX)); }; if (((canJump) && (((Cache.scene.hitTestPoint(this.x, (this.y + 3), true)) || (Cache.scene.hitTestPoint(this.x, this.y, true)))))){ if (this.currentLabel != "jump"){ this.gotoAndPlay("jump"); }; jumpSpeed = 60; }; if ((((jumpSpeed > 0)) && ((Cache.scene.hitTestPoint(this.x, (this.y - 80), true) == false)))){ this.y = (this.y - jumpSpeed); } else { jumpSpeed = 0; }; jumpSpeed = (jumpSpeed - (jumpSpeed / 10)); if (moveLeft){ charSpeed = -10; }; if (moveRight){ charSpeed = 10; }; if (charSpeed > 0){ if (Cache.scene.hitTestPoint((this.x + 10), (this.y - 10), true) == false){ this.x = (this.x + charSpeed); }; } else { if (charSpeed < 0){ if (Cache.scene.hitTestPoint((this.x - 10), (this.y - 10), true) == false){ this.x = (this.x + charSpeed); }; }; }; var _local1:Number = 0; while ((((Cache.scene.hitTestPoint(this.x, (this.y + 2), true) == false)) && ((_local1 < 18)))) { this.y = (this.y + 1.4); _local1++; }; while (Cache.scene.hitTestPoint(this.x, this.y, true)) { this.y = (this.y - 1); }; if (Cache.scene.hitTestPoint(this.x, (this.y + 5), true)){ jumpSpeed = 0; }; if (((!((Math.abs(charSpeed) == 0))) && (Cache.scene.hitTestPoint(this.x, (this.y + 5), true)))){ if ((((((((this.currentLabel == "standBy")) || ((this.currentLabel == "fall")))) || ((this.currentLabel == "backwardmove")))) || ((this.currentLabel == "move")))){ if ((((((charSpeed > 0)) && ((this.scaleX > 0)))) || ((((charSpeed < 0)) && ((this.scaleX < 0)))))){ if (this.currentLabel != "move"){ this.gotoAndPlay("move"); }; }; if ((((((charSpeed > 0)) && ((this.scaleX < 0)))) || ((((charSpeed < 0)) && ((this.scaleX > 0)))))){ if (this.currentLabel != "backwardmove"){ this.gotoAndPlay("backwardmove"); }; }; }; }; if ((((Math.abs(charSpeed) == 0)) && (Cache.scene.hitTestPoint(this.x, (this.y + 5), true)))){ if ((((((this.currentLabel == "move")) || ((this.currentLabel == "backwardmove")))) || ((this.currentLabel == "fall")))){ if (this.currentLabel != "standBy"){ this.gotoAndPlay("standBy"); }; }; }; } function attack():void{ if (this.scaleX > 0){ if (Cache.scene.hitTestPoint((this.x - 20), (this.y - 20), true) == false){ this.x = (this.x - 2); }; } else { if (this.scaleX < 0){ if (Cache.scene.hitTestPoint((this.x + 20), (this.y - 20), true) == false){ this.x = (this.x + 2); }; }; }; if (Cache.main.tool.weapon.currentLabel == "m1"){ weapon1 = MovieClip(Util.getResource("m1")); Cache.Layers["weapon"].addChild(weapon1); if (this.gun.currentLabel != "shot1"){ this.gun.gotoAndPlay("shot1"); }; shotSound1.play(); } else { if (Cache.main.tool.weapon.currentLabel == "m2"){ if (Cache.main.tool.m2Num.text > 0){ weapon2 = MovieClip(Util.getResource("m2")); Cache.Layers["weapon"].addChild(weapon2); Cache.main.tool.m2Num.text = (Number(Cache.main.tool.m2Num.text) - 1); if (this.gun.currentLabel != "shot2"){ this.gun.gotoAndPlay("shot2"); }; shotSound2.play(); }; } else { if (Cache.main.tool.weapon.currentLabel == "m3"){ if (Cache.main.tool.m3Num.text > 0){ weapon3 = MovieClip(Util.getResource("m3")); Cache.Layers["weapon"].addChild(weapon3); Cache.main.tool.m3Num.text = (Number(Cache.main.tool.m3Num.text) - 1); if (this.gun.currentLabel != "shot3"){ this.gun.gotoAndPlay("shot3"); }; }; }; }; }; } public function handleFocus(_arg1:FocusEvent):void{ this.canJump = false; this.canShot = false; Util.setStageFocus(Cache.main.stage); } public function run():void{ charMove(); if (((canShot) && (!(isShot)))){ isShot = true; if (((!((this.gun == null))) && (!((this.gun.gun == null))))){ attack(); }; }; } public function keyUp(_arg1:KeyboardEvent):void{ if ((((_arg1.keyCode == 39)) || ((_arg1.keyCode == 68)))){ moveRight = false; charSpeed = 0; } else { if ((((_arg1.keyCode == 37)) || ((_arg1.keyCode == 65)))){ moveLeft = false; charSpeed = 0; } else { if ((((_arg1.keyCode == 38)) || ((_arg1.keyCode == 87)))){ canJump = false; }; }; }; } public function mouseUp(_arg1:MouseEvent):void{ this.canShot = false; isShot = false; } public function keyDown(_arg1:KeyboardEvent):void{ if ((((_arg1.keyCode == 39)) || ((_arg1.keyCode == 68)))){ moveRight = true; } else { if ((((_arg1.keyCode == 37)) || ((_arg1.keyCode == 65)))){ moveLeft = true; } else { if ((((_arg1.keyCode == 38)) || ((_arg1.keyCode == 87)))){ canJump = true; } else { if (_arg1.keyCode == 49){ Cache.main.tool.weapon.gotoAndStop("m1"); this.gun.gun.gotoAndStop(1); } else { if (_arg1.keyCode == 50){ Cache.main.tool.weapon.gotoAndStop("m2"); this.gun.gun.gotoAndStop(2); } else { if (_arg1.keyCode == 51){ Cache.main.tool.weapon.gotoAndStop("m3"); this.gun.gun.gotoAndStop(3); } else { if (_arg1.keyCode == 81){ if (Cache.main.tool.weapon.currentLabel == "m1"){ Cache.main.tool.weapon.gotoAndStop("m2"); this.gun.gun.gotoAndStop(2); } else { if (Cache.main.tool.weapon.currentLabel == "m2"){ Cache.main.tool.weapon.gotoAndStop("m3"); this.gun.gun.gotoAndStop(3); } else { if (Cache.main.tool.weapon.currentLabel == "m3"){ Cache.main.tool.weapon.gotoAndStop("m1"); this.gun.gun.gotoAndStop(1); }; }; }; }; }; }; }; }; }; }; } public function mouseDown(_arg1:MouseEvent):void{ this.canShot = true; } } }//package ZombieKiller
Section 29
//Instruction (ZombieKiller.Instruction) package ZombieKiller { import flash.events.*; import flash.display.*; import myUtil.*; public class Instruction extends MovieClip { public var btnStartGame:SimpleButton; public var btnBackToMenu:SimpleButton; public function Instruction(){ btnStartGame.addEventListener(MouseEvent.CLICK, startGameProcess); btnBackToMenu.addEventListener(MouseEvent.CLICK, backToMenuProcess); } function startGameProcess(_arg1:MouseEvent):void{ Cache.main.startGame(); } function backToMenuProcess(_arg1:MouseEvent):void{ this.parent.removeChild(this); var _local2:MovieClip = MovieClip(Util.getResource("StartGameMC")); Cache.Layers["background"].addChild(_local2); } } }//package ZombieKiller
Section 30
//Knife (ZombieKiller.Knife) package ZombieKiller { import flash.events.*; import flash.display.*; import flash.media.*; import flash.geom.*; import myUtil.*; public class Knife extends MovieClip { private var vx:Number;// = 0 private var vy:Number;// = 0 private var ox:Number;// = 0 public var knifePoint:Point; private var count:Number;// = 0 private var speedX:Number;// = 0 private var speedY:Number;// = 0 private var hitSound:Sound; public function Knife(){ this.gotoAndStop(1); this.scaleX = (scaleY = 0.6); this.addEventListener(Event.ENTER_FRAME, knifeMove); hitSound = new knifeHitSound(); } public function removeKnife():void{ if (((!((this.parent == null))) && (!((this.parent.numChildren == 0))))){ this.parent.removeChild(this); }; if (this.hasEventListener(Event.ENTER_FRAME)){ this.removeEventListener(Event.ENTER_FRAME, knifeMove); }; } public function knifeMove(_arg1:Event):void{ count++; if (count == 1){ ox = this.x; this.rotation = ((Math.atan2(((Cache.hero.y - 50) - this.y), (Cache.hero.x - this.x)) * 180) / Math.PI); speedX = ((Cache.hero.x - this.x) * 0.1); speedY = (((Cache.hero.y - 50) - this.y) * 0.1); }; if (Cache.scene.hitTestPoint(this.x, this.y, true)){ vx = 0; vy = 0; if (Util.randRange(0, 50) == 16){ removeKnife(); }; } else { if (Math.abs((ox - this.x)) > 300){ vx = 0; vy = 0; removeKnife(); } else { vx = speedX; vy = speedY; }; }; this.x = (this.x + vx); this.y = (this.y + vy); if (Cache.hero.hitTestPoint(this.x, this.y, true)){ hitSound.play(); Cache.heroHealth = (Cache.heroHealth - 1); Cache.hero.transform.colorTransform = new ColorTransform(3, 3, 3, 1); removeKnife(); }; } } }//package ZombieKiller
Section 31
//LevelFinished (ZombieKiller.LevelFinished) package ZombieKiller { import flash.events.*; import flash.display.*; import flash.text.*; import flash.net.*; public class LevelFinished extends MovieClip { public var btnNextGame:SimpleButton; public var timeTxt:TextField; public var totalScoreTxt:TextField; public var levelTxt:TextField; public var btnMoreGames:SimpleButton; public var killedTxt:TextField; public var btnNextLevel:SimpleButton; public function LevelFinished(){ btnNextLevel.addEventListener(MouseEvent.CLICK, nextLevelProcess); btnNextGame.addEventListener(MouseEvent.CLICK, nextGameProcess); btnMoreGames.addEventListener(MouseEvent.CLICK, moreGamesProcess); killedTxt.text = String(Cache.totalKilled); timeTxt.text = String(Cache.totalTime); totalScoreTxt.text = String(Math.round(((Cache.totalKilled / Cache.totalTime) * 100))); levelTxt.text = String(Cache.level); } function nextGameProcess(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.onlineaddicted.com"), "_blank"); } function moreGamesProcess(_arg1:MouseEvent):void{ var _local2:URLRequest = new URLRequest("http://www.gamebusted.com"); navigateToURL(_local2, "_blank"); } function nextLevelProcess(_arg1:MouseEvent):void{ this.parent.removeChild(this); Cache.main.nextLevel(); } } }//package ZombieKiller
Section 32
//Main (ZombieKiller.Main) package ZombieKiller { import flash.display.*; import flash.events.*; import mochi.as3.*; import myUtil.*; import flash.media.*; import flash.net.*; import flash.ui.*; public dynamic class Main extends MovieClip { var healthTotal:int;// = 35 var bgSound:Sound; var gbLogo_mc:GBLogoRotating; var initRate:Number;// = 0 var startPage:MovieClip; var bossAdded:Boolean;// = false var cursor:MovieClip; var bgsoundChen:SoundChannel; public var gb:GB; var tool:MovieClip; var backGroundSoundChannel:SoundChannel; var addBoss:Boolean;// = false var timeCounter:Number;// = 0 var hero:MovieClip; public function Main(){ addFrameScript(0, frame1, 1, frame2, 9, frame10); } public function onEnterFrame(_arg1:Event):void{ var _local2:Number; if (Cache.hero.parent == null){ return; }; if (Cache.scene == null){ return; }; toolDisplay(); Cache.hero.run(); generateBox(); generateEnemy(); levelCheck(); if (Cache.enemyArr != null){ _local2 = 0; while (_local2 < Cache.enemyArr.length) { if (Cache.enemyArr[_local2] != null){ Cache.enemyArr[_local2].run(); }; if (((((!((Cache.enemyArr[_local2] == null))) && (!((((Cache.enemyArr[_local2] is Boss1)) || ((Cache.enemyArr[_local2] is Boss2))))))) && ((((Math.abs((Cache.hero.x - Cache.enemyArr[_local2].x)) > 900)) || ((Math.abs((Cache.hero.y - Cache.enemyArr[_local2].y)) > 900)))))){ Cache.enemyArr[_local2].removeEnemy(); }; _local2++; }; }; this.x = (300 - Cache.hero.x); } private function removeLayers():void{ while (Cache.Layers["background"].numChildren > 0) { Cache.Layers["background"].removeChildAt(0); }; while (Cache.Layers["scene"].numChildren > 0) { Cache.Layers["scene"].removeChildAt(0); }; while (Cache.Layers["weapon"].numChildren > 0) { Cache.Layers["weapon"].removeChildAt(0); }; while (Cache.Layers["enemy"].numChildren > 0) { Cache.Layers["enemy"].removeChildAt(0); }; while (Cache.Layers["charactor"].numChildren > 0) { Cache.Layers["charactor"].removeChildAt(0); }; } function frame10(){ stop(); startIt(); } function toolDisplay():void{ if (this.tool == null){ return; }; timeCounter++; Cache.totalTime = Math.round((timeCounter / initRate)); if (tool != null){ tool.timeTxt.text = Cache.totalTime; }; tool.healthBar.bar.scaleX = (Cache.heroHealth / healthTotal); if (tool.healthBar.bar.scaleX >= 1){ tool.healthBar.bar.scaleX = 1; } else { if (tool.healthBar.bar.scaleX <= 0){ tool.healthBar.bar.scaleX = 0; }; }; } function generateEnemy():void{ if (Math.abs(Cache.hero.x) >= (Cache.totalWidth - 2000)){ addBoss = true; }; if (((addBoss) && (!(bossAdded)))){ if ((((Cache.level == 1)) && ((Cache.totalKilled >= 50)))){ EnemyGroup.addEnemy(1, "Boss1"); trace(Cache.boss); bossAdded = true; } else { if ((((Cache.level == 2)) && ((Cache.totalKilled >= 80)))){ EnemyGroup.addEnemy(1, "Boss2"); trace(Cache.boss); bossAdded = true; } else { if ((((Cache.level == 3)) && ((Cache.totalKilled >= 120)))){ EnemyGroup.addEnemy(1, "Boss3"); trace(Cache.boss); bossAdded = true; }; }; }; }; if (Cache.enemyArr.length < 2){ if ((((((Cache.level == 1)) && ((Cache.totalKilled <= 50)))) && ((Math.abs(Cache.hero.x) <= (Cache.totalWidth - 1000))))){ EnemyGroup.addEnemy(2, "Zombie"); if (Math.abs(Cache.hero.x) >= (Cache.totalWidth / 2)){ EnemyGroup.addEnemy(3, "Skeleton"); } else { EnemyGroup.addEnemy(3, "Zombie"); }; } else { if ((((((Cache.level == 2)) && ((Cache.totalKilled <= 80)))) && ((Math.abs(Cache.hero.x) <= (Cache.totalWidth - 1000))))){ if (Util.randRange(0, 1) == 0){ EnemyGroup.addEnemy(2, "Witch"); EnemyGroup.addEnemy(3, "Skeleton"); EnemyGroup.addEnemy(1, "GreenGhost"); } else { if (Util.randRange(0, 1) == 1){ EnemyGroup.addEnemy(2, "Skeleton"); EnemyGroup.addEnemy(3, "Witch"); }; }; } else { if ((((((Cache.level == 3)) && ((Cache.totalKilled <= 120)))) && ((Math.abs(Cache.hero.x) <= (Cache.totalWidth - 1000))))){ if (Util.randRange(0, 1) == 0){ EnemyGroup.addEnemy(2, "Witch"); EnemyGroup.addEnemy(1, "Skeleton"); EnemyGroup.addEnemy(2, "GreenGhost"); } else { if (Util.randRange(0, 1) == 1){ EnemyGroup.addEnemy(1, "Witch"); EnemyGroup.addEnemy(2, "Skeleton"); EnemyGroup.addEnemy(2, "GreenGhost"); }; }; }; }; }; }; } public function levelFinished():void{ removeLayers(); bgsoundChen.stop(); var _local1:MovieClip = MovieClip(Util.getResource("LevelFinishedMC")); Cache.Layers["alert"].addChild(_local1); _local1.x = -(this.x); _local1.y = -(this.y); tool.visible = false; Cache.reset(); Cache.level++; } public function win():void{ removeLayers(); Cache.enemyArr.splice(0, Cache.enemyArr.length); var _local1:MovieClip = MovieClip(Util.getResource("WinMC")); Cache.Layers["alert"].addChild(_local1); tool.visible = false; _local1.x = -(this.x); _local1.y = -(this.y); Cache.reset(); addBoss = false; bossAdded = false; this.x = (this.y = 0); } function levelCheck():void{ if (Cache.heroHealth <= 0){ Cache.hero.removeHeroListener(); if (Cache.hero.currentLabel != "death"){ Cache.hero.gotoAndPlay("death"); }; }; if (((!((Cache.boss == null))) && ((Cache.boss.currentLabel == "dead")))){ Cache.boss.removeEnemy(); Cache.boss = null; if ((((Cache.level == 1)) || ((Cache.level == 2)))){ levelFinished(); } else { if (Cache.level == 3){ win(); }; }; }; } public function restart():void{ removeLayers(); if (tool.parent != null){ tool.parent.removeChild(tool); }; Cache.enemyArr.splice(0, Cache.enemyArr.length); addBoss = false; bossAdded = false; Cache.level = 1; Cache.Layers["alert"].addChild(startPage); startPage.x = -(this.x); startPage.y = -(this.y); } function frame1(){ stop(); MochiAd.showPreGameAd({clip:root, id:"381f92dc7beaf029", res:"670x480"}); } public function startIt(){ var gotoURL:Function; gotoURL = function (_arg1:MouseEvent){ navigateToURL(new URLRequest("http://www.gamebusted.com/"), "_blank"); }; Util.initLayers(this); bgSound = new BackgroundSound1(); startPage = MovieClip(Util.getResource("StartGameMC")); Cache.Layers["background"].addChild(startPage); Cache.main = this; initRate = this.stage.frameRate; gbLogo_mc = new GBLogoRotating(); gbLogo_mc.buttonMode = true; gbLogo_mc.addEventListener(MouseEvent.CLICK, gotoURL); gbLogo_mc.x = 100; gbLogo_mc.y = 440; gbLogo_mc.name = "gbLogo_mc"; this.addChild(gbLogo_mc); } public function gameOver():void{ removeLayers(); if (Cache.hero.parent != null){ Cache.hero.parent.removeChild(Cache.hero); }; Cache.enemyArr.splice(0, Cache.enemyArr.length); var _local1:MovieClip = MovieClip(Util.getResource("GameOverMC")); Cache.Layers["alert"].addChild(_local1); tool.visible = false; _local1.x = -(this.x); _local1.y = -(this.y); } function generateBox():void{ if (Util.randRange(0, 30) == 10){ if (Util.randRange(0, 40) == 1){ Box.addBox(1, "Box1"); } else { if (Util.randRange(0, 40) == 8){ Box.addBox(1, "Box2"); } else { if (Util.randRange(0, 40) == 12){ Box.addBox(1, "Box3"); }; }; }; }; } public function startGame(){ while (Cache.Layers["background"].numChildren > 0) { Cache.Layers["background"].removeChildAt(0); }; tool = MovieClip(Util.getResource("ToolsMC")); tool.visible = true; this.parent.addChild(tool); this.parent.setChildIndex(tool, (this.parent.numChildren - 1)); this.parent.addChildAt(gbLogo_mc, (this.parent.numChildren - 1)); Cache.reset(); timeCounter = 0; var _local1:* = new BackGround(); var _local2:* = new Scene(); Cache.scene = Cache.Layers["scene"]; Cache.scene.cacheAsBitmap = true; Cache.Layers["background"].cacheAsBitmap = true; hero = MovieClip(Util.getResource("HeroMC")); Cache.Layers["charactor"].addChild(hero); addBoss = false; bossAdded = false; Cache.reset(); Util.setStageFocus(Cache.main.stage); bgsoundChen = bgSound.play(0, 1000); this.addEventListener(Event.ENTER_FRAME, onEnterFrame); } function frame2(){ stop(); } public function nextLevel():void{ removeLayers(); Cache.reset(); timeCounter = 0; tool.visible = true; addBoss = false; bossAdded = false; var _local1:* = new BackGround(); var _local2:* = new Scene(); Cache.scene = Cache.Layers["scene"]; var _local3:MovieClip = MovieClip(Util.getResource("HeroMC")); Cache.Layers["charactor"].addChild(_local3); Util.setStageFocus(Cache.main.stage); if (Cache.level == 2){ bgSound = new BackgroundSound2(); }; if (Cache.level == 3){ bgSound = new BackgroundSound3(); }; bgsoundChen = bgSound.play(0, 1000); } } }//package ZombieKiller
Section 33
//Scene (ZombieKiller.Scene) package ZombieKiller { import flash.display.*; import myUtil.*; public class Scene extends MovieClip { var ss:String; var s:String;// = "" public function Scene(){ Cache.totalWidth = 0; while (Cache.Layers["scene"].numChildren > 0) { Cache.Layers["scene"].removeChildAt(0); }; Cache.sceneArr.splice(0, Cache.sceneArr.length); if (Cache.level == 1){ addScene("scene1_", Cache.scene1_Length); } else { if (Cache.level == 2){ addScene("scene2_", Cache.scene2_Length); } else { if (Cache.level == 3){ addScene("scene3_", Cache.scene3_Length); }; }; }; } public function addScene(_arg1:String, _arg2:Number):void{ this.s = _arg1; var _local3:int; while (_local3 < _arg2) { ss = String(_local3); s = s.concat(ss); Cache.sceneArr[_local3] = Util.getResource(s); Cache.sceneArr[0].x = 0; if (_local3 > 0){ Cache.sceneArr[_local3].x = ((Cache.sceneArr[(_local3 - 1)].x + Cache.sceneArr[(_local3 - 1)].width) - 1); }; Cache.totalWidth = (Cache.totalWidth + Cache.sceneArr[_local3].width); Cache.sceneArr[_local3].cacheAsBitmap = true; Cache.Layers["scene"].addChildAt(Cache.sceneArr[_local3], _local3); this.s = _arg1; _local3++; }; } } }//package ZombieKiller
Section 34
//Skeleton (ZombieKiller.Skeleton) package ZombieKiller { public class Skeleton extends Enemy { public function Skeleton(){ enemyHealth = 50; easingSpeed = 0.6; canJump = false; jumpSpeed = 60; } } }//package ZombieKiller
Section 35
//StartGame (ZombieKiller.StartGame) package ZombieKiller { import flash.events.*; import flash.display.*; import flash.net.*; import myUtil.*; public class StartGame extends MovieClip { public var btnInstructions:SimpleButton; public var btnMoreGames:SimpleButton; public var btnStartGame:SimpleButton; public var btnAddictingGame:SimpleButton; public function StartGame(){ btnStartGame.addEventListener(MouseEvent.CLICK, startGameProcess); btnAddictingGame.addEventListener(MouseEvent.CLICK, addictingGameProcess); btnMoreGames.addEventListener(MouseEvent.CLICK, moreGameProcess); btnInstructions.addEventListener(MouseEvent.CLICK, instructionsProcess); } function moreGameProcess(_arg1:MouseEvent):void{ var _local2:URLRequest = new URLRequest("http://www.gamebusted.com"); navigateToURL(_local2, "_blank"); } function instructionsProcess(_arg1:MouseEvent):void{ this.parent.removeChild(this); var _local2:MovieClip = MovieClip(Util.getResource("InstructionMC")); Cache.Layers["background"].addChild(_local2); } function addictingGameProcess(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.onlineaddicted.com"), "_blank"); } function startGameProcess(_arg1:MouseEvent):void{ this.parent.removeChild(this); Cache.main.startGame(); } } }//package ZombieKiller
Section 36
//Tools (ZombieKiller.Tools) package ZombieKiller { import flash.events.*; import flash.display.*; import flash.text.*; public class Tools extends MovieClip { public var m3Num:TextField; public var m2Num:TextField; public var timeTxt:TextField; public var killedTxt:TextField; public var healthBar:MovieClip; public var btnPause:SimpleButton; public var weapon:MovieClip; var on:Boolean; public function Tools(){ btnPause.addEventListener(MouseEvent.CLICK, pauseProcess); on = true; Cache.pauseSwit = on; } public function pauseProcess(_arg1:MouseEvent):void{ if (this.parent != null){ if (on){ if (this.currentLabel != "pauseOn"){ this.gotoAndStop("pauseOn"); }; Cache.main.stage.frameRate = 0; on = false; Cache.pauseSwit = this.on; } else { if (this.currentLabel != "pauseOff"){ this.gotoAndStop("pauseOff"); }; Cache.main.stage.frameRate = Cache.main.initRate; on = true; Cache.pauseSwit = this.on; }; }; } } }//package ZombieKiller
Section 37
//Weapon (ZombieKiller.Weapon) package ZombieKiller { import flash.events.*; import flash.display.*; import flash.geom.*; import myUtil.*; public class Weapon extends MovieClip { private var vx:Number;// = 0 private var vy:Number;// = 0 private var g:Number;// = 0.8 private var dist:Number;// = 0 private var speedX:Number;// = 0 private var speedY:Number;// = 0 private var angle:Number;// = 0 private var initSpeed:Number;// = 0 private var myPoint:Point; public function Weapon(){ this.gotoAndStop(1); this.scaleX = (scaleY = 0.7); this.cacheAsBitmap = true; myPoint = Util.getLocaledPoint(Cache.hero.gun.gun.sensor, Cache.Layers["weapon"]); this.x = myPoint.x; this.y = myPoint.y; this.addEventListener(Event.ENTER_FRAME, weaponMove); this.rotation = Util.getRotation(this, Cache.Layers["weapon"]); angle = ((this.rotation * Math.PI) / 180); dist = Util.getDistanceToMouse(this, Cache.Layers["weapon"]); if ((this is m1)){ initSpeed = 15; } else { if ((((this is m2)) || ((this is m3)))){ initSpeed = (dist / 10); }; }; speedX = Util.getSpeedX(Cache.hero.x, this.y, Cache.Layers["weapon"], initSpeed); speedY = Util.getSpeedY(Cache.hero.x, this.y, Cache.Layers["weapon"], initSpeed); } public function weaponMove(_arg1:Event):void{ if (this.parent == null){ return; }; if ((((this is m1)) && ((Util.getDistanceToPoint(myPoint, this) > 800)))){ this.removeWeaponListener(); this.parent.removeChild(this); }; if (this.currentFrame == this.totalFrames){ if ((this is m3)){ this.removeWeaponListener(); this.parent.removeChild(this); } else { this.parent.removeChild(this); }; }; if (Cache.hero.scaleX > 0){ this.rotation = (this.rotation + 2); } else { this.rotation = (this.rotation - 2); }; if (Cache.scene.hitTestPoint(this.x, this.y, true) == false){ if ((this is m1)){ if ((((Math.abs((speedX * 2)) < 10)) || ((Math.abs((speedY * 2)) < 2)))){ vx = (speedX * 2); vy = (speedY * 2); } else { vx = (speedX * 1.5); vy = (speedY * 1.5); }; } else { vx = speedX; speedY = (speedY + g); vy = speedY; }; this.x = (this.x + vx); this.y = (this.y + vy); }; if (Cache.scene.hitTestPoint(this.x, this.y, true)){ this.rotation = 0; if (this.currentLabel != "explode"){ this.gotoAndPlay("explode"); if (!(this is m3)){ removeWeaponListener(); }; }; }; killEnemy(); if ((((this is m3)) && ((this.currentFrame == this.totalFrames)))){ removeWeaponListener(); }; } private function killEnemy():void{ var _local1:Number = 0; while (_local1 < Cache.enemyArr.length) { if (((((!((this is m3))) && (!((Cache.enemyArr[_local1] == null))))) && (Cache.enemyArr[_local1].hitTestPoint(this.x, this.y, true)))){ enemyBeShot(Cache.enemyArr[_local1]); if (this.currentLabel != "explode"){ this.rotation = 0; this.gotoAndPlay("explode"); if ((this is m1)){ Cache.enemyArr[_local1].enemyHealth = (Cache.enemyArr[_local1].enemyHealth - 5); } else { if ((this is m2)){ Cache.enemyArr[_local1].enemyHealth = (Cache.enemyArr[_local1].enemyHealth - 8); }; }; removeWeaponListener(); }; enemyDie(Cache.enemyArr[_local1]); }; if ((((((this is m3)) && (!((Cache.enemyArr[_local1] == null))))) && (Cache.enemyArr[_local1].hitTestObject(this)))){ enemyBeShot(Cache.enemyArr[_local1]); Cache.enemyArr[_local1].enemyHealth = (Cache.enemyArr[_local1].enemyHealth - 2); enemyDie(Cache.enemyArr[_local1]); }; _local1++; }; } public function removeWeaponListener():void{ if (this.hasEventListener(Event.ENTER_FRAME)){ this.removeEventListener(Event.ENTER_FRAME, weaponMove); }; if ((this is m1)){ Cache.hero.weapon1 = null; } else { if ((this is m2)){ Cache.hero.weapon2 = null; } else { if ((this is m3)){ Cache.hero.weapon3 = null; }; }; }; } public function enemyDie(_arg1:MovieClip):void{ if (((!((_arg1.currentLabel == "death"))) && (!((_arg1.currentLabel == "dead"))))){ if ((((((((_arg1 is Boss2)) || ((_arg1 is Boss2)))) && (!((_arg1.currentLabel == "attack"))))) && (!((_arg1.currentLabel == "hurt"))))){ _arg1.gotoAndPlay("hurt"); }; if (_arg1.enemyHealth <= 0){ _arg1.gotoAndPlay("death"); Cache.heroHealth = (Cache.heroHealth + 1); Cache.totalKilled = (Cache.totalKilled + 1); if (Cache.main.tool != null){ Cache.main.tool.killedTxt.text = String(Cache.totalKilled); }; }; }; } public function enemyBeShot(_arg1:MovieClip):void{ if (((((!((((_arg1 is Boss1)) || ((_arg1 is Boss2))))) && (!((_arg1.currentLabel == "death"))))) && (!((_arg1.currentLabel == "dead"))))){ if ((((_arg1.x > this.x)) && ((Cache.scene.hitTestPoint((_arg1.x + 50), (_arg1.y - 20), true) == false)))){ _arg1.x = (_arg1.x + 10); } else { if ((((_arg1.x < this.x)) && ((Cache.scene.hitTestPoint((_arg1.x - 50), (_arg1.y - 20), true) == false)))){ _arg1.x = (_arg1.x - 10); }; }; }; } } }//package ZombieKiller
Section 38
//Win (ZombieKiller.Win) package ZombieKiller { import flash.events.*; import flash.display.*; import flash.text.*; import flash.net.*; public class Win extends MovieClip { public var totalScoreTxt:TextField; public var timeTxt:TextField; public var btnMoreGames:SimpleButton; public var btnMainMenu:SimpleButton; public var killedTxt:TextField; public function Win(){ btnMoreGames.addEventListener(MouseEvent.CLICK, moreGamesProcess); btnMainMenu.addEventListener(MouseEvent.CLICK, mainMenuProcess); killedTxt.text = String(Cache.totalKilled); timeTxt.text = String(Cache.totalTime); totalScoreTxt.text = String((Math.round((Cache.totalKilled / Cache.totalTime)) * 100)); } function moreGamesProcess(_arg1:MouseEvent):void{ var _local2:URLRequest = new URLRequest("http://freeonlinegames.com"); navigateToURL(_local2, "_blank"); } function mainMenuProcess(_arg1:MouseEvent):void{ this.parent.removeChild(this); Cache.main.restart(); } } }//package ZombieKiller
Section 39
//Witch (ZombieKiller.Witch) package ZombieKiller { import flash.events.*; import flash.display.*; import flash.geom.*; import myUtil.*; public class Witch extends Enemy { var UsingKnife:Boolean;// = true var myPoint:Point; var knife:MovieClip; public var knifeP:knifePoint; var canUseKnife:Boolean;// = false public function Witch(){ canJump = true; enemyHealth = 30; easingSpeed = 0.3; jumpSpeed = 0; } override public function attack():void{ if (Math.abs((this.x - Cache.hero.x)) < 700){ if ((((Util.randRange(0, 100) == 19)) || (this.hitTestObject(Cache.hero)))){ if (this.currentLabel != "attack"){ this.gotoAndPlay("attack"); }; }; }; if ((((this.currentLabel == "attack")) && (!((this.knifeP == null))))){ knife = MovieClip(Util.getResource("KnifeMC")); myPoint = Util.getLocaledPoint(this.knifeP, Cache.Layers["scene"]); knife.x = myPoint.x; knife.y = myPoint.y; Cache.Layers["alert"].addChild(knife); }; } } }//package ZombieKiller
Section 40
//Zombie (ZombieKiller.Zombie) package ZombieKiller { public class Zombie extends Enemy { public function Zombie(){ enemyHealth = 20; canJump = false; easingSpeed = 0.4; jumpSpeed = 0; } } }//package ZombieKiller
Section 41
//background1_0 (background1_0) package { import flash.display.*; public dynamic class background1_0 extends MovieClip { } }//package
Section 42
//background1_1 (background1_1) package { import flash.display.*; public dynamic class background1_1 extends MovieClip { } }//package
Section 43
//background1_2 (background1_2) package { import flash.display.*; public dynamic class background1_2 extends MovieClip { } }//package
Section 44
//background1_3 (background1_3) package { import flash.display.*; public dynamic class background1_3 extends MovieClip { } }//package
Section 45
//background1_4 (background1_4) package { import flash.display.*; public dynamic class background1_4 extends MovieClip { } }//package
Section 46
//background1_5 (background1_5) package { import flash.display.*; public dynamic class background1_5 extends MovieClip { } }//package
Section 47
//background1_6 (background1_6) package { import flash.display.*; public dynamic class background1_6 extends MovieClip { } }//package
Section 48
//background2_0 (background2_0) package { import flash.display.*; public dynamic class background2_0 extends MovieClip { } }//package
Section 49
//background2_1 (background2_1) package { import flash.display.*; public dynamic class background2_1 extends MovieClip { } }//package
Section 50
//background2_2 (background2_2) package { import flash.display.*; public dynamic class background2_2 extends MovieClip { } }//package
Section 51
//background2_3 (background2_3) package { import flash.display.*; public dynamic class background2_3 extends MovieClip { } }//package
Section 52
//background2_4 (background2_4) package { import flash.display.*; public dynamic class background2_4 extends MovieClip { } }//package
Section 53
//background2_5 (background2_5) package { import flash.display.*; public dynamic class background2_5 extends MovieClip { } }//package
Section 54
//background2_6 (background2_6) package { import flash.display.*; public dynamic class background2_6 extends MovieClip { } }//package
Section 55
//background3_0 (background3_0) package { import flash.display.*; public dynamic class background3_0 extends MovieClip { } }//package
Section 56
//background3_1 (background3_1) package { import flash.display.*; public dynamic class background3_1 extends MovieClip { } }//package
Section 57
//background3_2 (background3_2) package { import flash.display.*; public dynamic class background3_2 extends MovieClip { } }//package
Section 58
//background3_3 (background3_3) package { import flash.display.*; public dynamic class background3_3 extends MovieClip { } }//package
Section 59
//background3_4 (background3_4) package { import flash.display.*; public dynamic class background3_4 extends MovieClip { } }//package
Section 60
//background3_5 (background3_5) package { import flash.display.*; public dynamic class background3_5 extends MovieClip { } }//package
Section 61
//background3_6 (background3_6) package { import flash.display.*; public dynamic class background3_6 extends MovieClip { } }//package
Section 62
//background3_7 (background3_7) package { import flash.display.*; public dynamic class background3_7 extends MovieClip { } }//package
Section 63
//BackgroundSound1 (BackgroundSound1) package { import flash.media.*; public dynamic class BackgroundSound1 extends Sound { } }//package
Section 64
//BackgroundSound2 (BackgroundSound2) package { import flash.media.*; public dynamic class BackgroundSound2 extends Sound { } }//package
Section 65
//BackgroundSound3 (BackgroundSound3) package { import flash.media.*; public dynamic class BackgroundSound3 extends Sound { } }//package
Section 66
//Boss1MC (Boss1MC) package { import ZombieKiller.*; public dynamic class Boss1MC extends Boss1 { public function Boss1MC(){ addFrameScript(0, frame1, 8, frame9, 29, frame30, 53, frame54, 75, frame76, 108, frame109); } function frame9(){ gotoAndPlay("move"); } function frame1(){ gotoAndPlay("standBy"); } function frame30(){ gotoAndPlay("standBy"); } function frame54(){ gotoAndPlay("standBy"); } function frame76(){ gotoAndPlay("standBy"); } function frame109(){ this.stop(); } } }//package
Section 67
//Boss2MC (Boss2MC) package { import ZombieKiller.*; public dynamic class Boss2MC extends Boss2 { public function Boss2MC(){ addFrameScript(32, frame33, 65, frame66, 78, frame79, 128, frame129, 146, frame147, 164, frame165, 214, frame215); } function frame165(){ this.stop(); } function frame33(){ gotoAndPlay("standBy"); } function frame147(){ gotoAndPlay("standBy"); } function frame215(){ gotoAndPlay("standBy"); } function frame129(){ gotoAndPlay("standBy"); } function frame66(){ gotoAndPlay("standBy"); } function frame79(){ this.gotoAndPlay("standBy"); } } }//package
Section 68
//Boss3MC (Boss3MC) package { import ZombieKiller.*; public dynamic class Boss3MC extends Boss1 { public function Boss3MC(){ addFrameScript(24, frame25, 60, frame61, 91, frame92, 113, frame114, 154, frame155); } function frame25(){ gotoAndPlay("standBy"); } function frame155(){ this.stop(); } function frame92(){ gotoAndPlay("standBy"); } function frame114(){ gotoAndPlay("standBy"); } function frame61(){ gotoAndPlay("move"); } } }//package
Section 69
//Box1MC (Box1MC) package { import ZombieKiller.*; public dynamic class Box1MC extends Box { } }//package
Section 70
//Box2MC (Box2MC) package { import ZombieKiller.*; public dynamic class Box2MC extends Box { } }//package
Section 71
//Box3MC (Box3MC) package { import ZombieKiller.*; public dynamic class Box3MC extends Box { } }//package
Section 72
//dude (dude) package { import flash.display.*; public dynamic class dude extends MovieClip { public function dude(){ addFrameScript(9, frame10); } function frame10(){ gotoAndPlay(5); } } }//package
Section 73
//GameOverMC (GameOverMC) package { import ZombieKiller.*; public dynamic class GameOverMC extends GameOver { } }//package
Section 74
//GB (GB) package { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.utils.*; import flash.media.*; import flash.text.*; import flash.system.*; import flash.net.*; import flash.ui.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.printing.*; import flash.profiler.*; import flash.sampler.*; import flash.xml.*; public dynamic class GB extends MovieClip { public var playBtn_mc:PlayBtn; public var AS:dude; public var bar:MovieClip; public var btn1:SimpleButton; public var btn2:SimpleButton; public function GB(){ addFrameScript(0, frame1, 2, frame3, 3, frame4, 119, frame120, 121, frame122); } function frame120(){ MovieClip(root).gotoAndStop(10); } function frame4(){ btn1.addEventListener(MouseEvent.CLICK, gotoURL); } function frame3(){ stop(); playBtn_mc.buttonMode = true; playBtn_mc.addEventListener(MouseEvent.ROLL_OVER, over); playBtn_mc.addEventListener(MouseEvent.ROLL_OUT, out); playBtn_mc.addEventListener(MouseEvent.CLICK, rel); } function frame1(){ stop(); if (root.loaderInfo.bytesLoaded == root.loaderInfo.bytesTotal){ this.gotoAndStop(3); }; root.loaderInfo.addEventListener(ProgressEvent.PROGRESS, doIt); btn2.addEventListener(MouseEvent.CLICK, gotoURL2); } public function out(_arg1:MouseEvent){ _arg1.target.gotoAndStop("up"); } public function over(_arg1:MouseEvent){ _arg1.target.gotoAndStop("over"); } public function rel(_arg1:MouseEvent){ _arg1.target.gotoAndStop("rel"); this.play(); } public function gotoURL(_arg1:MouseEvent){ navigateToURL(new URLRequest("http://www.onlineaddicted.com/"), "_blank"); } function frame122(){ stop(); } public function doIt(_arg1:ProgressEvent){ var _local2:Number = (Math.round(((_arg1.bytesLoaded / _arg1.bytesTotal) * 100)) / 100); if (_local2 < 1){ bar.scaleX = _local2; } else { this.gotoAndStop(3); }; } public function gotoURL2(_arg1:MouseEvent){ navigateToURL(new URLRequest("http://www.gamebusted.com/"), "_blank"); } } }//package
Section 75
//GB_PLAY (GB_PLAY) package { import flash.display.*; public dynamic class GB_PLAY extends SimpleButton { } }//package
Section 76
//GBLogoRotating (GBLogoRotating) package { import flash.display.*; public dynamic class GBLogoRotating extends MovieClip { public function GBLogoRotating(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package
Section 77
//GreenGhostMC (GreenGhostMC) package { import ZombieKiller.*; public dynamic class GreenGhostMC extends GreenGhost { public function GreenGhostMC(){ addFrameScript(0, frame1, 30, frame31, 51, frame52, 75, frame76, 120, frame121); } function frame121(){ this.stop(); } function frame1(){ this.stop(); } function frame52(){ this.gotoAndPlay("standBy"); } function frame31(){ this.gotoAndPlay("move"); } function frame76(){ this.gotoAndPlay("standBy"); } } }//package
Section 78
//HeroMC (HeroMC) package { import ZombieKiller.*; public dynamic class HeroMC extends Hero { public function HeroMC(){ addFrameScript(16, frame17, 34, frame35, 110, frame111, 128, frame129, 203, frame204); } function frame17(){ this.gotoAndPlay("standBy"); } function frame111(){ this.gotoAndPlay("standBy"); } function frame204(){ this.stop(); Cache.main.gameOver(); } function frame129(){ this.gotoAndPlay("backwardmove"); } function frame35(){ this.gotoAndPlay("move"); } } }//package
Section 79
//InstructionMC (InstructionMC) package { import ZombieKiller.*; public dynamic class InstructionMC extends Instruction { } }//package
Section 80
//knifeHitSound (knifeHitSound) package { import flash.media.*; public dynamic class knifeHitSound extends Sound { } }//package
Section 81
//KnifeMC (KnifeMC) package { import ZombieKiller.*; public dynamic class KnifeMC extends Knife { } }//package
Section 82
//knifePoint (knifePoint) package { import flash.display.*; public dynamic class knifePoint extends MovieClip { } }//package
Section 83
//LevelFinishedMC (LevelFinishedMC) package { import ZombieKiller.*; public dynamic class LevelFinishedMC extends LevelFinished { } }//package
Section 84
//m1 (m1) package { import ZombieKiller.*; public dynamic class m1 extends Weapon { public function m1(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ this.stop(); } function frame1(){ this.stop(); } } }//package
Section 85
//m2 (m2) package { import ZombieKiller.*; public dynamic class m2 extends Weapon { public function m2(){ addFrameScript(0, frame1, 33, frame34); } function frame1(){ this.stop(); } function frame34(){ this.stop(); } } }//package
Section 86
//m3 (m3) package { import ZombieKiller.*; public dynamic class m3 extends Weapon { public function m3(){ addFrameScript(0, frame1, 24, frame25); } function frame25(){ this.stop(); } function frame1(){ this.stop(); } } }//package
Section 87
//PauseMC (PauseMC) package { import ZombieKiller.*; public dynamic class PauseMC extends Tools { public function PauseMC(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ this.stop(); } function frame2(){ this.stop(); } } }//package
Section 88
//PlayBtn (PlayBtn) package { import flash.display.*; public dynamic class PlayBtn extends MovieClip { public var fx:Symbol55555; public function PlayBtn(){ addFrameScript(0, frame1); } function frame1(){ stop(); fx.play(); } } }//package
Section 89
//scene1_0 (scene1_0) package { import flash.display.*; public dynamic class scene1_0 extends MovieClip { } }//package
Section 90
//scene1_1 (scene1_1) package { import flash.display.*; public dynamic class scene1_1 extends MovieClip { } }//package
Section 91
//scene1_2 (scene1_2) package { import flash.display.*; public dynamic class scene1_2 extends MovieClip { } }//package
Section 92
//scene1_3 (scene1_3) package { import flash.display.*; public dynamic class scene1_3 extends MovieClip { } }//package
Section 93
//scene1_4 (scene1_4) package { import flash.display.*; public dynamic class scene1_4 extends MovieClip { } }//package
Section 94
//scene1_5 (scene1_5) package { import flash.display.*; public dynamic class scene1_5 extends MovieClip { } }//package
Section 95
//scene1_6 (scene1_6) package { import flash.display.*; public dynamic class scene1_6 extends MovieClip { } }//package
Section 96
//scene2_0 (scene2_0) package { import flash.display.*; public dynamic class scene2_0 extends MovieClip { } }//package
Section 97
//scene2_1 (scene2_1) package { import flash.display.*; public dynamic class scene2_1 extends MovieClip { } }//package
Section 98
//scene2_2 (scene2_2) package { import flash.display.*; public dynamic class scene2_2 extends MovieClip { } }//package
Section 99
//scene2_3 (scene2_3) package { import flash.display.*; public dynamic class scene2_3 extends MovieClip { } }//package
Section 100
//scene2_4 (scene2_4) package { import flash.display.*; public dynamic class scene2_4 extends MovieClip { } }//package
Section 101
//scene2_5 (scene2_5) package { import flash.display.*; public dynamic class scene2_5 extends MovieClip { } }//package
Section 102
//scene2_6 (scene2_6) package { import flash.display.*; public dynamic class scene2_6 extends MovieClip { } }//package
Section 103
//scene3_0 (scene3_0) package { import flash.display.*; public dynamic class scene3_0 extends MovieClip { } }//package
Section 104
//scene3_1 (scene3_1) package { import flash.display.*; public dynamic class scene3_1 extends MovieClip { } }//package
Section 105
//scene3_2 (scene3_2) package { import flash.display.*; public dynamic class scene3_2 extends MovieClip { } }//package
Section 106
//scene3_3 (scene3_3) package { import flash.display.*; public dynamic class scene3_3 extends MovieClip { } }//package
Section 107
//scene3_4 (scene3_4) package { import flash.display.*; public dynamic class scene3_4 extends MovieClip { } }//package
Section 108
//scene3_5 (scene3_5) package { import flash.display.*; public dynamic class scene3_5 extends MovieClip { } }//package
Section 109
//scene3_6 (scene3_6) package { import flash.display.*; public dynamic class scene3_6 extends MovieClip { } }//package
Section 110
//scene3_7 (scene3_7) package { import flash.display.*; public dynamic class scene3_7 extends MovieClip { } }//package
Section 111
//ShotSound1 (ShotSound1) package { import flash.media.*; public dynamic class ShotSound1 extends Sound { } }//package
Section 112
//ShotSound2 (ShotSound2) package { import flash.media.*; public dynamic class ShotSound2 extends Sound { } }//package
Section 113
//SkeletonMC (SkeletonMC) package { import ZombieKiller.*; public dynamic class SkeletonMC extends Skeleton { public function SkeletonMC(){ addFrameScript(0, frame1, 27, frame28, 52, frame53, 98, frame99); } function frame53(){ this.gotoAndPlay("standBy"); } function frame28(){ this.gotoAndPlay("move"); } function frame1(){ this.stop(); } function frame99(){ this.stop(); } } }//package
Section 114
//StartGameMC (StartGameMC) package { import ZombieKiller.*; public dynamic class StartGameMC extends StartGame { } }//package
Section 115
//Symbol55555 (Symbol55555) package { import flash.display.*; public dynamic class Symbol55555 extends MovieClip { public function Symbol55555(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package
Section 116
//ToolsMC (ToolsMC) package { import ZombieKiller.*; public dynamic class ToolsMC extends Tools { } }//package
Section 117
//WinMC (WinMC) package { import ZombieKiller.*; public dynamic class WinMC extends Win { } }//package
Section 118
//WitchMC (WitchMC) package { import ZombieKiller.*; public dynamic class WitchMC extends Witch { public function WitchMC(){ addFrameScript(0, frame1, 16, frame17, 32, frame33, 56, frame57, 100, frame101); } function frame1(){ this.stop(); } function frame101(){ this.stop(); } function frame17(){ this.gotoAndPlay("move"); } function frame33(){ this.gotoAndPlay("standBy"); } function frame57(){ this.gotoAndPlay("standBy"); } } }//package
Section 119
//ZombieMC (ZombieMC) package { import ZombieKiller.*; public dynamic class ZombieMC extends Zombie { public function ZombieMC(){ addFrameScript(0, frame1, 16, frame17, 40, frame41, 99, frame100); } function frame41(){ this.gotoAndPlay("standBy"); } function frame17(){ this.gotoAndPlay("move"); } function frame1(){ this.stop(); } function frame100(){ this.stop(); } } }//package

Library Items

Symbol 1 GraphicUsed by:156
Symbol 2 GraphicUsed by:41
Symbol 3 GraphicUsed by:41
Symbol 4 GraphicUsed by:41
Symbol 5 GraphicUsed by:41
Symbol 6 GraphicUsed by:41
Symbol 7 GraphicUsed by:41
Symbol 8 GraphicUsed by:41
Symbol 9 GraphicUsed by:41
Symbol 10 GraphicUsed by:41
Symbol 11 GraphicUsed by:41
Symbol 12 GraphicUsed by:41
Symbol 13 GraphicUsed by:41
Symbol 14 GraphicUsed by:41
Symbol 15 GraphicUsed by:41
Symbol 16 GraphicUsed by:41
Symbol 17 GraphicUsed by:41
Symbol 18 GraphicUsed by:41
Symbol 19 GraphicUsed by:41
Symbol 20 GraphicUsed by:41
Symbol 21 GraphicUsed by:41
Symbol 22 GraphicUsed by:41
Symbol 23 GraphicUsed by:41
Symbol 24 GraphicUsed by:41
Symbol 25 GraphicUsed by:41
Symbol 26 GraphicUsed by:41
Symbol 27 GraphicUsed by:41
Symbol 28 GraphicUsed by:41
Symbol 29 GraphicUsed by:41
Symbol 30 GraphicUsed by:41
Symbol 31 GraphicUsed by:41
Symbol 32 GraphicUsed by:41
Symbol 33 GraphicUsed by:41
Symbol 34 GraphicUsed by:41
Symbol 35 GraphicUsed by:41
Symbol 36 GraphicUsed by:41
Symbol 37 GraphicUsed by:41
Symbol 38 GraphicUsed by:41
Symbol 39 GraphicUsed by:41
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40Used by:42
Symbol 42 MovieClipUses:41Used by:156
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:83 112
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:83
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:83
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:83
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:83
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:83
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:83
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:83
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:83
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:83
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:83
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:83
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:83
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:83
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:83
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:83
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:83
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:83
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:83
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:83
Symbol 83 MovieClipUses:44 46 48 50 52 54 56 58 60 62 64 66 68 70 72 74 76 78 80 82Used by:156 166
Symbol 84 GraphicUsed by:85 163
Symbol 85 MovieClipUses:84Used by:156
Symbol 86 GraphicUsed by:87 164
Symbol 87 MovieClipUses:86Used by:156
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:156
Symbol 90 GraphicUsed by:156
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:91Used by:93
Symbol 93 MovieClipUses:92Used by:156
Symbol 94 GraphicUsed by:95 165
Symbol 95 ButtonUses:94Used by:156
Symbol 96 GraphicUsed by:156
Symbol 97 GraphicUsed by:111
Symbol 98 GraphicUsed by:111
Symbol 99 GraphicUsed by:111
Symbol 100 GraphicUsed by:111
Symbol 101 GraphicUsed by:111
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:104 105 106
Symbol 104 MovieClipUses:103Used by:111
Symbol 105 MovieClipUses:103Used by:111
Symbol 106 MovieClipUses:103Used by:111
Symbol 107 GraphicUsed by:111
Symbol 108 GraphicUsed by:111
Symbol 109 GraphicUsed by:111
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClip {dude}Uses:97 98 99 100 101 104 105 106 107 108 109 110Used by:156
Symbol 112 MovieClipUses:44Used by:156
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:113Used by:156
Symbol 115 GraphicUsed by:129
Symbol 116 SoundUsed by:129 147 156 167
Symbol 117 GraphicUsed by:129
Symbol 118 GraphicUsed by:129
Symbol 119 GraphicUsed by:129
Symbol 120 GraphicUsed by:129
Symbol 121 GraphicUsed by:129
Symbol 122 GraphicUsed by:129
Symbol 123 GraphicUsed by:129
Symbol 124 GraphicUsed by:129
Symbol 125 GraphicUsed by:129
Symbol 126 GraphicUsed by:129
Symbol 127 GraphicUsed by:129
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:115 116 117 118 119 120 121 122 123 124 125 126 127 128Used by:156
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:130Used by:132 133 134
Symbol 132 MovieClipUses:131Used by:156
Symbol 133 MovieClipUses:131Used by:156
Symbol 134 MovieClipUses:131Used by:156
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClipUses:135Used by:147
Symbol 137 FontUsed by:138 142 145
Symbol 138 TextUses:137Used by:147 167
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClip {Symbol55555}Uses:139Used by:147
Symbol 141 GraphicUsed by:147
Symbol 142 TextUses:137Used by:147
Symbol 143 SoundUsed by:147 167
Symbol 144 GraphicUsed by:147
Symbol 145 TextUses:137Used by:147
Symbol 146 SoundUsed by:147 167
Symbol 147 MovieClip {PlayBtn}Uses:136 138 140 141 142 143 144 145 146 116Used by:156
Symbol 148 GraphicUsed by:149
Symbol 149 ButtonUses:148Used by:156
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:152
Symbol 152 MovieClipUses:151Used by:156
Symbol 153 SoundUsed by:156
Symbol 154 SoundUsed by:156
Symbol 155 SoundUsed by:156
Symbol 156 MovieClip {GB}Uses:1 42 83 85 87 89 90 93 95 96 111 112 114 129 132 133 134 147 149 116 152 153 154 155Used by:Timeline
Symbol 157 Sound {knifeHitSound}
Symbol 158 Sound {BackgroundSound3}
Symbol 159 Sound {BackgroundSound2}
Symbol 160 Sound {BackgroundSound1}
Symbol 161 Sound {ShotSound2}
Symbol 162 Sound {ShotSound1}
Symbol 163 MovieClipUses:84Used by:166
Symbol 164 MovieClipUses:86Used by:166
Symbol 165 MovieClipUses:94Used by:166
Symbol 166 MovieClip {GBLogoRotating}Uses:83 163 164 165
Symbol 167 Button {GB_PLAY}Uses:138 143 146 116
Symbol 168 BitmapUsed by:169 176 181 185 189 193 197 201
Symbol 169 GraphicUses:168Used by:170
Symbol 170 MovieClipUses:169Used by:175
Symbol 171 BitmapUsed by:172 195 199 203
Symbol 172 GraphicUses:171Used by:175
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClipUses:173Used by:175 180 184 188 192 196 200 204
Symbol 175 MovieClip {background3_0}Uses:170 172 174
Symbol 176 GraphicUses:168Used by:177
Symbol 177 MovieClipUses:176Used by:180
Symbol 178 BitmapUsed by:179 183 187 191
Symbol 179 GraphicUses:178Used by:180
Symbol 180 MovieClip {background3_7}Uses:177 179 174
Symbol 181 GraphicUses:168Used by:182
Symbol 182 MovieClipUses:181Used by:184
Symbol 183 GraphicUses:178Used by:184
Symbol 184 MovieClip {background3_6}Uses:182 183 174
Symbol 185 GraphicUses:168Used by:186
Symbol 186 MovieClipUses:185Used by:188
Symbol 187 GraphicUses:178Used by:188
Symbol 188 MovieClip {background3_5}Uses:186 187 174
Symbol 189 GraphicUses:168Used by:190
Symbol 190 MovieClipUses:189Used by:192
Symbol 191 GraphicUses:178Used by:192
Symbol 192 MovieClip {background3_4}Uses:190 191 174
Symbol 193 GraphicUses:168Used by:194
Symbol 194 MovieClipUses:193Used by:196
Symbol 195 GraphicUses:171Used by:196
Symbol 196 MovieClip {background3_3}Uses:194 195 174
Symbol 197 GraphicUses:168Used by:198
Symbol 198 MovieClipUses:197Used by:200
Symbol 199 GraphicUses:171Used by:200
Symbol 200 MovieClip {background3_2}Uses:198 199 174
Symbol 201 GraphicUses:168Used by:202
Symbol 202 MovieClipUses:201Used by:204
Symbol 203 GraphicUses:171Used by:204
Symbol 204 MovieClip {background3_1}Uses:202 203 174
Symbol 205 BitmapUsed by:206 217 219 221
Symbol 206 GraphicUses:205Used by:207
Symbol 207 MovieClip {scene3_4}Uses:206
Symbol 208 BitmapUsed by:209 211 213 215
Symbol 209 GraphicUses:208Used by:210
Symbol 210 MovieClip {scene3_3}Uses:209
Symbol 211 GraphicUses:208Used by:212
Symbol 212 MovieClip {scene3_2}Uses:211
Symbol 213 GraphicUses:208Used by:214
Symbol 214 MovieClip {scene3_1}Uses:213
Symbol 215 GraphicUses:208Used by:216
Symbol 216 MovieClip {scene3_0}Uses:215
Symbol 217 GraphicUses:205Used by:218
Symbol 218 MovieClip {scene3_5}Uses:217
Symbol 219 GraphicUses:205Used by:220
Symbol 220 MovieClip {scene3_6}Uses:219
Symbol 221 GraphicUses:205Used by:222
Symbol 222 MovieClip {scene3_7}Uses:221
Symbol 223 MovieClip {PauseMC}
Symbol 224 BitmapUsed by:225
Symbol 225 GraphicUses:224Used by:248
Symbol 226 GraphicUsed by:233
Symbol 227 GraphicUsed by:233
Symbol 228 GraphicUsed by:233 857 885
Symbol 229 ShapeTweeningUsed by:233
Symbol 230 GraphicUsed by:233 857 885
Symbol 231 ShapeTweeningUsed by:233
Symbol 232 GraphicUsed by:233 857 885
Symbol 233 MovieClipUses:226 227 228 229 230 231 232Used by:248 507
Symbol 234 FontUsed by:235 236 239 240 242 243 245 246 613 614 843 863 868 869 873 874
Symbol 235 TextUses:234Used by:238
Symbol 236 TextUses:234Used by:238
Symbol 237 GraphicUsed by:238 241 244 247 870 875
Symbol 238 ButtonUses:235 236 237Used by:248 617
Symbol 239 TextUses:234Used by:241
Symbol 240 TextUses:234Used by:241
Symbol 241 ButtonUses:239 240 237Used by:248
Symbol 242 TextUses:234Used by:244
Symbol 243 TextUses:234Used by:244
Symbol 244 ButtonUses:242 243 237Used by:248 858 871 886
Symbol 245 TextUses:234Used by:247
Symbol 246 TextUses:234Used by:247
Symbol 247 ButtonUses:245 246 237Used by:248
Symbol 248 MovieClip {StartGameMC}Uses:225 233 238 241 244 247
Symbol 249 BitmapUsed by:250 257 259 261 432 436 440 444 829 834 839
Symbol 250 GraphicUses:249Used by:251
Symbol 251 MovieClip {scene1_2}Uses:250
Symbol 252 BitmapUsed by:253 255 448 452
Symbol 253 GraphicUses:252Used by:254
Symbol 254 MovieClip {scene1_5}Uses:253
Symbol 255 GraphicUses:252Used by:256
Symbol 256 MovieClip {scene1_6}Uses:255
Symbol 257 GraphicUses:249Used by:258
Symbol 258 MovieClip {scene1_3}Uses:257
Symbol 259 GraphicUses:249Used by:260
Symbol 260 MovieClip {scene1_4}Uses:259
Symbol 261 GraphicUses:249Used by:262
Symbol 262 MovieClip {scene1_0}Uses:261
Symbol 263 BitmapUsed by:264 266 268 270 621 625 629
Symbol 264 GraphicUses:263Used by:265
Symbol 265 MovieClip {scene2_0}Uses:264
Symbol 266 GraphicUses:263Used by:267
Symbol 267 MovieClip {scene2_1}Uses:266
Symbol 268 GraphicUses:263Used by:269
Symbol 269 MovieClip {scene2_2}Uses:268
Symbol 270 GraphicUses:263Used by:271
Symbol 271 MovieClip {scene2_3}Uses:270
Symbol 272 BitmapUsed by:273 275 277 634 638 642
Symbol 273 GraphicUses:272Used by:274
Symbol 274 MovieClip {scene2_4}Uses:273
Symbol 275 GraphicUses:272Used by:276
Symbol 276 MovieClip {scene2_5}Uses:275
Symbol 277 GraphicUses:272Used by:278
Symbol 278 MovieClip {scene2_6}Uses:277
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClip {KnifeMC}Uses:279
Symbol 281 GraphicUsed by:292
Symbol 282 BitmapUsed by:283 465
Symbol 283 GraphicUses:282Used by:292
Symbol 284 BitmapUsed by:285 852 880
Symbol 285 GraphicUses:284Used by:292
Symbol 286 BitmapUsed by:287 467
Symbol 287 GraphicUses:286Used by:292
Symbol 288 BitmapUsed by:289 469
Symbol 289 GraphicUses:288Used by:292
Symbol 290 BitmapUsed by:291
Symbol 291 GraphicUses:290Used by:292
Symbol 292 MovieClip {m1}Uses:281 283 285 287 289 291
Symbol 293 GraphicUsed by:353
Symbol 294 GraphicUsed by:295
Symbol 295 MovieClipUses:294Used by:353
Symbol 296 BitmapUsed by:297
Symbol 297 GraphicUses:296Used by:298
Symbol 298 MovieClipUses:297Used by:299
Symbol 299 MovieClipUses:298Used by:353
Symbol 300 GraphicUsed by:301
Symbol 301 MovieClipUses:300Used by:353
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:302Used by:353
Symbol 304 GraphicUsed by:305
Symbol 305 MovieClipUses:304Used by:353
Symbol 306 GraphicUsed by:307
Symbol 307 MovieClipUses:306Used by:308
Symbol 308 MovieClipUses:307Used by:353
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:309Used by:311
Symbol 311 MovieClipUses:310Used by:353
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:353
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClipUses:314Used by:316
Symbol 316 MovieClipUses:315Used by:353
Symbol 317 GraphicUsed by:318
Symbol 318 MovieClipUses:317Used by:353
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319Used by:321
Symbol 321 MovieClipUses:320Used by:353
Symbol 322 GraphicUsed by:323
Symbol 323 MovieClipUses:322Used by:353
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:324Used by:326
Symbol 326 MovieClipUses:325Used by:353
Symbol 327 GraphicUsed by:328
Symbol 328 MovieClipUses:327Used by:353
Symbol 329 GraphicUsed by:330
Symbol 330 MovieClipUses:329Used by:331
Symbol 331 MovieClipUses:330Used by:353
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:332Used by:334
Symbol 334 MovieClipUses:333Used by:353
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClipUses:335Used by:337
Symbol 337 MovieClipUses:336Used by:353
Symbol 338 GraphicUsed by:339
Symbol 339 MovieClipUses:338Used by:340
Symbol 340 MovieClipUses:339Used by:353
Symbol 341 GraphicUsed by:342
Symbol 342 MovieClipUses:341Used by:343
Symbol 343 MovieClipUses:342Used by:353
Symbol 344 GraphicUsed by:345
Symbol 345 MovieClipUses:344Used by:346
Symbol 346 MovieClipUses:345Used by:353
Symbol 347 GraphicUsed by:348
Symbol 348 MovieClipUses:347Used by:349
Symbol 349 MovieClipUses:348Used by:353
Symbol 350 GraphicUsed by:351
Symbol 351 MovieClipUses:350Used by:352
Symbol 352 MovieClipUses:351Used by:353
Symbol 353 MovieClip {m2}Uses:293 295 299 301 303 305 308 311 313 316 318 321 323 326 328 331 334 337 340 343 346 349 352
Symbol 354 GraphicUsed by:383
Symbol 355 GraphicUsed by:360
Symbol 356 GraphicUsed by:360
Symbol 357 GraphicUsed by:360
Symbol 358 GraphicUsed by:360
Symbol 359 GraphicUsed by:360
Symbol 360 MovieClipUses:355 356 357 358 359Used by:383 871
Symbol 361 GraphicUsed by:376 381
Symbol 362 GraphicUsed by:376 381
Symbol 363 GraphicUsed by:376 381
Symbol 364 GraphicUsed by:376 381
Symbol 365 GraphicUsed by:376 381
Symbol 366 GraphicUsed by:376
Symbol 367 GraphicUsed by:376
Symbol 368 GraphicUsed by:376 381
Symbol 369 GraphicUsed by:376 381
Symbol 370 GraphicUsed by:376
Symbol 371 GraphicUsed by:376
Symbol 372 GraphicUsed by:376 381
Symbol 373 GraphicUsed by:376 381
Symbol 374 GraphicUsed by:376 381
Symbol 375 GraphicUsed by:376 381
Symbol 376 MovieClipUses:361 362 363 364 365 366 367 368 369 370 371 372 373 374 375Used by:383 871
Symbol 377 GraphicUsed by:381
Symbol 378 GraphicUsed by:381
Symbol 379 GraphicUsed by:381
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:368 369 377 378 372 373 374 375 361 362 363 364 365 379 380Used by:383 871
Symbol 382 SoundUsed by:383
Symbol 383 MovieClip {m3}Uses:354 360 376 381 382
Symbol 384 GraphicUsed by:387
Symbol 385 GraphicUsed by:386
Symbol 386 MovieClipUses:385Used by:387
Symbol 387 MovieClipUses:384 386Used by:419
Symbol 388 GraphicUsed by:404
Symbol 389 GraphicUsed by:390
Symbol 390 MovieClipUses:389Used by:404
Symbol 391 GraphicUsed by:404
Symbol 392 GraphicUsed by:404
Symbol 393 GraphicUsed by:394
Symbol 394 MovieClipUses:393Used by:404
Symbol 395 GraphicUsed by:404
Symbol 396 GraphicUsed by:404
Symbol 397 GraphicUsed by:404
Symbol 398 FontUsed by:399 401 403 411 412
Symbol 399 EditableTextUses:398Used by:404
Symbol 400 GraphicUsed by:404
Symbol 401 EditableTextUses:398Used by:404
Symbol 402 GraphicUsed by:404
Symbol 403 EditableTextUses:398Used by:404
Symbol 404 MovieClip {ZombieAvengerCS3_fla.Timeline_109}Uses:388 390 391 392 394 395 396 397 399 400 401 402 403Used by:419
Symbol 405 FontUsed by:406 407
Symbol 406 EditableTextUses:405Used by:419
Symbol 407 EditableTextUses:405Used by:419
Symbol 408 FontUsed by:409 410 413 414 415 416 844 845 846 847 848 849 850 851 864 865 866 867 872 876 877 878 879
Symbol 409 TextUses:408Used by:419
Symbol 410 TextUses:408Used by:419
Symbol 411 EditableTextUses:398Used by:419
Symbol 412 EditableTextUses:398Used by:419
Symbol 413 TextUses:408Used by:419
Symbol 414 TextUses:408Used by:418
Symbol 415 TextUses:408Used by:418
Symbol 416 TextUses:408Used by:418
Symbol 417 GraphicUsed by:418
Symbol 418 ButtonUses:414 415 416 417Used by:419
Symbol 419 MovieClip {ToolsMC}Uses:387 404 406 407 409 410 411 412 413 418
Symbol 420 GraphicUsed by:421
Symbol 421 MovieClipUses:420Used by:422
Symbol 422 MovieClip {Box1MC}Uses:421
Symbol 423 GraphicUsed by:424
Symbol 424 MovieClipUses:423Used by:425
Symbol 425 MovieClip {Box2MC}Uses:424
Symbol 426 GraphicUsed by:427
Symbol 427 MovieClipUses:426Used by:428
Symbol 428 MovieClip {Box3MC}Uses:427
Symbol 429 BitmapUsed by:430 434 438 442 446 450 830 831
Symbol 430 GraphicUses:429Used by:431
Symbol 431 MovieClipUses:430Used by:433
Symbol 432 GraphicUses:249Used by:433
Symbol 433 MovieClip {background1_1}Uses:431 432
Symbol 434 GraphicUses:429Used by:435
Symbol 435 MovieClipUses:434Used by:437
Symbol 436 GraphicUses:249Used by:437
Symbol 437 MovieClip {background1_2}Uses:435 436
Symbol 438 GraphicUses:429Used by:439
Symbol 439 MovieClipUses:438Used by:441
Symbol 440 GraphicUses:249Used by:441
Symbol 441 MovieClip {background1_3}Uses:439 440
Symbol 442 GraphicUses:429Used by:443
Symbol 443 MovieClipUses:442Used by:445
Symbol 444 GraphicUses:249Used by:445
Symbol 445 MovieClip {background1_4}Uses:443 444
Symbol 446 GraphicUses:429Used by:447
Symbol 447 MovieClipUses:446Used by:449
Symbol 448 GraphicUses:252Used by:449
Symbol 449 MovieClip {background1_5}Uses:447 448
Symbol 450 GraphicUses:429Used by:451
Symbol 451 MovieClipUses:450Used by:453
Symbol 452 GraphicUses:252Used by:453
Symbol 453 MovieClip {background1_6}Uses:451 452
Symbol 454 GraphicUsed by:455
Symbol 455 MovieClipUses:454Used by:507
Symbol 456 GraphicUsed by:500 507
Symbol 457 GraphicUsed by:490 507
Symbol 458 GraphicUsed by:482 507
Symbol 459 GraphicUsed by:463
Symbol 460 MovieClipUsed by:463
Symbol 461 GraphicUsed by:463
Symbol 462 GraphicUsed by:463
Symbol 463 MovieClip {ZombieAvengerCS3_fla.Timeline_84}Uses:459 460 461 462Used by:482 507
Symbol 464 GraphicUsed by:482 507
Symbol 465 GraphicUses:282Used by:482
Symbol 466 GraphicUsed by:482
Symbol 467 GraphicUses:286Used by:482
Symbol 468 GraphicUsed by:482
Symbol 469 GraphicUses:288Used by:482
Symbol 470 GraphicUsed by:482
Symbol 471 GraphicUsed by:482
Symbol 472 GraphicUsed by:482
Symbol 473 GraphicUsed by:482
Symbol 474 GraphicUsed by:482
Symbol 475 GraphicUsed by:482
Symbol 476 GraphicUsed by:482
Symbol 477 GraphicUsed by:482
Symbol 478 GraphicUsed by:482
Symbol 479 GraphicUsed by:482
Symbol 480 GraphicUsed by:482
Symbol 481 GraphicUsed by:482
Symbol 482 MovieClip {ZombieAvengerCS3_fla.Timeline_83}Uses:458 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481Used by:507
Symbol 483 GraphicUsed by:500 507
Symbol 484 GraphicUsed by:500 507
Symbol 485 GraphicUsed by:500 507
Symbol 486 GraphicUsed by:500 507
Symbol 487 GraphicUsed by:500 507
Symbol 488 GraphicUsed by:500 507
Symbol 489 GraphicUsed by:500 507
Symbol 490 MovieClipUses:457Used by:507
Symbol 491 GraphicUsed by:507
Symbol 492 GraphicUsed by:507
Symbol 493 GraphicUsed by:507
Symbol 494 GraphicUsed by:507
Symbol 495 GraphicUsed by:507
Symbol 496 GraphicUsed by:507
Symbol 497 GraphicUsed by:507
Symbol 498 GraphicUsed by:507
Symbol 499 GraphicUsed by:507
Symbol 500 MovieClipUses:456 483 484 485 486 487 488 489Used by:507
Symbol 501 GraphicUsed by:507
Symbol 502 GraphicUsed by:507
Symbol 503 GraphicUsed by:507
Symbol 504 ShapeTweeningUsed by:507
Symbol 505 GraphicUsed by:507
Symbol 506 GraphicUsed by:507
Symbol 507 MovieClip {HeroMC}Uses:455 456 457 233 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 458 463 464 504 505 506
Symbol 508 FontUsed by:509
Symbol 509 TextUses:508Used by:510
Symbol 510 MovieClipUses:509Used by:511
Symbol 511 MovieClip {ZombieAvengerCS3_fla.Timeline_29}Uses:510Used by:610 828 951
Symbol 512 GraphicUsed by:610
Symbol 513 GraphicUsed by:610
Symbol 514 GraphicUsed by:610
Symbol 515 GraphicUsed by:610
Symbol 516 GraphicUsed by:610
Symbol 517 GraphicUsed by:610
Symbol 518 GraphicUsed by:610
Symbol 519 GraphicUsed by:610
Symbol 520 GraphicUsed by:610
Symbol 521 GraphicUsed by:610
Symbol 522 GraphicUsed by:610
Symbol 523 GraphicUsed by:610
Symbol 524 GraphicUsed by:610
Symbol 525 GraphicUsed by:610
Symbol 526 GraphicUsed by:610
Symbol 527 GraphicUsed by:610
Symbol 528 GraphicUsed by:610
Symbol 529 GraphicUsed by:610
Symbol 530 GraphicUsed by:610
Symbol 531 GraphicUsed by:610
Symbol 532 GraphicUsed by:610
Symbol 533 GraphicUsed by:610
Symbol 534 GraphicUsed by:610
Symbol 535 GraphicUsed by:610
Symbol 536 GraphicUsed by:610
Symbol 537 GraphicUsed by:610
Symbol 538 GraphicUsed by:610
Symbol 539 GraphicUsed by:610
Symbol 540 GraphicUsed by:610
Symbol 541 GraphicUsed by:610
Symbol 542 GraphicUsed by:543
Symbol 543 MovieClipUses:542Used by:610
Symbol 544 GraphicUsed by:610
Symbol 545 GraphicUsed by:546
Symbol 546 MovieClipUses:545Used by:610
Symbol 547 GraphicUsed by:548
Symbol 548 MovieClipUses:547Used by:610
Symbol 549 GraphicUsed by:550
Symbol 550 MovieClipUses:549Used by:610
Symbol 551 GraphicUsed by:552
Symbol 552 MovieClipUses:551Used by:610
Symbol 553 GraphicUsed by:554
Symbol 554 MovieClipUses:553Used by:610
Symbol 555 GraphicUsed by:556
Symbol 556 MovieClipUses:555Used by:610
Symbol 557 GraphicUsed by:558
Symbol 558 MovieClipUses:557Used by:610
Symbol 559 GraphicUsed by:560
Symbol 560 MovieClipUses:559Used by:610
Symbol 561 GraphicUsed by:562
Symbol 562 MovieClipUses:561Used by:610
Symbol 563 GraphicUsed by:610
Symbol 564 GraphicUsed by:610
Symbol 565 GraphicUsed by:610
Symbol 566 GraphicUsed by:610
Symbol 567 GraphicUsed by:610 951
Symbol 568 GraphicUsed by:610
Symbol 569 GraphicUsed by:610 828 951
Symbol 570 GraphicUsed by:610
Symbol 571 GraphicUsed by:610 828 951
Symbol 572 GraphicUsed by:610
Symbol 573 GraphicUsed by:610 828 951
Symbol 574 GraphicUsed by:610
Symbol 575 GraphicUsed by:610 828 951
Symbol 576 GraphicUsed by:610
Symbol 577 GraphicUsed by:610 828 951
Symbol 578 GraphicUsed by:610
Symbol 579 GraphicUsed by:610 828 951
Symbol 580 GraphicUsed by:610
Symbol 581 GraphicUsed by:610 828 951
Symbol 582 GraphicUsed by:610
Symbol 583 GraphicUsed by:610 828 951
Symbol 584 GraphicUsed by:610
Symbol 585 GraphicUsed by:610 695 731 761 793 828 951
Symbol 586 GraphicUsed by:610
Symbol 587 GraphicUsed by:610 695 731 761 793 828 951
Symbol 588 GraphicUsed by:610
Symbol 589 GraphicUsed by:610 695 731 761 793 828 951
Symbol 590 GraphicUsed by:610
Symbol 591 GraphicUsed by:610 695 731 761 793 828 951
Symbol 592 GraphicUsed by:610
Symbol 593 GraphicUsed by:610 695 731 761 793 828 951
Symbol 594 GraphicUsed by:610
Symbol 595 GraphicUsed by:610 695 731 761 793 828 951
Symbol 596 GraphicUsed by:610
Symbol 597 GraphicUsed by:610 695 731 761 793 828 951
Symbol 598 GraphicUsed by:610 695 731 761 793 828 951
Symbol 599 GraphicUsed by:610 695 731 761 793 828 951
Symbol 600 GraphicUsed by:610
Symbol 601 GraphicUsed by:610
Symbol 602 GraphicUsed by:610
Symbol 603 GraphicUsed by:610
Symbol 604 GraphicUsed by:610
Symbol 605 GraphicUsed by:610
Symbol 606 GraphicUsed by:610
Symbol 607 GraphicUsed by:610
Symbol 608 GraphicUsed by:610
Symbol 609 GraphicUsed by:610
Symbol 610 MovieClip {Boss2MC}Uses:511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 543 544 546 548 550 552 554 556 558 560 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
Symbol 611 BitmapUsed by:612
Symbol 612 GraphicUses:611Used by:617
Symbol 613 TextUses:234Used by:616
Symbol 614 TextUses:234Used by:616
Symbol 615 GraphicUsed by:616
Symbol 616 ButtonUses:613 614 615Used by:617 858 871
Symbol 617 MovieClip {InstructionMC}Uses:612 238 616
Symbol 618 BitmapUsed by:619 623 627 836
Symbol 619 GraphicUses:618Used by:620
Symbol 620 MovieClipUses:619Used by:622
Symbol 621 GraphicUses:263Used by:622 838
Symbol 622 MovieClip {background2_1}Uses:620 621
Symbol 623 GraphicUses:618Used by:624
Symbol 624 MovieClipUses:623Used by:626
Symbol 625 GraphicUses:263Used by:626
Symbol 626 MovieClip {background2_2}Uses:624 625
Symbol 627 GraphicUses:618Used by:628
Symbol 628 MovieClipUses:627Used by:630
Symbol 629 GraphicUses:263Used by:630
Symbol 630 MovieClip {background2_3}Uses:628 629
Symbol 631 BitmapUsed by:632 636 640
Symbol 632 GraphicUses:631Used by:633
Symbol 633 MovieClipUses:632Used by:635
Symbol 634 GraphicUses:272Used by:635
Symbol 635 MovieClip {background2_4}Uses:633 634
Symbol 636 GraphicUses:631Used by:637
Symbol 637 MovieClipUses:636Used by:639
Symbol 638 GraphicUses:272Used by:639
Symbol 639 MovieClip {background2_5}Uses:637 638
Symbol 640 GraphicUses:631Used by:641
Symbol 641 MovieClipUses:640Used by:643
Symbol 642 GraphicUses:272Used by:643
Symbol 643 MovieClip {background2_6}Uses:641 642
Symbol 644 GraphicUsed by:695
Symbol 645 GraphicUsed by:695
Symbol 646 GraphicUsed by:695
Symbol 647 GraphicUsed by:695
Symbol 648 GraphicUsed by:695
Symbol 649 GraphicUsed by:695
Symbol 650 GraphicUsed by:695
Symbol 651 GraphicUsed by:695
Symbol 652 GraphicUsed by:695
Symbol 653 GraphicUsed by:695
Symbol 654 GraphicUsed by:695
Symbol 655 GraphicUsed by:695
Symbol 656 GraphicUsed by:695
Symbol 657 GraphicUsed by:695
Symbol 658 GraphicUsed by:695
Symbol 659 GraphicUsed by:695
Symbol 660 GraphicUsed by:695
Symbol 661 GraphicUsed by:695
Symbol 662 GraphicUsed by:695
Symbol 663 GraphicUsed by:695 731 761 793 828 951
Symbol 664 GraphicUsed by:695 731 761 793 828 951
Symbol 665 GraphicUsed by:695
Symbol 666 GraphicUsed by:695 731 761 793 828 951
Symbol 667 GraphicUsed by:695
Symbol 668 GraphicUsed by:695
Symbol 669 GraphicUsed by:695
Symbol 670 GraphicUsed by:695
Symbol 671 GraphicUsed by:695 731 761 793 951
Symbol 672 ShapeTweeningUsed by:695
Symbol 673 GraphicUsed by:695 731 761 793 951
Symbol 674 GraphicUsed by:695 731 761 793 951
Symbol 675 GraphicUsed by:695 731 761 793 951
Symbol 676 GraphicUsed by:695 731 761 793 951
Symbol 677 GraphicUsed by:695 731 761 793 951
Symbol 678 GraphicUsed by:695 731 761 793 951
Symbol 679 GraphicUsed by:695 731 761 793 951
Symbol 680 GraphicUsed by:695 731 761 793 951
Symbol 681 GraphicUsed by:695 731 761 793 951
Symbol 682 GraphicUsed by:695 731 761 793 828 951
Symbol 683 GraphicUsed by:695 731 761 793 951
Symbol 684 GraphicUsed by:695 731 761 793 951
Symbol 685 GraphicUsed by:695 731 761 793 828 951
Symbol 686 GraphicUsed by:695 731 761 793 951
Symbol 687 GraphicUsed by:695 731 761 793 951
Symbol 688 GraphicUsed by:695 731 761 793 951
Symbol 689 GraphicUsed by:695 731 761 793 951
Symbol 690 GraphicUsed by:695 731 761 793 951
Symbol 691 GraphicUsed by:695 731 761 793 951
Symbol 692 GraphicUsed by:695 731 761 793 951
Symbol 693 GraphicUsed by:695 731 761 793 951
Symbol 694 GraphicUsed by:695
Symbol 695 MovieClip {SkeletonMC}Uses:644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 585 667 587 668 589 669 591 670 593 671 672 673 595 674 675 597 676 677 598 678 679 599 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
Symbol 696 GraphicUsed by:731
Symbol 697 GraphicUsed by:731
Symbol 698 GraphicUsed by:731
Symbol 699 GraphicUsed by:731
Symbol 700 GraphicUsed by:731
Symbol 701 GraphicUsed by:731
Symbol 702 GraphicUsed by:731
Symbol 703 GraphicUsed by:731
Symbol 704 GraphicUsed by:731
Symbol 705 GraphicUsed by:731
Symbol 706 GraphicUsed by:731
Symbol 707 GraphicUsed by:731
Symbol 708 GraphicUsed by:731
Symbol 709 GraphicUsed by:731
Symbol 710 GraphicUsed by:731
Symbol 711 GraphicUsed by:731
Symbol 712 GraphicUsed by:731
Symbol 713 GraphicUsed by:731
Symbol 714 GraphicUsed by:731
Symbol 715 GraphicUsed by:731
Symbol 716 GraphicUsed by:731
Symbol 717 GraphicUsed by:731
Symbol 718 GraphicUsed by:731
Symbol 719 GraphicUsed by:731
Symbol 720 GraphicUsed by:731
Symbol 721 GraphicUsed by:731
Symbol 722 GraphicUsed by:731
Symbol 723 GraphicUsed by:731
Symbol 724 GraphicUsed by:731
Symbol 725 GraphicUsed by:731
Symbol 726 GraphicUsed by:731
Symbol 727 GraphicUsed by:731
Symbol 728 ShapeTweeningUsed by:731
Symbol 729 GraphicUsed by:731
Symbol 730 GraphicUsed by:731
Symbol 731 MovieClip {GreenGhostMC}Uses:696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 663 664 723 666 724 585 725 587 726 589 727 591 728 729 593 671 673 595 674 675 597 676 677 598 678 679 599 680 681 682 683 684 685 686 687 688 689 690 691 692 693 730
Symbol 732 GraphicUsed by:761
Symbol 733 GraphicUsed by:761
Symbol 734 GraphicUsed by:761
Symbol 735 GraphicUsed by:761
Symbol 736 GraphicUsed by:761
Symbol 737 GraphicUsed by:761
Symbol 738 GraphicUsed by:761
Symbol 739 GraphicUsed by:761
Symbol 740 GraphicUsed by:761
Symbol 741 GraphicUsed by:761
Symbol 742 GraphicUsed by:761
Symbol 743 GraphicUsed by:761
Symbol 744 GraphicUsed by:761
Symbol 745 GraphicUsed by:761
Symbol 746 GraphicUsed by:761
Symbol 747 GraphicUsed by:761
Symbol 748 GraphicUsed by:761
Symbol 749 GraphicUsed by:761
Symbol 750 MovieClip {knifePoint}Used by:761
Symbol 751 GraphicUsed by:761
Symbol 752 GraphicUsed by:761
Symbol 753 GraphicUsed by:761
Symbol 754 GraphicUsed by:761
Symbol 755 GraphicUsed by:761
Symbol 756 GraphicUsed by:761
Symbol 757 GraphicUsed by:761
Symbol 758 GraphicUsed by:761
Symbol 759 GraphicUsed by:761
Symbol 760 GraphicUsed by:761
Symbol 761 MovieClip {WitchMC}Uses:732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 663 664 755 666 585 756 587 757 589 591 758 593 759 595 671 760 673 597 674 675 598 676 677 599 678 679 682 680 681 685 683 684 686 687 688 689 690 691 692 693
Symbol 762 GraphicUsed by:793
Symbol 763 GraphicUsed by:793
Symbol 764 GraphicUsed by:793
Symbol 765 GraphicUsed by:793
Symbol 766 GraphicUsed by:793
Symbol 767 GraphicUsed by:793
Symbol 768 GraphicUsed by:793
Symbol 769 GraphicUsed by:793
Symbol 770 GraphicUsed by:793
Symbol 771 GraphicUsed by:793
Symbol 772 GraphicUsed by:793
Symbol 773 GraphicUsed by:793
Symbol 774 GraphicUsed by:793
Symbol 775 GraphicUsed by:793
Symbol 776 GraphicUsed by:793
Symbol 777 GraphicUsed by:793
Symbol 778 GraphicUsed by:793
Symbol 779 GraphicUsed by:793
Symbol 780 GraphicUsed by:793
Symbol 781 GraphicUsed by:793
Symbol 782 GraphicUsed by:793
Symbol 783 GraphicUsed by:793
Symbol 784 GraphicUsed by:793
Symbol 785 GraphicUsed by:793
Symbol 786 GraphicUsed by:793
Symbol 787 GraphicUsed by:793
Symbol 788 GraphicUsed by:793
Symbol 789 GraphicUsed by:793
Symbol 790 GraphicUsed by:793
Symbol 791 ShapeTweeningUsed by:793
Symbol 792 GraphicUsed by:793
Symbol 793 MovieClip {ZombieMC}Uses:762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 663 664 784 666 585 785 587 786 589 591 787 593 788 595 789 597 790 598 671 791 673 599 674 675 682 676 677 685 678 679 680 681 683 684 686 687 688 689 690 691 692 693 792
Symbol 794 GraphicUsed by:828
Symbol 795 GraphicUsed by:828
Symbol 796 GraphicUsed by:828
Symbol 797 GraphicUsed by:828
Symbol 798 GraphicUsed by:828
Symbol 799 GraphicUsed by:828
Symbol 800 GraphicUsed by:828
Symbol 801 GraphicUsed by:828
Symbol 802 GraphicUsed by:828
Symbol 803 GraphicUsed by:828
Symbol 804 GraphicUsed by:828
Symbol 805 GraphicUsed by:828
Symbol 806 GraphicUsed by:828
Symbol 807 GraphicUsed by:828
Symbol 808 GraphicUsed by:828
Symbol 809 GraphicUsed by:828
Symbol 810 GraphicUsed by:828
Symbol 811 GraphicUsed by:828
Symbol 812 GraphicUsed by:828
Symbol 813 GraphicUsed by:828
Symbol 814 GraphicUsed by:828
Symbol 815 GraphicUsed by:828
Symbol 816 GraphicUsed by:828
Symbol 817 GraphicUsed by:828 951
Symbol 818 GraphicUsed by:828
Symbol 819 GraphicUsed by:828
Symbol 820 GraphicUsed by:828
Symbol 821 GraphicUsed by:828
Symbol 822 GraphicUsed by:828
Symbol 823 GraphicUsed by:828
Symbol 824 GraphicUsed by:828
Symbol 825 GraphicUsed by:828
Symbol 826 GraphicUsed by:828
Symbol 827 GraphicUsed by:828
Symbol 828 MovieClip {Boss1MC}Uses:511 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 569 571 812 573 813 575 577 814 579 815 581 583 816 817 818 819 820 663 664 821 666 822 585 587 823 589 824 591 593 825 595 826 597 598 827 599 682 685
Symbol 829 GraphicUses:249Used by:835
Symbol 830 GraphicUses:429Used by:833
Symbol 831 GraphicUses:429Used by:832
Symbol 832 MovieClipUses:831Used by:833
Symbol 833 MovieClipUses:830 832Used by:835
Symbol 834 GraphicUses:249Used by:835
Symbol 835 MovieClip {background1_0}Uses:829 833 834
Symbol 836 GraphicUses:618Used by:837
Symbol 837 MovieClipUses:836Used by:838
Symbol 838 MovieClip {background2_0}Uses:837 621
Symbol 839 GraphicUses:249Used by:840
Symbol 840 MovieClip {scene1_1}Uses:839
Symbol 841 BitmapUsed by:842
Symbol 842 GraphicUses:841Used by:858 886
Symbol 843 TextUses:234Used by:858 886
Symbol 844 TextUses:408Used by:858 871 886
Symbol 845 TextUses:408Used by:858
Symbol 846 TextUses:408Used by:858 871 886
Symbol 847 TextUses:408Used by:858 871 886
Symbol 848 TextUses:408Used by:858 871 886
Symbol 849 EditableTextUses:408Used by:858
Symbol 850 EditableTextUses:408Used by:858
Symbol 851 EditableTextUses:408Used by:858
Symbol 852 GraphicUses:284Used by:858
Symbol 853 GraphicUsed by:857
Symbol 854 GraphicUsed by:857
Symbol 855 ShapeTweeningUsed by:857
Symbol 856 ShapeTweeningUsed by:857
Symbol 857 MovieClipUses:853 854 228 855 230 856 232Used by:858
Symbol 858 MovieClip {WinMC}Uses:842 843 844 845 616 846 847 848 849 850 851 244 852 857
Symbol 859 GraphicUsed by:871
Symbol 860 GraphicUsed by:871
Symbol 861 GraphicUsed by:871
Symbol 862 GraphicUsed by:871
Symbol 863 TextUses:234Used by:871
Symbol 864 TextUses:408Used by:871
Symbol 865 EditableTextUses:408Used by:871
Symbol 866 EditableTextUses:408Used by:871
Symbol 867 EditableTextUses:408Used by:871
Symbol 868 TextUses:234Used by:870
Symbol 869 TextUses:234Used by:870
Symbol 870 ButtonUses:868 869 237Used by:871 886
Symbol 871 MovieClip {GameOverMC}Uses:859 360 860 861 381 862 376 863 844 864 846 847 848 865 866 867 616 244 870
Symbol 872 TextUses:408Used by:886
Symbol 873 TextUses:234Used by:875
Symbol 874 TextUses:234Used by:875
Symbol 875 ButtonUses:873 874 237Used by:886
Symbol 876 EditableTextUses:408Used by:886
Symbol 877 EditableTextUses:408Used by:886
Symbol 878 EditableTextUses:408Used by:886
Symbol 879 EditableTextUses:408Used by:886
Symbol 880 GraphicUses:284Used by:886
Symbol 881 GraphicUsed by:885
Symbol 882 GraphicUsed by:885
Symbol 883 ShapeTweeningUsed by:885
Symbol 884 ShapeTweeningUsed by:885
Symbol 885 MovieClipUses:881 882 228 883 230 884 232Used by:886
Symbol 886 MovieClip {LevelFinishedMC}Uses:842 843 844 872 875 846 847 848 876 877 878 879 244 870 880 885
Symbol 887 GraphicUsed by:951
Symbol 888 GraphicUsed by:951
Symbol 889 GraphicUsed by:951
Symbol 890 GraphicUsed by:951
Symbol 891 GraphicUsed by:951
Symbol 892 GraphicUsed by:951
Symbol 893 GraphicUsed by:951
Symbol 894 GraphicUsed by:951
Symbol 895 GraphicUsed by:951
Symbol 896 GraphicUsed by:951
Symbol 897 GraphicUsed by:951
Symbol 898 GraphicUsed by:951
Symbol 899 GraphicUsed by:951
Symbol 900 GraphicUsed by:951
Symbol 901 GraphicUsed by:951
Symbol 902 GraphicUsed by:951
Symbol 903 GraphicUsed by:951
Symbol 904 GraphicUsed by:951
Symbol 905 GraphicUsed by:951
Symbol 906 GraphicUsed by:951
Symbol 907 GraphicUsed by:951
Symbol 908 GraphicUsed by:951
Symbol 909 GraphicUsed by:951
Symbol 910 GraphicUsed by:951
Symbol 911 GraphicUsed by:951
Symbol 912 GraphicUsed by:951
Symbol 913 GraphicUsed by:951
Symbol 914 GraphicUsed by:951
Symbol 915 GraphicUsed by:951
Symbol 916 GraphicUsed by:951
Symbol 917 GraphicUsed by:951
Symbol 918 GraphicUsed by:951
Symbol 919 GraphicUsed by:951
Symbol 920 GraphicUsed by:951
Symbol 921 GraphicUsed by:951
Symbol 922 GraphicUsed by:951
Symbol 923 GraphicUsed by:951
Symbol 924 GraphicUsed by:951
Symbol 925 GraphicUsed by:951
Symbol 926 GraphicUsed by:951
Symbol 927 GraphicUsed by:951
Symbol 928 GraphicUsed by:951
Symbol 929 GraphicUsed by:951
Symbol 930 GraphicUsed by:951
Symbol 931 GraphicUsed by:951
Symbol 932 GraphicUsed by:951
Symbol 933 GraphicUsed by:951
Symbol 934 GraphicUsed by:951
Symbol 935 GraphicUsed by:951
Symbol 936 GraphicUsed by:951
Symbol 937 GraphicUsed by:951
Symbol 938 GraphicUsed by:951
Symbol 939 GraphicUsed by:951
Symbol 940 GraphicUsed by:951
Symbol 941 GraphicUsed by:951
Symbol 942 GraphicUsed by:951
Symbol 943 GraphicUsed by:951
Symbol 944 GraphicUsed by:951
Symbol 945 GraphicUsed by:951
Symbol 946 GraphicUsed by:951
Symbol 947 GraphicUsed by:951
Symbol 948 ShapeTweeningUsed by:951
Symbol 949 GraphicUsed by:951
Symbol 950 GraphicUsed by:951
Symbol 951 MovieClip {Boss3MC}Uses:511 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 567 569 937 571 938 573 575 939 577 940 579 581 941 583 942 817 943 663 664 944 666 585 945 587 946 589 591 947 593 948 949 595 597 598 671 673 599 674 675 682 676 677 685 678 679 680 681 683 684 686 950 687 688 689 690 691 692 693

Instance Names

"gb"Frame 2Symbol 156 MovieClip {GB}
"fx"Symbol 147 MovieClip {PlayBtn} Frame 1Symbol 140 MovieClip {Symbol55555}
"bar"Symbol 156 MovieClip {GB} Frame 1Symbol 89 MovieClip
"btn2"Symbol 156 MovieClip {GB} Frame 1Symbol 95 Button
"AS"Symbol 156 MovieClip {GB} Frame 3Symbol 111 MovieClip {dude}
"playBtn_mc"Symbol 156 MovieClip {GB} Frame 3Symbol 147 MovieClip {PlayBtn}
"btn1"Symbol 156 MovieClip {GB} Frame 4Symbol 149 Button
"btnStartGame"Symbol 248 MovieClip {StartGameMC} Frame 1Symbol 238 Button
"btnInstructions"Symbol 248 MovieClip {StartGameMC} Frame 1Symbol 241 Button
"btnMoreGames"Symbol 248 MovieClip {StartGameMC} Frame 1Symbol 244 Button
"btnAddictingGame"Symbol 248 MovieClip {StartGameMC} Frame 1Symbol 247 Button
"bar"Symbol 387 MovieClip Frame 1Symbol 386 MovieClip
"healthBar"Symbol 419 MovieClip {ToolsMC} Frame 1Symbol 387 MovieClip
"weapon"Symbol 419 MovieClip {ToolsMC} Frame 1Symbol 404 MovieClip {ZombieAvengerCS3_fla.Timeline_109}
"m2Num"Symbol 419 MovieClip {ToolsMC} Frame 1Symbol 406 EditableText
"m3Num"Symbol 419 MovieClip {ToolsMC} Frame 1Symbol 407 EditableText
"timeTxt"Symbol 419 MovieClip {ToolsMC} Frame 1Symbol 411 EditableText
"killedTxt"Symbol 419 MovieClip {ToolsMC} Frame 1Symbol 412 EditableText
"btnPause"Symbol 419 MovieClip {ToolsMC} Frame 1Symbol 418 Button
"sensor"Symbol 463 MovieClip {ZombieAvengerCS3_fla.Timeline_84} Frame 1Symbol 460 MovieClip
"gun"Symbol 482 MovieClip {ZombieAvengerCS3_fla.Timeline_83} Frame 1Symbol 463 MovieClip {ZombieAvengerCS3_fla.Timeline_84}
"gun"Symbol 507 MovieClip {HeroMC} Frame 1Symbol 482 MovieClip {ZombieAvengerCS3_fla.Timeline_83}
"gun"Symbol 507 MovieClip {HeroMC} Frame 130Symbol 463 MovieClip {ZombieAvengerCS3_fla.Timeline_84}
"gun"Symbol 507 MovieClip {HeroMC} Frame 132Symbol 482 MovieClip {ZombieAvengerCS3_fla.Timeline_83}
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 93Symbol 543 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 101Symbol 546 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 103Symbol 548 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 105Symbol 550 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 107Symbol 552 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 109Symbol 554 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 111Symbol 556 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 113Symbol 558 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 115Symbol 560 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 117Symbol 562 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 179Symbol 543 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 187Symbol 546 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 189Symbol 548 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 191Symbol 550 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 193Symbol 552 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 195Symbol 554 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 197Symbol 556 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 199Symbol 558 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 201Symbol 560 MovieClip
"boss2fire"Symbol 610 MovieClip {Boss2MC} Frame 203Symbol 562 MovieClip
"btnStartGame"Symbol 617 MovieClip {InstructionMC} Frame 1Symbol 238 Button
"btnBackToMenu"Symbol 617 MovieClip {InstructionMC} Frame 1Symbol 616 Button
"knifeP"Symbol 761 MovieClip {WitchMC} Frame 43Symbol 750 MovieClip {knifePoint}
"btnMainMenu"Symbol 858 MovieClip {WinMC} Frame 1Symbol 616 Button
"timeTxt"Symbol 858 MovieClip {WinMC} Frame 1Symbol 849 EditableText
"killedTxt"Symbol 858 MovieClip {WinMC} Frame 1Symbol 850 EditableText
"totalScoreTxt"Symbol 858 MovieClip {WinMC} Frame 1Symbol 851 EditableText
"btnMoreGames"Symbol 858 MovieClip {WinMC} Frame 1Symbol 244 Button
"timeTxt"Symbol 871 MovieClip {GameOverMC} Frame 1Symbol 865 EditableText
"killedTxt"Symbol 871 MovieClip {GameOverMC} Frame 1Symbol 866 EditableText
"totalScoreTxt"Symbol 871 MovieClip {GameOverMC} Frame 1Symbol 867 EditableText
"btnBackToMenu"Symbol 871 MovieClip {GameOverMC} Frame 1Symbol 616 Button
"btnMoreGames"Symbol 871 MovieClip {GameOverMC} Frame 1Symbol 244 Button
"btnNextGames"Symbol 871 MovieClip {GameOverMC} Frame 1Symbol 870 Button
"btnNextLevel"Symbol 886 MovieClip {LevelFinishedMC} Frame 1Symbol 875 Button
"timeTxt"Symbol 886 MovieClip {LevelFinishedMC} Frame 1Symbol 876 EditableText
"killedTxt"Symbol 886 MovieClip {LevelFinishedMC} Frame 1Symbol 877 EditableText
"totalScoreTxt"Symbol 886 MovieClip {LevelFinishedMC} Frame 1Symbol 878 EditableText
"levelTxt"Symbol 886 MovieClip {LevelFinishedMC} Frame 1Symbol 879 EditableText
"btnMoreGames"Symbol 886 MovieClip {LevelFinishedMC} Frame 1Symbol 244 Button
"btnNextGame"Symbol 886 MovieClip {LevelFinishedMC} Frame 1Symbol 870 Button

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS3.

Labels

"up"Symbol 147 MovieClip {PlayBtn} Frame 1
"over"Symbol 147 MovieClip {PlayBtn} Frame 2
"down"Symbol 147 MovieClip {PlayBtn} Frame 3
"rel"Symbol 147 MovieClip {PlayBtn} Frame 4
"loaded"Symbol 156 MovieClip {GB} Frame 3
"pauseOff"Symbol 223 MovieClip {PauseMC} Frame 1
"pauseOn"Symbol 223 MovieClip {PauseMC} Frame 2
"explode"Symbol 292 MovieClip {m1} Frame 2
"explode"Symbol 353 MovieClip {m2} Frame 2
"explode"Symbol 383 MovieClip {m3} Frame 2
"m1"Symbol 404 MovieClip {ZombieAvengerCS3_fla.Timeline_109} Frame 1
"m2"Symbol 404 MovieClip {ZombieAvengerCS3_fla.Timeline_109} Frame 2
"m3"Symbol 404 MovieClip {ZombieAvengerCS3_fla.Timeline_109} Frame 3
"shot1"Symbol 482 MovieClip {ZombieAvengerCS3_fla.Timeline_83} Frame 2
"shot2"Symbol 482 MovieClip {ZombieAvengerCS3_fla.Timeline_83} Frame 6
"shot3"Symbol 482 MovieClip {ZombieAvengerCS3_fla.Timeline_83} Frame 9
"standBy"Symbol 507 MovieClip {HeroMC} Frame 1
"move"Symbol 507 MovieClip {HeroMC} Frame 18
"jump"Symbol 507 MovieClip {HeroMC} Frame 36
"fall"Symbol 507 MovieClip {HeroMC} Frame 48
"backwardmove"Symbol 507 MovieClip {HeroMC} Frame 112
"death"Symbol 507 MovieClip {HeroMC} Frame 130
"standBy"Symbol 610 MovieClip {Boss2MC} Frame 1
"move"Symbol 610 MovieClip {Boss2MC} Frame 34
"jump"Symbol 610 MovieClip {Boss2MC} Frame 67
"fall"Symbol 610 MovieClip {Boss2MC} Frame 71
"attack"Symbol 610 MovieClip {Boss2MC} Frame 80
"hurt"Symbol 610 MovieClip {Boss2MC} Frame 130
"death"Symbol 610 MovieClip {Boss2MC} Frame 148
"dead"Symbol 610 MovieClip {Boss2MC} Frame 165
"attack1"Symbol 610 MovieClip {Boss2MC} Frame 166
"standBy"Symbol 695 MovieClip {SkeletonMC} Frame 1
"move"Symbol 695 MovieClip {SkeletonMC} Frame 2
"attack"Symbol 695 MovieClip {SkeletonMC} Frame 29
"death"Symbol 695 MovieClip {SkeletonMC} Frame 54
"dead"Symbol 695 MovieClip {SkeletonMC} Frame 99
"standBy"Symbol 731 MovieClip {GreenGhostMC} Frame 1
"move"Symbol 731 MovieClip {GreenGhostMC} Frame 2
"jump"Symbol 731 MovieClip {GreenGhostMC} Frame 32
"fall"Symbol 731 MovieClip {GreenGhostMC} Frame 42
"attack"Symbol 731 MovieClip {GreenGhostMC} Frame 53
"death"Symbol 731 MovieClip {GreenGhostMC} Frame 77
"dead"Symbol 731 MovieClip {GreenGhostMC} Frame 121
"standBy"Symbol 761 MovieClip {WitchMC} Frame 1
"move"Symbol 761 MovieClip {WitchMC} Frame 2
"jump"Symbol 761 MovieClip {WitchMC} Frame 18
"fall"Symbol 761 MovieClip {WitchMC} Frame 24
"attack"Symbol 761 MovieClip {WitchMC} Frame 34
"death"Symbol 761 MovieClip {WitchMC} Frame 58
"dead"Symbol 761 MovieClip {WitchMC} Frame 101
"standBy"Symbol 793 MovieClip {ZombieMC} Frame 1
"move"Symbol 793 MovieClip {ZombieMC} Frame 2
"attack"Symbol 793 MovieClip {ZombieMC} Frame 18
"death"Symbol 793 MovieClip {ZombieMC} Frame 42
"dead"Symbol 793 MovieClip {ZombieMC} Frame 100
"standBy"Symbol 828 MovieClip {Boss1MC} Frame 1
"move"Symbol 828 MovieClip {Boss1MC} Frame 2
"jump"Symbol 828 MovieClip {Boss1MC} Frame 10
"fall"Symbol 828 MovieClip {Boss1MC} Frame 18
"attack"Symbol 828 MovieClip {Boss1MC} Frame 31
"hurt"Symbol 828 MovieClip {Boss1MC} Frame 55
"death"Symbol 828 MovieClip {Boss1MC} Frame 77
"dead"Symbol 828 MovieClip {Boss1MC} Frame 109
"standBy"Symbol 951 MovieClip {Boss3MC} Frame 1
"move"Symbol 951 MovieClip {Boss3MC} Frame 26
"attack"Symbol 951 MovieClip {Boss3MC} Frame 62
"hurt"Symbol 951 MovieClip {Boss3MC} Frame 93
"death"Symbol 951 MovieClip {Boss3MC} Frame 115
"dead"Symbol 951 MovieClip {Boss3MC} Frame 155




http://swfchan.com/24/119576/info.shtml
Created: 5/3 -2019 19:23:37 Last modified: 5/3 -2019 19:23:37 Server time: 20/04 -2024 11:40:22