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

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

2475.swf

This is the info page for
Flash #109369

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


Text
100

100

100

pop

corn

PLAY

INSTRUCTIONS

BACK

BACK

INSTRUCTION

Identify the desired item from the customers.
Prepare and serve the popcorn and juice before
the kid’s waiting time exceeds.
If you have prepared the  wrong item , throw it
into the trash bin.
In each level, try to satisfy  maximum  kids and
get the target points within the given time
duration to proceed to tougher levels.
Game Controls
Use the mouse to interact.
To mute the sound, click Mute button.
To bring the game to pause, press spacebar.

SCORE

LEVEL

TIME

TARGET

0

0

1

0

PAUSE

LEVEL SCORE

GAME SCORE

LEVEL-UP

NEXT LEVEL

NEXT LEVEL

NEXT LEVEL

NEXT LEVEL

0

0

ENTER NAME

COUNTRY

SUBMIT SCORE

SUBMIT SCORE

SUBMIT SCORE

SUBMIT SCORE

PLAY AGAIN

GAME OVER

MORE GAMES

MORE GAMES

0

0

Ok

CONGRATULATION

0

0

ActionScript [AS3]

Section 1
//BaseScrollPane (fl.containers.BaseScrollPane) package fl.containers { import fl.core.*; import fl.controls.*; import flash.display.*; import flash.events.*; import flash.geom.*; import fl.events.*; public class BaseScrollPane extends UIComponent { protected var defaultLineScrollSize:Number;// = 4 protected var _maxHorizontalScrollPosition:Number;// = 0 protected var vScrollBar:Boolean; protected var disabledOverlay:Shape; protected var hScrollBar:Boolean; protected var availableWidth:Number; protected var _verticalPageScrollSize:Number;// = 0 protected var vOffset:Number;// = 0 protected var _verticalScrollBar:ScrollBar; protected var useFixedHorizontalScrolling:Boolean;// = false protected var contentWidth:Number;// = 0 protected var contentHeight:Number;// = 0 protected var _horizontalPageScrollSize:Number;// = 0 protected var background:DisplayObject; protected var _useBitmpScrolling:Boolean;// = false protected var contentPadding:Number;// = 0 protected var availableHeight:Number; protected var _horizontalScrollBar:ScrollBar; protected var contentScrollRect:Rectangle; protected var _horizontalScrollPolicy:String; protected var _verticalScrollPolicy:String; protected static const SCROLL_BAR_STYLES:Object = {upArrowDisabledSkin:"upArrowDisabledSkin", upArrowDownSkin:"upArrowDownSkin", upArrowOverSkin:"upArrowOverSkin", upArrowUpSkin:"upArrowUpSkin", downArrowDisabledSkin:"downArrowDisabledSkin", downArrowDownSkin:"downArrowDownSkin", downArrowOverSkin:"downArrowOverSkin", downArrowUpSkin:"downArrowUpSkin", thumbDisabledSkin:"thumbDisabledSkin", thumbDownSkin:"thumbDownSkin", thumbOverSkin:"thumbOverSkin", thumbUpSkin:"thumbUpSkin", thumbIcon:"thumbIcon", trackDisabledSkin:"trackDisabledSkin", trackDownSkin:"trackDownSkin", trackOverSkin:"trackOverSkin", trackUpSkin:"trackUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; private static var defaultStyles:Object = {repeatDelay:500, repeatInterval:35, skin:"ScrollPane_upSkin", contentPadding:0, disabledAlpha:0.5}; public function BaseScrollPane(){ contentWidth = 0; contentHeight = 0; contentPadding = 0; vOffset = 0; _maxHorizontalScrollPosition = 0; _horizontalPageScrollSize = 0; _verticalPageScrollSize = 0; defaultLineScrollSize = 4; useFixedHorizontalScrolling = false; _useBitmpScrolling = false; super(); } protected function handleWheel(_arg1:MouseEvent):void{ if (((((!(enabled)) || (!(_verticalScrollBar.visible)))) || ((contentHeight <= availableHeight)))){ return; }; _verticalScrollBar.scrollPosition = (_verticalScrollBar.scrollPosition - (_arg1.delta * verticalLineScrollSize)); setVerticalScrollPosition(_verticalScrollBar.scrollPosition); dispatchEvent(new ScrollEvent(ScrollBarDirection.VERTICAL, _arg1.delta, horizontalScrollPosition)); } public function get verticalScrollPosition():Number{ return (_verticalScrollBar.scrollPosition); } protected function drawDisabledOverlay():void{ if (enabled){ if (contains(disabledOverlay)){ removeChild(disabledOverlay); }; } else { disabledOverlay.x = (disabledOverlay.y = contentPadding); disabledOverlay.width = availableWidth; disabledOverlay.height = availableHeight; disabledOverlay.alpha = (getStyleValue("disabledAlpha") as Number); addChild(disabledOverlay); }; } public function set verticalScrollPosition(_arg1:Number):void{ drawNow(); _verticalScrollBar.scrollPosition = _arg1; setVerticalScrollPosition(_verticalScrollBar.scrollPosition, false); } protected function setContentSize(_arg1:Number, _arg2:Number):void{ if ((((((contentWidth == _arg1)) || (useFixedHorizontalScrolling))) && ((contentHeight == _arg2)))){ return; }; contentWidth = _arg1; contentHeight = _arg2; invalidate(InvalidationType.SIZE); } public function get horizontalScrollPosition():Number{ return (_horizontalScrollBar.scrollPosition); } public function get horizontalScrollBar():ScrollBar{ return (_horizontalScrollBar); } override public function set enabled(_arg1:Boolean):void{ if (enabled == _arg1){ return; }; _verticalScrollBar.enabled = _arg1; _horizontalScrollBar.enabled = _arg1; super.enabled = _arg1; } public function get verticalLineScrollSize():Number{ return (_verticalScrollBar.lineScrollSize); } public function get horizontalScrollPolicy():String{ return (_horizontalScrollPolicy); } protected function calculateAvailableSize():void{ var _local1:Number; var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; _local1 = ScrollBar.WIDTH; _local2 = (contentPadding = Number(getStyleValue("contentPadding"))); _local3 = ((height - (2 * _local2)) - vOffset); vScrollBar = (((_verticalScrollPolicy == ScrollPolicy.ON)) || ((((_verticalScrollPolicy == ScrollPolicy.AUTO)) && ((contentHeight > _local3))))); _local4 = ((width - (vScrollBar) ? _local1 : 0) - (2 * _local2)); _local5 = (useFixedHorizontalScrolling) ? _maxHorizontalScrollPosition : (contentWidth - _local4); hScrollBar = (((_horizontalScrollPolicy == ScrollPolicy.ON)) || ((((_horizontalScrollPolicy == ScrollPolicy.AUTO)) && ((_local5 > 0))))); if (hScrollBar){ _local3 = (_local3 - _local1); }; if (((((((hScrollBar) && (!(vScrollBar)))) && ((_verticalScrollPolicy == ScrollPolicy.AUTO)))) && ((contentHeight > _local3)))){ vScrollBar = true; _local4 = (_local4 - _local1); }; availableHeight = (_local3 + vOffset); availableWidth = _local4; } public function get maxVerticalScrollPosition():Number{ drawNow(); return (Math.max(0, (contentHeight - availableHeight))); } public function set horizontalScrollPosition(_arg1:Number):void{ drawNow(); _horizontalScrollBar.scrollPosition = _arg1; setHorizontalScrollPosition(_horizontalScrollBar.scrollPosition, false); } public function get horizontalLineScrollSize():Number{ return (_horizontalScrollBar.lineScrollSize); } public function set verticalPageScrollSize(_arg1:Number):void{ _verticalPageScrollSize = _arg1; invalidate(InvalidationType.SIZE); } public function get verticalScrollPolicy():String{ return (_verticalScrollPolicy); } protected function setHorizontalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ } public function get useBitmapScrolling():Boolean{ return (_useBitmpScrolling); } protected function handleScroll(_arg1:ScrollEvent):void{ if (_arg1.target == _verticalScrollBar){ setVerticalScrollPosition(_arg1.position); } else { setHorizontalScrollPosition(_arg1.position); }; } public function set verticalLineScrollSize(_arg1:Number):void{ _verticalScrollBar.lineScrollSize = _arg1; } public function get verticalScrollBar():ScrollBar{ return (_verticalScrollBar); } protected function setVerticalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ } public function set horizontalPageScrollSize(_arg1:Number):void{ _horizontalPageScrollSize = _arg1; invalidate(InvalidationType.SIZE); } override protected function draw():void{ if (isInvalid(InvalidationType.STYLES)){ setStyles(); drawBackground(); if (contentPadding != getStyleValue("contentPadding")){ invalidate(InvalidationType.SIZE, false); }; }; if (isInvalid(InvalidationType.SIZE, InvalidationType.STATE)){ drawLayout(); }; updateChildren(); super.draw(); } public function set horizontalScrollPolicy(_arg1:String):void{ _horizontalScrollPolicy = _arg1; invalidate(InvalidationType.SIZE); } override protected function configUI():void{ var _local1:Graphics; super.configUI(); contentScrollRect = new Rectangle(0, 0, 85, 85); _verticalScrollBar = new ScrollBar(); _verticalScrollBar.addEventListener(ScrollEvent.SCROLL, handleScroll, false, 0, true); _verticalScrollBar.visible = false; _verticalScrollBar.lineScrollSize = defaultLineScrollSize; addChild(_verticalScrollBar); copyStylesToChild(_verticalScrollBar, SCROLL_BAR_STYLES); _horizontalScrollBar = new ScrollBar(); _horizontalScrollBar.direction = ScrollBarDirection.HORIZONTAL; _horizontalScrollBar.addEventListener(ScrollEvent.SCROLL, handleScroll, false, 0, true); _horizontalScrollBar.visible = false; _horizontalScrollBar.lineScrollSize = defaultLineScrollSize; addChild(_horizontalScrollBar); copyStylesToChild(_horizontalScrollBar, SCROLL_BAR_STYLES); disabledOverlay = new Shape(); _local1 = disabledOverlay.graphics; _local1.beginFill(0xFFFFFF); _local1.drawRect(0, 0, width, height); _local1.endFill(); addEventListener(MouseEvent.MOUSE_WHEEL, handleWheel, false, 0, true); } protected function calculateContentWidth():void{ } public function get verticalPageScrollSize():Number{ if (isNaN(availableHeight)){ drawNow(); }; return (((((_verticalPageScrollSize == 0)) && (!(isNaN(availableHeight))))) ? availableHeight : _verticalPageScrollSize); } protected function drawLayout():void{ calculateAvailableSize(); calculateContentWidth(); background.width = width; background.height = height; if (vScrollBar){ _verticalScrollBar.visible = true; _verticalScrollBar.x = ((width - ScrollBar.WIDTH) - contentPadding); _verticalScrollBar.y = contentPadding; _verticalScrollBar.height = availableHeight; } else { _verticalScrollBar.visible = false; }; _verticalScrollBar.setScrollProperties(availableHeight, 0, (contentHeight - availableHeight), verticalPageScrollSize); setVerticalScrollPosition(_verticalScrollBar.scrollPosition, false); if (hScrollBar){ _horizontalScrollBar.visible = true; _horizontalScrollBar.x = contentPadding; _horizontalScrollBar.y = ((height - ScrollBar.WIDTH) - contentPadding); _horizontalScrollBar.width = availableWidth; } else { _horizontalScrollBar.visible = false; }; _horizontalScrollBar.setScrollProperties(availableWidth, 0, (useFixedHorizontalScrolling) ? _maxHorizontalScrollPosition : (contentWidth - availableWidth), horizontalPageScrollSize); setHorizontalScrollPosition(_horizontalScrollBar.scrollPosition, false); drawDisabledOverlay(); } protected function drawBackground():void{ var _local1:DisplayObject; _local1 = background; background = getDisplayObjectInstance(getStyleValue("skin")); background.width = width; background.height = height; addChildAt(background, 0); if (((!((_local1 == null))) && (!((_local1 == background))))){ removeChild(_local1); }; } public function set horizontalLineScrollSize(_arg1:Number):void{ _horizontalScrollBar.lineScrollSize = _arg1; } public function get horizontalPageScrollSize():Number{ if (isNaN(availableWidth)){ drawNow(); }; return (((((_horizontalPageScrollSize == 0)) && (!(isNaN(availableWidth))))) ? availableWidth : _horizontalPageScrollSize); } public function get maxHorizontalScrollPosition():Number{ drawNow(); return (Math.max(0, (contentWidth - availableWidth))); } protected function setStyles():void{ copyStylesToChild(_verticalScrollBar, SCROLL_BAR_STYLES); copyStylesToChild(_horizontalScrollBar, SCROLL_BAR_STYLES); } protected function updateChildren():void{ _verticalScrollBar.enabled = (_horizontalScrollBar.enabled = enabled); _verticalScrollBar.drawNow(); _horizontalScrollBar.drawNow(); } public function set verticalScrollPolicy(_arg1:String):void{ _verticalScrollPolicy = _arg1; invalidate(InvalidationType.SIZE); } public function set useBitmapScrolling(_arg1:Boolean):void{ _useBitmpScrolling = _arg1; invalidate(InvalidationType.STATE); } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, ScrollBar.getStyleDefinition())); } } }//package fl.containers
Section 2
//CellRenderer (fl.controls.listClasses.CellRenderer) package fl.controls.listClasses { import fl.controls.*; import flash.events.*; public class CellRenderer extends LabelButton implements ICellRenderer { protected var _data:Object; protected var _listData:ListData; private static var defaultStyles:Object = {upSkin:"CellRenderer_upSkin", downSkin:"CellRenderer_downSkin", overSkin:"CellRenderer_overSkin", disabledSkin:"CellRenderer_disabledSkin", selectedDisabledSkin:"CellRenderer_selectedDisabledSkin", selectedUpSkin:"CellRenderer_selectedUpSkin", selectedDownSkin:"CellRenderer_selectedDownSkin", selectedOverSkin:"CellRenderer_selectedOverSkin", textFormat:null, disabledTextFormat:null, embedFonts:null, textPadding:5}; public function CellRenderer():void{ toggle = true; focusEnabled = false; } override protected function toggleSelected(_arg1:MouseEvent):void{ } override public function get selected():Boolean{ return (super.selected); } public function set listData(_arg1:ListData):void{ _listData = _arg1; label = _listData.label; setStyle("icon", _listData.icon); } override public function set selected(_arg1:Boolean):void{ super.selected = _arg1; } public function set data(_arg1:Object):void{ _data = _arg1; } public function get listData():ListData{ return (_listData); } override public function setSize(_arg1:Number, _arg2:Number):void{ super.setSize(_arg1, _arg2); } override protected function drawLayout():void{ var _local1:Number; var _local2:Number; var _local3:Number; _local1 = Number(getStyleValue("textPadding")); _local2 = 0; if (icon != null){ icon.x = _local1; icon.y = Math.round(((height - icon.height) >> 1)); _local2 = (icon.width + _local1); }; if (label.length > 0){ textField.visible = true; _local3 = Math.max(0, ((width - _local2) - (_local1 * 2))); textField.width = _local3; textField.height = (textField.textHeight + 4); textField.x = (_local2 + _local1); textField.y = Math.round(((height - textField.height) >> 1)); } else { textField.visible = false; }; background.width = width; background.height = height; } public function get data():Object{ return (_data); } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controls.listClasses
Section 3
//ICellRenderer (fl.controls.listClasses.ICellRenderer) package fl.controls.listClasses { public interface ICellRenderer { function setSize(_arg1:Number, _arg2:Number):void; function get listData():ListData; function get data():Object; function setMouseState(_arg1:String):void; function set x(_arg1:Number):void; function set y(_arg1:Number):void; function set data(_arg1:Object):void; function set selected(_arg1:Boolean):void; function set listData(_arg1:ListData):void; function get selected():Boolean; } }//package fl.controls.listClasses
Section 4
//ListData (fl.controls.listClasses.ListData) package fl.controls.listClasses { import fl.core.*; public class ListData { protected var _index:uint; protected var _owner:UIComponent; protected var _label:String; protected var _icon:Object;// = null protected var _row:uint; protected var _column:uint; public function ListData(_arg1:String, _arg2:Object, _arg3:UIComponent, _arg4:uint, _arg5:uint, _arg6:uint=0){ _icon = null; super(); _label = _arg1; _icon = _arg2; _owner = _arg3; _index = _arg4; _row = _arg5; _column = _arg6; } public function get owner():UIComponent{ return (_owner); } public function get label():String{ return (_label); } public function get row():uint{ return (_row); } public function get index():uint{ return (_index); } public function get icon():Object{ return (_icon); } public function get column():uint{ return (_column); } } }//package fl.controls.listClasses
Section 5
//BaseButton (fl.controls.BaseButton) package fl.controls { import fl.core.*; import flash.display.*; import flash.events.*; import fl.events.*; import flash.utils.*; public class BaseButton extends UIComponent { protected var _selected:Boolean;// = false private var unlockedMouseState:String; protected var pressTimer:Timer; protected var mouseState:String; protected var background:DisplayObject; private var _mouseStateLocked:Boolean;// = false protected var _autoRepeat: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(){ _selected = false; _autoRepeat = false; _mouseStateLocked = false; super(); buttonMode = true; mouseChildren = false; useHandCursor = false; setupMouseEvents(); setMouseState("up"); pressTimer = new Timer(1, 0); pressTimer.addEventListener(TimerEvent.TIMER, buttonDown, 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 autoRepeat(_arg1:Boolean):void{ _autoRepeat = _arg1; } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; mouseEnabled = _arg1; } public function get selected():Boolean{ return (_selected); } 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(); }; }; }; } public function setMouseState(_arg1:String):void{ if (_mouseStateLocked){ unlockedMouseState = _arg1; return; }; if (mouseState == _arg1){ return; }; mouseState = _arg1; invalidate(InvalidationType.STATE); } protected function startPress():void{ if (_autoRepeat){ pressTimer.delay = Number(getStyleValue("repeatDelay")); pressTimer.start(); }; dispatchEvent(new ComponentEvent(ComponentEvent.BUTTON_DOWN, true)); } 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 set selected(_arg1:Boolean):void{ if (_selected == _arg1){ return; }; _selected = _arg1; invalidate(InvalidationType.STATE); } override public function get enabled():Boolean{ return (super.enabled); } 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 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 drawLayout():void{ background.width = width; background.height = height; } protected function drawBackground():void{ var _local1:String; var _local2:DisplayObject; _local1 = (enabled) ? mouseState : "disabled"; if (selected){ _local1 = (("selected" + _local1.substr(0, 1).toUpperCase()) + _local1.substr(1)); }; _local1 = (_local1 + "Skin"); _local2 = background; background = getDisplayObjectInstance(getStyleValue(_local1)); addChildAt(background, 0); if (((!((_local2 == null))) && (!((_local2 == background))))){ removeChild(_local2); }; } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controls
Section 6
//Button (fl.controls.Button) package fl.controls { import fl.core.*; import flash.display.*; import fl.managers.*; public class Button extends LabelButton implements IFocusManagerComponent { protected var emphasizedBorder:DisplayObject; protected var _emphasized:Boolean;// = false private static var defaultStyles:Object = {emphasizedSkin:"Button_emphasizedSkin", emphasizedPadding:2}; public static var createAccessibilityImplementation:Function; public function Button(){ _emphasized = false; super(); } 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 function set emphasized(_arg1:Boolean):void{ _emphasized = _arg1; invalidate(InvalidationType.STYLES); } override protected function draw():void{ if (((isInvalid(InvalidationType.STYLES)) || (isInvalid(InvalidationType.SIZE)))){ drawEmphasized(); }; super.draw(); if (emphasizedBorder != null){ setChildIndex(emphasizedBorder, (numChildren - 1)); }; } public function get emphasized():Boolean{ return (_emphasized); } override protected function initializeAccessibility():void{ if (Button.createAccessibilityImplementation != null){ Button.createAccessibilityImplementation(this); }; } protected function drawEmphasized():void{ var _local1:Object; var _local2:Number; if (emphasizedBorder != null){ removeChild(emphasizedBorder); }; emphasizedBorder = null; if (!_emphasized){ return; }; _local1 = 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 static function getStyleDefinition():Object{ return (UIComponent.mergeStyles(LabelButton.getStyleDefinition(), defaultStyles)); } } }//package fl.controls
Section 7
//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 8
//ComboBox (fl.controls.ComboBox) package fl.controls { import fl.controls.listClasses.*; import fl.core.*; import flash.display.*; import flash.events.*; import flash.geom.*; import fl.data.*; import fl.managers.*; import fl.events.*; import flash.text.*; import flash.ui.*; public class ComboBox extends UIComponent implements IFocusManagerComponent { protected var _dropdownWidth:Number; protected var highlightedCell:int;// = -1 protected var _prompt:String; protected var isOpen:Boolean;// = false protected var list:List; protected var _rowCount:uint;// = 5 protected var currentIndex:int; protected var isKeyDown:Boolean;// = false protected var _labels:Array; protected var background:BaseButton; protected var inputField:TextInput; protected var listOverIndex:uint; protected var editableValue:String; protected var _editable:Boolean;// = false private var collectionItemImport:SimpleCollectionItem; protected static const BACKGROUND_STYLES:Object = {overSkin:"overSkin", downSkin:"downSkin", upSkin:"upSkin", disabledSkin:"disabledSkin", repeatInterval:"repeatInterval"}; protected static const LIST_STYLES:Object = {upSkin:"comboListUpSkin", overSkin:"comboListOverSkin", downSkin:"comobListDownSkin", disabledSkin:"comboListDisabledSkin", downArrowDisabledSkin:"downArrowDisabledSkin", downArrowDownSkin:"downArrowDownSkin", downArrowOverSkin:"downArrowOverSkin", downArrowUpSkin:"downArrowUpSkin", upArrowDisabledSkin:"upArrowDisabledSkin", upArrowDownSkin:"upArrowDownSkin", upArrowOverSkin:"upArrowOverSkin", upArrowUpSkin:"upArrowUpSkin", thumbDisabledSkin:"thumbDisabledSkin", thumbDownSkin:"thumbDownSkin", thumbOverSkin:"thumbOverSkin", thumbUpSkin:"thumbUpSkin", thumbIcon:"thumbIcon", trackDisabledSkin:"trackDisabledSkin", trackDownSkin:"trackDownSkin", trackOverSkin:"trackOverSkin", trackUpSkin:"trackUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval", textFormat:"textFormat", disabledAlpha:"disabledAlpha", skin:"listSkin"}; private static var defaultStyles:Object = {upSkin:"ComboBox_upSkin", downSkin:"ComboBox_downSkin", overSkin:"ComboBox_overSkin", disabledSkin:"ComboBox_disabledSkin", focusRectSkin:null, focusRectPadding:null, textFormat:null, disabledTextFormat:null, textPadding:3, buttonWidth:24, disabledAlpha:null, listSkin:null}; public static var createAccessibilityImplementation:Function; public function ComboBox(){ _rowCount = 5; _editable = false; isOpen = false; highlightedCell = -1; isKeyDown = false; super(); } protected function drawList():void{ list.rowCount = Math.max(0, Math.min(_rowCount, list.dataProvider.length)); } public function set imeMode(_arg1:String):void{ inputField.imeMode = _arg1; } public function get dropdown():List{ return (list); } public function get dropdownWidth():Number{ return (list.width); } public function sortItemsOn(_arg1:String, _arg2:Object=null){ return (list.sortItemsOn(_arg1, _arg2)); } protected function onEnter(_arg1:ComponentEvent):void{ _arg1.stopPropagation(); } public function removeItemAt(_arg1:uint):void{ list.removeItemAt(_arg1); invalidate(InvalidationType.DATA); } public function open():void{ currentIndex = selectedIndex; if (((isOpen) || ((length == 0)))){ return; }; dispatchEvent(new Event(Event.OPEN)); isOpen = true; addEventListener(Event.ENTER_FRAME, addCloseListener, false, 0, true); positionList(); list.scrollToSelected(); stage.addChild(list); } public function get selectedItem():Object{ return (list.selectedItem); } public function set text(_arg1:String):void{ if (!editable){ return; }; inputField.text = _arg1; } public function get labelField():String{ return (list.labelField); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ var _local2:int; var _local3:uint; var _local4:Number; var _local5:int; isKeyDown = true; if (_arg1.ctrlKey){ switch (_arg1.keyCode){ case Keyboard.UP: if (highlightedCell > -1){ selectedIndex = highlightedCell; dispatchEvent(new Event(Event.CHANGE)); }; close(); break; case Keyboard.DOWN: open(); break; }; return; }; _arg1.stopPropagation(); _local2 = Math.max(((calculateAvailableHeight() / list.rowHeight) << 0), 1); _local3 = selectedIndex; _local4 = ((highlightedCell)==-1) ? selectedIndex : highlightedCell; _local5 = -1; switch (_arg1.keyCode){ case Keyboard.SPACE: if (isOpen){ close(); } else { open(); }; return; case Keyboard.ESCAPE: if (isOpen){ if (highlightedCell > -1){ selectedIndex = selectedIndex; }; close(); }; return; case Keyboard.UP: _local5 = Math.max(0, (_local4 - 1)); break; case Keyboard.DOWN: _local5 = Math.min((length - 1), (_local4 + 1)); break; case Keyboard.PAGE_UP: _local5 = Math.max((_local4 - _local2), 0); break; case Keyboard.PAGE_DOWN: _local5 = Math.min((_local4 + _local2), (length - 1)); break; case Keyboard.HOME: _local5 = 0; break; case Keyboard.END: _local5 = (length - 1); break; case Keyboard.ENTER: if (((_editable) && ((highlightedCell == -1)))){ editableValue = inputField.text; selectedIndex = -1; } else { if (((isOpen) && ((highlightedCell > -1)))){ editableValue = null; selectedIndex = highlightedCell; dispatchEvent(new Event(Event.CHANGE)); }; }; dispatchEvent(new ComponentEvent(ComponentEvent.ENTER)); close(); return; default: if (editable){ break; }; _local5 = list.getNextIndexAtLetter(String.fromCharCode(_arg1.keyCode), _local4); break; }; if (_local5 > -1){ if (isOpen){ highlightCell(_local5); inputField.text = list.itemToLabel(getItemAt(_local5)); } else { highlightCell(); selectedIndex = _local5; dispatchEvent(new Event(Event.CHANGE)); }; }; } public function set dropdownWidth(_arg1:Number):void{ _dropdownWidth = _arg1; invalidate(InvalidationType.SIZE); } public function get editable():Boolean{ return (_editable); } override protected function focusInHandler(_arg1:FocusEvent):void{ super.focusInHandler(_arg1); if (editable){ stage.focus = inputField.textField; }; } protected function onStageClick(_arg1:MouseEvent):void{ if (!isOpen){ return; }; if (((!(contains((_arg1.target as DisplayObject)))) && (!(list.contains((_arg1.target as DisplayObject)))))){ if (highlightedCell != -1){ selectedIndex = highlightedCell; dispatchEvent(new Event(Event.CHANGE)); }; close(); }; } protected function handleDataChange(_arg1:DataChangeEvent):void{ invalidate(InvalidationType.DATA); } override protected function keyUpHandler(_arg1:KeyboardEvent):void{ isKeyDown = false; } protected function onListItemUp(_arg1:MouseEvent):void{ var _local2:*; stage.removeEventListener(MouseEvent.MOUSE_UP, onListItemUp); if (((!((_arg1.target is ICellRenderer))) || (!(list.contains((_arg1.target as DisplayObject)))))){ return; }; editableValue = null; _local2 = selectedIndex; selectedIndex = _arg1.target.listData.index; if (_local2 != selectedIndex){ dispatchEvent(new Event(Event.CHANGE)); }; close(); } public function removeAll():void{ list.removeAll(); inputField.text = ""; invalidate(InvalidationType.DATA); } public function set selectedItem(_arg1:Object):void{ list.selectedItem = _arg1; invalidate(InvalidationType.SELECTED); } protected function highlightCell(_arg1:int=-1):void{ var _local2:ICellRenderer; if (highlightedCell > -1){ _local2 = list.itemToCellRenderer(getItemAt(highlightedCell)); if (_local2 != null){ _local2.setMouseState("up"); }; }; if (_arg1 == -1){ return; }; list.scrollToIndex(_arg1); list.drawNow(); _local2 = list.itemToCellRenderer(getItemAt(_arg1)); if (_local2 != null){ _local2.setMouseState("over"); highlightedCell = _arg1; }; } public function itemToLabel(_arg1:Object):String{ if (_arg1 == null){ return (""); }; return (list.itemToLabel(_arg1)); } public function addItemAt(_arg1:Object, _arg2:uint):void{ list.addItemAt(_arg1, _arg2); invalidate(InvalidationType.DATA); } public function replaceItemAt(_arg1:Object, _arg2:uint):Object{ return (list.replaceItemAt(_arg1, _arg2)); } protected function showPrompt():void{ inputField.text = _prompt; } public function set rowCount(_arg1:uint):void{ _rowCount = _arg1; invalidate(InvalidationType.SIZE); } public function get restrict():String{ return (inputField.restrict); } protected function setEmbedFonts():void{ var _local1:Object; _local1 = getStyleValue("embedFonts"); if (_local1 != null){ inputField.textField.embedFonts = _local1; }; } public function sortItems(... _args){ return (list.sortItems.apply(list, _args)); } public function set labelField(_arg1:String):void{ list.labelField = _arg1; invalidate(InvalidationType.DATA); } public function set editable(_arg1:Boolean):void{ _editable = _arg1; drawTextField(); } public function set prompt(_arg1:String):void{ if (_arg1 == ""){ _prompt = null; } else { _prompt = _arg1; }; invalidate(InvalidationType.STATE); } public function get length():int{ return (list.length); } protected function drawTextField():void{ inputField.setStyle("upSkin", ""); inputField.setStyle("disabledSkin", ""); inputField.enabled = enabled; inputField.editable = _editable; inputField.textField.selectable = ((enabled) && (_editable)); inputField.mouseEnabled = (inputField.mouseChildren = ((enabled) && (_editable))); inputField.focusEnabled = false; if (_editable){ inputField.addEventListener(FocusEvent.FOCUS_IN, onInputFieldFocus, false, 0, true); inputField.addEventListener(FocusEvent.FOCUS_OUT, onInputFieldFocusOut, false, 0, true); } else { inputField.removeEventListener(FocusEvent.FOCUS_IN, onInputFieldFocus); inputField.removeEventListener(FocusEvent.FOCUS_OUT, onInputFieldFocusOut); }; } protected function onInputFieldFocusOut(_arg1:FocusEvent):void{ inputField.removeEventListener(ComponentEvent.ENTER, onEnter); selectedIndex = selectedIndex; } protected function passEvent(_arg1:Event):void{ dispatchEvent(_arg1); } public function get imeMode():String{ return (inputField.imeMode); } public function get labelFunction():Function{ return (list.labelFunction); } protected function calculateAvailableHeight():Number{ var _local1:Number; _local1 = Number(getStyleValue("contentPadding")); return ((list.height - (_local1 * 2))); } public function get selectedIndex():int{ return (list.selectedIndex); } override protected function focusOutHandler(_arg1:FocusEvent):void{ isKeyDown = false; if (isOpen){ if (((!(_arg1.relatedObject)) || (!(list.contains(_arg1.relatedObject))))){ if (((!((highlightedCell == -1))) && (!((highlightedCell == selectedIndex))))){ selectedIndex = highlightedCell; dispatchEvent(new Event(Event.CHANGE)); }; close(); }; }; super.focusOutHandler(_arg1); } public function get selectedLabel():String{ if (editableValue != null){ return (editableValue); }; if (selectedIndex == -1){ return (null); }; return (itemToLabel(selectedItem)); } public function get text():String{ return (inputField.text); } protected function onListChange(_arg1:Event):void{ editableValue = null; dispatchEvent(_arg1); invalidate(InvalidationType.SELECTED); if (isKeyDown){ return; }; close(); } protected function onToggleListVisibility(_arg1:MouseEvent):void{ _arg1.stopPropagation(); dispatchEvent(_arg1); if (isOpen){ close(); } else { open(); stage.addEventListener(MouseEvent.MOUSE_UP, onListItemUp, false, 0, true); }; } override protected function draw():void{ var _local1:*; _local1 = selectedIndex; if ((((_local1 == -1)) && (((((!((prompt == null))) || (editable))) || ((length == 0)))))){ _local1 = Math.max(-1, Math.min(_local1, (length - 1))); } else { editableValue = null; _local1 = Math.max(0, Math.min(_local1, (length - 1))); }; if (list.selectedIndex != _local1){ list.selectedIndex = _local1; invalidate(InvalidationType.SELECTED, false); }; if (isInvalid(InvalidationType.STYLES)){ setStyles(); setEmbedFonts(); invalidate(InvalidationType.SIZE, false); }; if (isInvalid(InvalidationType.SIZE, InvalidationType.DATA, InvalidationType.STATE)){ drawTextFormat(); drawLayout(); invalidate(InvalidationType.DATA); }; if (isInvalid(InvalidationType.DATA)){ drawList(); invalidate(InvalidationType.SELECTED, true); }; if (isInvalid(InvalidationType.SELECTED)){ if ((((_local1 == -1)) && (!((editableValue == null))))){ inputField.text = editableValue; } else { if (_local1 > -1){ if (length > 0){ inputField.horizontalScrollPosition = 0; inputField.text = itemToLabel(list.selectedItem); }; } else { if ((((_local1 == -1)) && (!((_prompt == null))))){ showPrompt(); } else { inputField.text = ""; }; }; }; if (((((editable) && ((selectedIndex > -1)))) && ((stage.focus == inputField.textField)))){ inputField.setSelection(0, inputField.length); }; }; drawTextField(); super.draw(); } public function addItem(_arg1:Object):void{ list.addItem(_arg1); invalidate(InvalidationType.DATA); } public function get rowCount():uint{ return (_rowCount); } override protected function configUI():void{ super.configUI(); background = new BaseButton(); background.focusEnabled = false; copyStylesToChild(background, BACKGROUND_STYLES); background.addEventListener(MouseEvent.MOUSE_DOWN, onToggleListVisibility, false, 0, true); addChild(background); inputField = new TextInput(); inputField.focusTarget = (this as IFocusManagerComponent); inputField.focusEnabled = false; inputField.addEventListener(Event.CHANGE, onTextInput, false, 0, true); addChild(inputField); list = new List(); list.focusEnabled = false; copyStylesToChild(list, LIST_STYLES); list.addEventListener(Event.CHANGE, onListChange, false, 0, true); list.addEventListener(ListEvent.ITEM_CLICK, onListChange, false, 0, true); list.addEventListener(ListEvent.ITEM_ROLL_OUT, passEvent, false, 0, true); list.addEventListener(ListEvent.ITEM_ROLL_OVER, passEvent, false, 0, true); list.verticalScrollBar.addEventListener(Event.SCROLL, passEvent, false, 0, true); } protected function positionList():void{ var _local1:Point; _local1 = localToGlobal(new Point(0, 0)); list.x = _local1.x; if (((_local1.y + height) + list.height) > stage.stageHeight){ list.y = (_local1.y - list.height); } else { list.y = (_local1.y + height); }; } public function get value():String{ var _local1:Object; if (editableValue != null){ return (editableValue); }; _local1 = selectedItem; if (((!(_editable)) && (!((_local1.data == null))))){ return (_local1.data); }; return (itemToLabel(_local1)); } public function get prompt():String{ return (_prompt); } public function set dataProvider(_arg1:DataProvider):void{ _arg1.addEventListener(DataChangeEvent.DATA_CHANGE, handleDataChange, false, 0, true); list.dataProvider = _arg1; invalidate(InvalidationType.DATA); } public function set restrict(_arg1:String):void{ if (((componentInspectorSetting) && ((_arg1 == "")))){ _arg1 = null; }; if (!_editable){ return; }; inputField.restrict = _arg1; } protected function onTextInput(_arg1:Event):void{ _arg1.stopPropagation(); if (!_editable){ return; }; editableValue = inputField.text; selectedIndex = -1; dispatchEvent(new Event(Event.CHANGE)); } protected function onInputFieldFocus(_arg1:FocusEvent):void{ inputField.addEventListener(ComponentEvent.ENTER, onEnter, false, 0, true); close(); } public function getItemAt(_arg1:uint):Object{ return (list.getItemAt(_arg1)); } override protected function initializeAccessibility():void{ if (ComboBox.createAccessibilityImplementation != null){ ComboBox.createAccessibilityImplementation(this); }; } protected function drawLayout():void{ var _local1:Number; var _local2:Number; _local1 = (getStyleValue("buttonWidth") as Number); _local2 = (getStyleValue("textPadding") as Number); background.setSize(width, height); inputField.x = (inputField.y = _local2); inputField.setSize(((width - _local1) - _local2), (height - _local2)); list.width = (isNaN(_dropdownWidth)) ? width : _dropdownWidth; background.enabled = enabled; background.drawNow(); } public function removeItem(_arg1:Object):Object{ return (list.removeItem(_arg1)); } private function addCloseListener(_arg1:Event){ removeEventListener(Event.ENTER_FRAME, addCloseListener); if (!isOpen){ return; }; stage.addEventListener(MouseEvent.MOUSE_DOWN, onStageClick, false, 0, true); } public function get dataProvider():DataProvider{ return (list.dataProvider); } public function get textField():TextInput{ return (inputField); } protected function setStyles():void{ copyStylesToChild(background, BACKGROUND_STYLES); copyStylesToChild(list, LIST_STYLES); } public function set labelFunction(_arg1:Function):void{ list.labelFunction = _arg1; invalidate(InvalidationType.DATA); } protected function drawTextFormat():void{ var _local1:TextFormat; _local1 = (getStyleValue((_enabled) ? "textFormat" : "disabledTextFormat") as TextFormat); if (_local1 == null){ _local1 = new TextFormat(); }; inputField.textField.defaultTextFormat = _local1; inputField.textField.setTextFormat(_local1); setEmbedFonts(); } public function set selectedIndex(_arg1:int):void{ list.selectedIndex = _arg1; highlightCell(); invalidate(InvalidationType.SELECTED); } public function close():void{ highlightCell(); highlightedCell = -1; if (!isOpen){ return; }; dispatchEvent(new Event(Event.CLOSE)); stage.removeEventListener(MouseEvent.MOUSE_DOWN, onStageClick); isOpen = false; stage.removeChild(list); } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, List.getStyleDefinition())); } } }//package fl.controls
Section 9
//LabelButton (fl.controls.LabelButton) package fl.controls { import fl.core.*; import flash.display.*; import flash.events.*; import fl.managers.*; import fl.events.*; import flash.text.*; import flash.ui.*; public class LabelButton extends BaseButton implements IFocusManagerComponent { protected var _labelPlacement:String;// = "right" protected var _toggle:Boolean;// = false protected var icon:DisplayObject; protected var oldMouseState:String; protected var mode:String;// = "center" public var textField:TextField; protected var _label:String;// = "Label" 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; public function LabelButton(){ _labelPlacement = ButtonLabelPlacement.RIGHT; _toggle = false; _label = "Label"; mode = "center"; super(); } protected function toggleSelected(_arg1:MouseEvent):void{ selected = !(selected); dispatchEvent(new Event(Event.CHANGE, true)); } public function get labelPlacement():String{ return (_labelPlacement); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ if (!enabled){ return; }; if (_arg1.keyCode == Keyboard.SPACE){ if (oldMouseState == null){ oldMouseState = mouseState; }; setMouseState("down"); startPress(); }; } protected function setEmbedFont(){ var _local1:Object; _local1 = getStyleValue("embedFonts"); if (_local1 != null){ textField.embedFonts = _local1; }; } 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)); }; } override public function get selected():Boolean{ return ((_toggle) ? _selected : false); } public function set labelPlacement(_arg1:String):void{ _labelPlacement = _arg1; invalidate(InvalidationType.SIZE); } 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); } public function get label():String{ return (_label); } override public function set selected(_arg1:Boolean):void{ _selected = _arg1; if (_toggle){ invalidate(InvalidationType.STATE); }; } 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(); } public function get toggle():Boolean{ return (_toggle); } override protected function configUI():void{ super.configUI(); textField = new TextField(); textField.type = TextFieldType.DYNAMIC; textField.selectable = false; addChild(textField); } override protected function drawLayout():void{ var _local1:Number; var _local2:String; var _local3:Number; var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Number; _local1 = Number(getStyleValue("textPadding")); _local2 = ((((icon == null)) && ((mode == "center")))) ? ButtonLabelPlacement.TOP : _labelPlacement; textField.height = (textField.textHeight + 4); _local3 = (textField.textWidth + 4); _local4 = (textField.textHeight + 4); _local5 = ((icon)==null) ? 0 : (icon.width + _local1); _local6 = ((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(); } override protected function initializeAccessibility():void{ if (LabelButton.createAccessibilityImplementation != null){ LabelButton.createAccessibilityImplementation(this); }; } protected function drawIcon():void{ var _local1:DisplayObject; var _local2:String; var _local3:Object; _local1 = icon; _local2 = (enabled) ? mouseState : "disabled"; if (selected){ _local2 = (("selected" + _local2.substr(0, 1).toUpperCase()) + _local2.substr(1)); }; _local2 = (_local2 + "Icon"); _local3 = 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); } protected function drawTextFormat():void{ var _local1:Object; var _local2:TextFormat; var _local3:TextFormat; _local1 = UIComponent.getStyleDefinition(); _local2 = (enabled) ? (_local1.defaultTextFormat as TextFormat) : (_local1.defaultDisabledTextFormat as TextFormat); textField.setTextFormat(_local2); _local3 = (getStyleValue((enabled) ? "textFormat" : "disabledTextFormat") as TextFormat); if (_local3 != null){ textField.setTextFormat(_local3); } else { _local3 = _local2; }; textField.defaultTextFormat = _local3; setEmbedFont(); } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, BaseButton.getStyleDefinition())); } } }//package fl.controls
Section 10
//List (fl.controls.List) package fl.controls { import fl.controls.listClasses.*; import fl.core.*; import flash.display.*; import flash.events.*; import flash.geom.*; import fl.managers.*; import flash.utils.*; import flash.ui.*; public class List extends SelectableList implements IFocusManagerComponent { protected var _labelField:String;// = "label" protected var _rowHeight:Number;// = 20 protected var _cellRenderer:Object; protected var _iconField:String;// = "icon" protected var _labelFunction:Function; protected var _iconFunction:Function; private static var defaultStyles:Object = {focusRectSkin:null, focusRectPadding:null}; public static var createAccessibilityImplementation:Function; public function List(){ _rowHeight = 20; _labelField = "label"; _iconField = "icon"; super(); } public function get iconField():String{ return (_iconField); } protected function doKeySelection(_arg1:int, _arg2:Boolean, _arg3:Boolean):void{ var _local4:Boolean; var _local5:int; var _local6:Array; var _local7:int; var _local8:int; _local4 = false; if (_arg2){ _local6 = []; _local7 = lastCaretIndex; _local8 = _arg1; if (_local7 == -1){ _local7 = ((caretIndex)!=-1) ? caretIndex : _arg1; }; if (_local7 > _local8){ _local8 = _local7; _local7 = _arg1; }; _local5 = _local7; while (_local5 <= _local8) { _local6.push(_local5); _local5++; }; selectedIndices = _local6; caretIndex = _arg1; _local4 = true; } else { selectedIndex = _arg1; caretIndex = (lastCaretIndex = _arg1); _local4 = true; }; if (_local4){ dispatchEvent(new Event(Event.CHANGE)); }; invalidate(InvalidationType.DATA); } override protected function drawList():void{ var _local1:Rectangle; var _local2:uint; var _local3:uint; var _local4:uint; var _local5:Object; var _local6:ICellRenderer; var _local7:Dictionary; var _local8:Dictionary; var _local9:Boolean; var _local10:String; var _local11:Object; var _local12:Sprite; var _local13:String; listHolder.x = (listHolder.y = contentPadding); _local1 = listHolder.scrollRect; _local1.x = _horizontalScrollPosition; _local1.y = (Math.floor(_verticalScrollPosition) % rowHeight); listHolder.scrollRect = _local1; listHolder.cacheAsBitmap = useBitmapScrolling; _local2 = Math.floor((_verticalScrollPosition / rowHeight)); _local3 = Math.min(length, ((_local2 + rowCount) + 1)); _local7 = (renderedItems = new Dictionary(true)); _local4 = _local2; while (_local4 < _local3) { _local7[_dataProvider.getItemAt(_local4)] = true; _local4++; }; _local8 = new Dictionary(true); while (activeCellRenderers.length > 0) { _local6 = (activeCellRenderers.pop() as ICellRenderer); _local5 = _local6.data; if ((((_local7[_local5] == null)) || ((invalidItems[_local5] == true)))){ availableCellRenderers.push(_local6); } else { _local8[_local5] = _local6; invalidItems[_local5] = true; }; list.removeChild((_local6 as DisplayObject)); }; invalidItems = new Dictionary(true); _local4 = _local2; while (_local4 < _local3) { _local9 = false; _local5 = _dataProvider.getItemAt(_local4); if (_local8[_local5] != null){ _local9 = true; _local6 = _local8[_local5]; delete _local8[_local5]; } else { if (availableCellRenderers.length > 0){ _local6 = (availableCellRenderers.pop() as ICellRenderer); } else { _local6 = (getDisplayObjectInstance(getStyleValue("cellRenderer")) as ICellRenderer); _local12 = (_local6 as Sprite); if (_local12 != null){ _local12.addEventListener(MouseEvent.CLICK, handleCellRendererClick, false, 0, true); _local12.addEventListener(MouseEvent.ROLL_OVER, handleCellRendererMouseEvent, false, 0, true); _local12.addEventListener(MouseEvent.ROLL_OUT, handleCellRendererMouseEvent, false, 0, true); _local12.addEventListener(Event.CHANGE, handleCellRendererChange, false, 0, true); _local12.doubleClickEnabled = true; _local12.addEventListener(MouseEvent.DOUBLE_CLICK, handleCellRendererDoubleClick, false, 0, true); if (_local12["setStyle"] != null){ for (_local13 in rendererStyles) { var _local16 = _local12; _local16["setStyle"](_local13, rendererStyles[_local13]); }; }; }; }; }; list.addChild((_local6 as Sprite)); activeCellRenderers.push(_local6); _local6.y = (rowHeight * (_local4 - _local2)); _local6.setSize((availableWidth + _maxHorizontalScrollPosition), rowHeight); _local10 = itemToLabel(_local5); _local11 = null; if (_iconFunction != null){ _local11 = _iconFunction(_local5); } else { if (_iconField != null){ _local11 = _local5[_iconField]; }; }; if (!_local9){ _local6.data = _local5; }; _local6.listData = new ListData(_local10, _local11, this, _local4, _local4, 0); _local6.selected = !((_selectedIndices.indexOf(_local4) == -1)); if ((_local6 is UIComponent)){ (_local6 as UIComponent).drawNow(); }; _local4++; }; } public function get iconFunction():Function{ return (_iconFunction); } public function set iconField(_arg1:String):void{ if (_arg1 == _iconField){ return; }; _iconField = _arg1; invalidate(InvalidationType.DATA); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ var _local2:int; if (!selectable){ return; }; switch (_arg1.keyCode){ case Keyboard.UP: case Keyboard.DOWN: case Keyboard.END: case Keyboard.HOME: case Keyboard.PAGE_UP: case Keyboard.PAGE_DOWN: moveSelectionVertically(_arg1.keyCode, ((_arg1.shiftKey) && (_allowMultipleSelection)), ((_arg1.ctrlKey) && (_allowMultipleSelection))); break; case Keyboard.LEFT: case Keyboard.RIGHT: moveSelectionHorizontally(_arg1.keyCode, ((_arg1.shiftKey) && (_allowMultipleSelection)), ((_arg1.ctrlKey) && (_allowMultipleSelection))); break; case Keyboard.SPACE: if (caretIndex == -1){ caretIndex = 0; }; doKeySelection(caretIndex, _arg1.shiftKey, _arg1.ctrlKey); scrollToSelected(); break; default: _local2 = getNextIndexAtLetter(String.fromCharCode(_arg1.keyCode), selectedIndex); if (_local2 > -1){ selectedIndex = _local2; scrollToSelected(); }; break; }; _arg1.stopPropagation(); } override public function itemToLabel(_arg1:Object):String{ if (_labelFunction != null){ return (String(_labelFunction(_arg1))); }; return (((_arg1[_labelField])!=null) ? String(_arg1[_labelField]) : ""); } public function get labelField():String{ return (_labelField); } override protected function moveSelectionVertically(_arg1:uint, _arg2:Boolean, _arg3:Boolean):void{ var _local4:int; var _local5:int; var _local6:int; _local4 = Math.max(Math.floor((calculateAvailableHeight() / rowHeight)), 1); _local5 = -1; _local6 = 0; switch (_arg1){ case Keyboard.UP: if (caretIndex > 0){ _local5 = (caretIndex - 1); }; break; case Keyboard.DOWN: if (caretIndex < (length - 1)){ _local5 = (caretIndex + 1); }; break; case Keyboard.PAGE_UP: if (caretIndex > 0){ _local5 = Math.max((caretIndex - _local4), 0); }; break; case Keyboard.PAGE_DOWN: if (caretIndex < (length - 1)){ _local5 = Math.min((caretIndex + _local4), (length - 1)); }; break; case Keyboard.HOME: if (caretIndex > 0){ _local5 = 0; }; break; case Keyboard.END: if (caretIndex < (length - 1)){ _local5 = (length - 1); }; break; }; if (_local5 >= 0){ doKeySelection(_local5, _arg2, _arg3); scrollToSelected(); }; } public function set labelField(_arg1:String):void{ if (_arg1 == _labelField){ return; }; _labelField = _arg1; invalidate(InvalidationType.DATA); } public function set rowCount(_arg1:uint):void{ var _local2:Number; var _local3:Number; _local2 = Number(getStyleValue("contentPadding")); _local3 = ((((_horizontalScrollPolicy == ScrollPolicy.ON)) || ((((_horizontalScrollPolicy == ScrollPolicy.AUTO)) && ((_maxHorizontalScrollPosition > 0)))))) ? 15 : 0; height = (((rowHeight * _arg1) + (2 * _local2)) + _local3); } override protected function setHorizontalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ list.x = -(_arg1); super.setHorizontalScrollPosition(_arg1, true); } public function set iconFunction(_arg1:Function):void{ if (_iconFunction == _arg1){ return; }; _iconFunction = _arg1; invalidate(InvalidationType.DATA); } public function get labelFunction():Function{ return (_labelFunction); } override protected function moveSelectionHorizontally(_arg1:uint, _arg2:Boolean, _arg3:Boolean):void{ } override protected function setVerticalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ invalidate(InvalidationType.SCROLL); super.setVerticalScrollPosition(_arg1, true); } protected function calculateAvailableHeight():Number{ var _local1:Number; _local1 = Number(getStyleValue("contentPadding")); return (((height - (_local1 * 2)) - ((((_horizontalScrollPolicy == ScrollPolicy.ON)) || ((((_horizontalScrollPolicy == ScrollPolicy.AUTO)) && ((_maxHorizontalScrollPosition > 0)))))) ? 15 : 0)); } override protected function draw():void{ var _local1:Boolean; _local1 = !((contentHeight == (rowHeight * length))); contentHeight = (rowHeight * length); if (isInvalid(InvalidationType.STYLES)){ setStyles(); drawBackground(); if (contentPadding != getStyleValue("contentPadding")){ invalidate(InvalidationType.SIZE, false); }; if (_cellRenderer != getStyleValue("cellRenderer")){ _invalidateList(); _cellRenderer = getStyleValue("cellRenderer"); }; }; if (((isInvalid(InvalidationType.SIZE, InvalidationType.STATE)) || (_local1))){ drawLayout(); }; if (isInvalid(InvalidationType.RENDERER_STYLES)){ updateRendererStyles(); }; if (isInvalid(InvalidationType.STYLES, InvalidationType.SIZE, InvalidationType.DATA, InvalidationType.SCROLL, InvalidationType.SELECTED)){ drawList(); }; updateChildren(); validate(); } override protected function configUI():void{ useFixedHorizontalScrolling = true; _horizontalScrollPolicy = ScrollPolicy.AUTO; _verticalScrollPolicy = ScrollPolicy.AUTO; super.configUI(); } override public function get rowCount():uint{ return (Math.ceil((calculateAvailableHeight() / rowHeight))); } override protected function initializeAccessibility():void{ if (List.createAccessibilityImplementation != null){ List.createAccessibilityImplementation(this); }; } override public function scrollToIndex(_arg1:int):void{ var _local2:uint; var _local3:uint; drawNow(); _local2 = (Math.floor(((_verticalScrollPosition + availableHeight) / rowHeight)) - 1); _local3 = Math.ceil((_verticalScrollPosition / rowHeight)); if (_arg1 < _local3){ verticalScrollPosition = (_arg1 * rowHeight); } else { if (_arg1 > _local2){ verticalScrollPosition = (((_arg1 + 1) * rowHeight) - availableHeight); }; }; } public function get rowHeight():Number{ return (_rowHeight); } public function set labelFunction(_arg1:Function):void{ if (_labelFunction == _arg1){ return; }; _labelFunction = _arg1; invalidate(InvalidationType.DATA); } public function set rowHeight(_arg1:Number):void{ _rowHeight = _arg1; invalidate(InvalidationType.SIZE); } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, SelectableList.getStyleDefinition())); } } }//package fl.controls
Section 11
//ScrollBar (fl.controls.ScrollBar) package fl.controls { import fl.core.*; import flash.events.*; import fl.events.*; public class ScrollBar extends UIComponent { private var _direction:String;// = "vertical" protected var inDrag:Boolean;// = false protected var upArrow:BaseButton; private var _pageScrollSize:Number;// = 0 protected var downArrow:BaseButton; private var _pageSize:Number;// = 10 private var thumbScrollOffset:Number; private var _maxScrollPosition:Number;// = 0 private var _scrollPosition:Number;// = 0 protected var track:BaseButton; private var _minScrollPosition:Number;// = 0 private var _lineScrollSize:Number;// = 1 protected var thumb:LabelButton; protected static const THUMB_STYLES:Object = {disabledSkin:"thumbDisabledSkin", downSkin:"thumbDownSkin", overSkin:"thumbOverSkin", upSkin:"thumbUpSkin", icon:"thumbIcon", textPadding:0}; public static const WIDTH:Number = 15; protected static const DOWN_ARROW_STYLES:Object = {disabledSkin:"downArrowDisabledSkin", downSkin:"downArrowDownSkin", overSkin:"downArrowOverSkin", upSkin:"downArrowUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; protected static const UP_ARROW_STYLES:Object = {disabledSkin:"upArrowDisabledSkin", downSkin:"upArrowDownSkin", overSkin:"upArrowOverSkin", upSkin:"upArrowUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; protected static const TRACK_STYLES:Object = {disabledSkin:"trackDisabledSkin", downSkin:"trackDownSkin", overSkin:"trackOverSkin", upSkin:"trackUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; private static var defaultStyles:Object = {downArrowDisabledSkin:"ScrollArrowDown_disabledSkin", downArrowDownSkin:"ScrollArrowDown_downSkin", downArrowOverSkin:"ScrollArrowDown_overSkin", downArrowUpSkin:"ScrollArrowDown_upSkin", thumbDisabledSkin:"ScrollThumb_upSkin", thumbDownSkin:"ScrollThumb_downSkin", thumbOverSkin:"ScrollThumb_overSkin", thumbUpSkin:"ScrollThumb_upSkin", trackDisabledSkin:"ScrollTrack_skin", trackDownSkin:"ScrollTrack_skin", trackOverSkin:"ScrollTrack_skin", trackUpSkin:"ScrollTrack_skin", upArrowDisabledSkin:"ScrollArrowUp_disabledSkin", upArrowDownSkin:"ScrollArrowUp_downSkin", upArrowOverSkin:"ScrollArrowUp_overSkin", upArrowUpSkin:"ScrollArrowUp_upSkin", thumbIcon:"ScrollBar_thumbIcon", repeatDelay:500, repeatInterval:35}; public function ScrollBar(){ _pageSize = 10; _pageScrollSize = 0; _lineScrollSize = 1; _minScrollPosition = 0; _maxScrollPosition = 0; _scrollPosition = 0; _direction = ScrollBarDirection.VERTICAL; inDrag = false; super(); setStyles(); focusEnabled = false; } public function get minScrollPosition():Number{ return (_minScrollPosition); } public function set minScrollPosition(_arg1:Number):void{ setScrollProperties(_pageSize, _arg1, _maxScrollPosition); } public function setScrollPosition(_arg1:Number, _arg2:Boolean=true):void{ var _local3:Number; _local3 = scrollPosition; _scrollPosition = Math.max(_minScrollPosition, Math.min(_maxScrollPosition, _arg1)); if (_local3 == _scrollPosition){ return; }; if (_arg2){ dispatchEvent(new ScrollEvent(_direction, (scrollPosition - _local3), scrollPosition)); }; updateThumb(); } public function set scrollPosition(_arg1:Number):void{ setScrollPosition(_arg1, true); } public function get pageScrollSize():Number{ return (((_pageScrollSize)==0) ? _pageSize : _pageScrollSize); } public function set pageSize(_arg1:Number):void{ if (_arg1 > 0){ _pageSize = _arg1; }; } public function setScrollProperties(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number=0):void{ this.pageSize = _arg1; _minScrollPosition = _arg2; _maxScrollPosition = _arg3; if (_arg4 >= 0){ _pageScrollSize = _arg4; }; enabled = (_maxScrollPosition > _minScrollPosition); setScrollPosition(_scrollPosition, false); updateThumb(); } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; downArrow.enabled = (track.enabled = (thumb.enabled = (upArrow.enabled = ((enabled) && ((_maxScrollPosition > _minScrollPosition)))))); updateThumb(); } protected function updateThumb():void{ var _local1:Number; _local1 = ((_maxScrollPosition - _minScrollPosition) + _pageSize); if ((((((track.height <= 12)) || ((_maxScrollPosition <= _minScrollPosition)))) || ((((_local1 == 0)) || (isNaN(_local1)))))){ thumb.height = 12; thumb.visible = false; } else { thumb.height = Math.max(13, ((_pageSize / _local1) * track.height)); thumb.y = (track.y + ((track.height - thumb.height) * ((_scrollPosition - _minScrollPosition) / (_maxScrollPosition - _minScrollPosition)))); thumb.visible = enabled; }; } protected function thumbPressHandler(_arg1:MouseEvent):void{ inDrag = true; thumbScrollOffset = (mouseY - thumb.y); thumb.mouseStateLocked = true; mouseChildren = false; stage.addEventListener(MouseEvent.MOUSE_MOVE, handleThumbDrag, false, 0, true); stage.addEventListener(MouseEvent.MOUSE_UP, thumbReleaseHandler, false, 0, true); } protected function thumbReleaseHandler(_arg1:MouseEvent):void{ inDrag = false; mouseChildren = true; thumb.mouseStateLocked = false; stage.removeEventListener(MouseEvent.MOUSE_MOVE, handleThumbDrag); stage.removeEventListener(MouseEvent.MOUSE_UP, thumbReleaseHandler); } public function set pageScrollSize(_arg1:Number):void{ if (_arg1 >= 0){ _pageScrollSize = _arg1; }; } protected function handleThumbDrag(_arg1:MouseEvent):void{ var _local2:Number; _local2 = Math.max(0, Math.min((track.height - thumb.height), ((mouseY - track.y) - thumbScrollOffset))); setScrollPosition((((_local2 / (track.height - thumb.height)) * (_maxScrollPosition - _minScrollPosition)) + _minScrollPosition)); } public function set direction(_arg1:String):void{ var _local2:Boolean; if (_direction == _arg1){ return; }; _direction = _arg1; if (isLivePreview){ return; }; setScaleY(1); _local2 = (_direction == ScrollBarDirection.HORIZONTAL); if (((_local2) && (componentInspectorSetting))){ if (rotation == 90){ return; }; setScaleX(-1); rotation = -90; }; if (!componentInspectorSetting){ if (((_local2) && ((rotation == 0)))){ rotation = -90; setScaleX(-1); } else { if (((!(_local2)) && ((rotation == -90)))){ rotation = 0; setScaleX(1); }; }; }; invalidate(InvalidationType.SIZE); } public function set lineScrollSize(_arg1:Number):void{ if (_arg1 > 0){ _lineScrollSize = _arg1; }; } override public function get height():Number{ return (((_direction)==ScrollBarDirection.HORIZONTAL) ? super.width : super.height); } protected function scrollPressHandler(_arg1:ComponentEvent):void{ var _local2:Number; var _local3:Number; _arg1.stopImmediatePropagation(); if (_arg1.currentTarget == upArrow){ setScrollPosition((_scrollPosition - _lineScrollSize)); } else { if (_arg1.currentTarget == downArrow){ setScrollPosition((_scrollPosition + _lineScrollSize)); } else { _local2 = (((track.mouseY / track.height) * (_maxScrollPosition - _minScrollPosition)) + _minScrollPosition); _local3 = ((pageScrollSize)==0) ? pageSize : pageScrollSize; if (_scrollPosition < _local2){ setScrollPosition(Math.min(_local2, (_scrollPosition + _local3))); } else { if (_scrollPosition > _local2){ setScrollPosition(Math.max(_local2, (_scrollPosition - _local3))); }; }; }; }; } public function get pageSize():Number{ return (_pageSize); } public function set maxScrollPosition(_arg1:Number):void{ setScrollProperties(_pageSize, _minScrollPosition, _arg1); } public function get scrollPosition():Number{ return (_scrollPosition); } override public function get enabled():Boolean{ return (super.enabled); } override protected function draw():void{ var _local1:Number; if (isInvalid(InvalidationType.SIZE)){ _local1 = super.height; downArrow.move(0, Math.max(upArrow.height, (_local1 - downArrow.height))); track.setSize(WIDTH, Math.max(0, (_local1 - (downArrow.height + upArrow.height)))); updateThumb(); }; if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ setStyles(); }; downArrow.drawNow(); upArrow.drawNow(); track.drawNow(); thumb.drawNow(); validate(); } override protected function configUI():void{ super.configUI(); track = new BaseButton(); track.move(0, 14); track.useHandCursor = false; track.autoRepeat = true; track.focusEnabled = false; addChild(track); thumb = new LabelButton(); thumb.label = ""; thumb.setSize(WIDTH, 15); thumb.move(0, 15); thumb.focusEnabled = false; addChild(thumb); downArrow = new BaseButton(); downArrow.setSize(WIDTH, 14); downArrow.autoRepeat = true; downArrow.focusEnabled = false; addChild(downArrow); upArrow = new BaseButton(); upArrow.setSize(WIDTH, 14); upArrow.move(0, 0); upArrow.autoRepeat = true; upArrow.focusEnabled = false; addChild(upArrow); upArrow.addEventListener(ComponentEvent.BUTTON_DOWN, scrollPressHandler, false, 0, true); downArrow.addEventListener(ComponentEvent.BUTTON_DOWN, scrollPressHandler, false, 0, true); track.addEventListener(ComponentEvent.BUTTON_DOWN, scrollPressHandler, false, 0, true); thumb.addEventListener(MouseEvent.MOUSE_DOWN, thumbPressHandler, false, 0, true); enabled = false; } public function get direction():String{ return (_direction); } public function get lineScrollSize():Number{ return (_lineScrollSize); } override public function setSize(_arg1:Number, _arg2:Number):void{ if (_direction == ScrollBarDirection.HORIZONTAL){ super.setSize(_arg2, _arg1); } else { super.setSize(_arg1, _arg2); }; } public function get maxScrollPosition():Number{ return (_maxScrollPosition); } override public function get width():Number{ return (((_direction)==ScrollBarDirection.HORIZONTAL) ? super.height : super.width); } protected function setStyles():void{ copyStylesToChild(downArrow, DOWN_ARROW_STYLES); copyStylesToChild(thumb, THUMB_STYLES); copyStylesToChild(track, TRACK_STYLES); copyStylesToChild(upArrow, UP_ARROW_STYLES); } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controls
Section 12
//ScrollBarDirection (fl.controls.ScrollBarDirection) package fl.controls { public class ScrollBarDirection { public static const HORIZONTAL:String = "horizontal"; public static const VERTICAL:String = "vertical"; } }//package fl.controls
Section 13
//ScrollPolicy (fl.controls.ScrollPolicy) package fl.controls { public class ScrollPolicy { public static const OFF:String = "off"; public static const ON:String = "on"; public static const AUTO:String = "auto"; } }//package fl.controls
Section 14
//SelectableList (fl.controls.SelectableList) package fl.controls { import fl.controls.listClasses.*; import fl.core.*; import flash.display.*; import flash.events.*; import fl.data.*; import fl.managers.*; import fl.events.*; import flash.utils.*; import flash.ui.*; import fl.containers.*; public class SelectableList extends BaseScrollPane implements IFocusManagerComponent { protected var invalidItems:Dictionary; protected var renderedItems:Dictionary; protected var listHolder:Sprite; protected var _allowMultipleSelection:Boolean;// = false protected var lastCaretIndex:int;// = -1 protected var _selectedIndices:Array; protected var availableCellRenderers:Array; protected var list:Sprite; protected var caretIndex:int;// = -1 protected var updatedRendererStyles:Object; protected var preChangeItems:Array; protected var activeCellRenderers:Array; protected var rendererStyles:Object; protected var _verticalScrollPosition:Number; protected var _dataProvider:DataProvider; protected var _horizontalScrollPosition:Number; private var collectionItemImport:SimpleCollectionItem; protected var _selectable:Boolean;// = true private static var defaultStyles:Object = {skin:"List_skin", cellRenderer:CellRenderer, contentPadding:null, disabledAlpha:null}; public static var createAccessibilityImplementation:Function; public function SelectableList(){ _allowMultipleSelection = false; _selectable = true; caretIndex = -1; lastCaretIndex = -1; super(); activeCellRenderers = []; availableCellRenderers = []; invalidItems = new Dictionary(true); renderedItems = new Dictionary(true); _selectedIndices = []; if (dataProvider == null){ dataProvider = new DataProvider(); }; verticalScrollPolicy = ScrollPolicy.AUTO; rendererStyles = {}; updatedRendererStyles = {}; } protected function drawList():void{ } public function set allowMultipleSelection(_arg1:Boolean):void{ if (_arg1 == _allowMultipleSelection){ return; }; _allowMultipleSelection = _arg1; if (((!(_arg1)) && ((_selectedIndices.length > 1)))){ _selectedIndices = [_selectedIndices.pop()]; invalidate(InvalidationType.DATA); }; } public function sortItemsOn(_arg1:String, _arg2:Object=null){ return (_dataProvider.sortOn(_arg1, _arg2)); } public function removeItemAt(_arg1:uint):Object{ return (_dataProvider.removeItemAt(_arg1)); } public function get selectedItem():Object{ return (((_selectedIndices.length)==0) ? null : _dataProvider.getItemAt(selectedIndex)); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ if (!selectable){ return; }; switch (_arg1.keyCode){ case Keyboard.UP: case Keyboard.DOWN: case Keyboard.END: case Keyboard.HOME: case Keyboard.PAGE_UP: case Keyboard.PAGE_DOWN: moveSelectionVertically(_arg1.keyCode, ((_arg1.shiftKey) && (_allowMultipleSelection)), ((_arg1.ctrlKey) && (_allowMultipleSelection))); _arg1.stopPropagation(); break; case Keyboard.LEFT: case Keyboard.RIGHT: moveSelectionHorizontally(_arg1.keyCode, ((_arg1.shiftKey) && (_allowMultipleSelection)), ((_arg1.ctrlKey) && (_allowMultipleSelection))); _arg1.stopPropagation(); break; }; } public function get selectable():Boolean{ return (_selectable); } public function itemToCellRenderer(_arg1:Object):ICellRenderer{ var _local2:*; var _local3:ICellRenderer; if (_arg1 != null){ for (_local2 in activeCellRenderers) { _local3 = (activeCellRenderers[_local2] as ICellRenderer); if (_local3.data == _arg1){ return (_local3); }; }; }; return (null); } public function getNextIndexAtLetter(_arg1:String, _arg2:int=-1):int{ var _local3:int; var _local4:Number; var _local5:Number; var _local6:Object; var _local7:String; if (length == 0){ return (-1); }; _arg1 = _arg1.toUpperCase(); _local3 = (length - 1); _local4 = 0; while (_local4 < _local3) { _local5 = ((_arg2 + 1) + _local4); if (_local5 > (length - 1)){ _local5 = (_local5 - length); }; _local6 = getItemAt(_local5); if (_local6 == null){ break; }; _local7 = itemToLabel(_local6); if (_local7 == null){ } else { if (_local7.charAt(0).toUpperCase() == _arg1){ return (_local5); }; }; _local4++; }; return (-1); } public function invalidateList():void{ _invalidateList(); invalidate(InvalidationType.DATA); } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; list.mouseChildren = _enabled; } public function get selectedIndices():Array{ return (_selectedIndices.concat()); } public function set selectable(_arg1:Boolean):void{ if (_arg1 == _selectable){ return; }; if (!_arg1){ selectedIndices = []; }; _selectable = _arg1; } public function itemToLabel(_arg1:Object):String{ return (_arg1["label"]); } public function addItemAt(_arg1:Object, _arg2:uint):void{ _dataProvider.addItemAt(_arg1, _arg2); invalidateList(); } public function replaceItemAt(_arg1:Object, _arg2:uint):Object{ return (_dataProvider.replaceItemAt(_arg1, _arg2)); } protected function handleDataChange(_arg1:DataChangeEvent):void{ var _local2:int; var _local3:int; var _local4:String; var _local5:uint; _local2 = _arg1.startIndex; _local3 = _arg1.endIndex; _local4 = _arg1.changeType; if (_local4 == DataChangeType.INVALIDATE_ALL){ clearSelection(); invalidateList(); } else { if (_local4 == DataChangeType.INVALIDATE){ _local5 = 0; while (_local5 < _arg1.items.length) { invalidateItem(_arg1.items[_local5]); _local5++; }; } else { if (_local4 == DataChangeType.ADD){ _local5 = 0; while (_local5 < _selectedIndices.length) { if (_selectedIndices[_local5] >= _local2){ _selectedIndices[_local5] = (_selectedIndices[_local5] + (_local2 - _local3)); }; _local5++; }; } else { if (_local4 == DataChangeType.REMOVE){ _local5 = 0; while (_local5 < _selectedIndices.length) { if (_selectedIndices[_local5] >= _local2){ if (_selectedIndices[_local5] <= _local3){ delete _selectedIndices[_local5]; } else { _selectedIndices[_local5] = (_selectedIndices[_local5] - ((_local2 - _local3) + 1)); }; }; _local5++; }; } else { if (_local4 == DataChangeType.REMOVE_ALL){ clearSelection(); } else { if (_local4 == DataChangeType.REPLACE){ } else { selectedItems = preChangeItems; preChangeItems = null; }; }; }; }; }; }; invalidate(InvalidationType.DATA); } protected function _invalidateList():void{ availableCellRenderers = []; while (activeCellRenderers.length > 0) { list.removeChild((activeCellRenderers.pop() as DisplayObject)); }; } protected function updateRendererStyles():void{ var _local1:Array; var _local2:uint; var _local3:uint; var _local4:String; _local1 = availableCellRenderers.concat(activeCellRenderers); _local2 = _local1.length; _local3 = 0; while (_local3 < _local2) { if (_local1[_local3].setStyle == null){ } else { for (_local4 in updatedRendererStyles) { _local1[_local3].setStyle(_local4, updatedRendererStyles[_local4]); }; _local1[_local3].drawNow(); }; _local3++; }; updatedRendererStyles = {}; } public function set selectedItem(_arg1:Object):void{ var _local2:int; _local2 = _dataProvider.getItemIndex(_arg1); selectedIndex = _local2; } public function sortItems(... _args){ return (_dataProvider.sort.apply(_dataProvider, _args)); } public function removeAll():void{ _dataProvider.removeAll(); } protected function handleCellRendererChange(_arg1:Event):void{ var _local2:ICellRenderer; var _local3:uint; _local2 = (_arg1.currentTarget as ICellRenderer); _local3 = _local2.listData.index; _dataProvider.invalidateItemAt(_local3); } protected function moveSelectionVertically(_arg1:uint, _arg2:Boolean, _arg3:Boolean):void{ } override protected function setHorizontalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ var _local3:Number; if (_arg1 == _horizontalScrollPosition){ return; }; _local3 = (_arg1 - _horizontalScrollPosition); _horizontalScrollPosition = _arg1; if (_arg2){ dispatchEvent(new ScrollEvent(ScrollBarDirection.HORIZONTAL, _local3, _arg1)); }; } public function scrollToSelected():void{ scrollToIndex(selectedIndex); } public function invalidateItem(_arg1:Object):void{ if (renderedItems[_arg1] == null){ return; }; invalidItems[_arg1] = true; invalidate(InvalidationType.DATA); } protected function handleCellRendererClick(_arg1:MouseEvent):void{ var _local2:ICellRenderer; var _local3:uint; var _local4:int; var _local5:int; var _local6:uint; if (!_enabled){ return; }; _local2 = (_arg1.currentTarget as ICellRenderer); _local3 = _local2.listData.index; if (((!(dispatchEvent(new ListEvent(ListEvent.ITEM_CLICK, false, true, _local2.listData.column, _local2.listData.row, _local3, _local2.data)))) || (!(_selectable)))){ return; }; _local4 = selectedIndices.indexOf(_local3); if (!_allowMultipleSelection){ if (_local4 != -1){ return; }; _local2.selected = true; _selectedIndices = [_local3]; lastCaretIndex = (caretIndex = _local3); } else { if (_arg1.shiftKey){ _local6 = ((_selectedIndices.length)>0) ? _selectedIndices[0] : _local3; _selectedIndices = []; if (_local6 > _local3){ _local5 = _local6; while (_local5 >= _local3) { _selectedIndices.push(_local5); _local5--; }; } else { _local5 = _local6; while (_local5 <= _local3) { _selectedIndices.push(_local5); _local5++; }; }; caretIndex = _local3; } else { if (_arg1.ctrlKey){ if (_local4 != -1){ _local2.selected = false; _selectedIndices.splice(_local4, 1); } else { _local2.selected = true; _selectedIndices.push(_local3); }; caretIndex = _local3; } else { _selectedIndices = [_local3]; lastCaretIndex = (caretIndex = _local3); }; }; }; dispatchEvent(new Event(Event.CHANGE)); invalidate(InvalidationType.DATA); } public function get length():uint{ return (_dataProvider.length); } public function get allowMultipleSelection():Boolean{ return (_allowMultipleSelection); } protected function onPreChange(_arg1:DataChangeEvent):void{ switch (_arg1.changeType){ case DataChangeType.REMOVE: case DataChangeType.ADD: case DataChangeType.INVALIDATE: case DataChangeType.REMOVE_ALL: case DataChangeType.REPLACE: case DataChangeType.INVALIDATE_ALL: break; default: preChangeItems = selectedItems; break; }; } public function getRendererStyle(_arg1:String, _arg2:int=-1):Object{ return (rendererStyles[_arg1]); } override protected function setVerticalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ var _local3:Number; if (_arg1 == _verticalScrollPosition){ return; }; _local3 = (_arg1 - _verticalScrollPosition); _verticalScrollPosition = _arg1; if (_arg2){ dispatchEvent(new ScrollEvent(ScrollBarDirection.VERTICAL, _local3, _arg1)); }; } protected function moveSelectionHorizontally(_arg1:uint, _arg2:Boolean, _arg3:Boolean):void{ } public function set selectedIndices(_arg1:Array):void{ if (!_selectable){ return; }; _selectedIndices = ((_arg1)==null) ? [] : _arg1.concat(); invalidate(InvalidationType.SELECTED); } public function get selectedIndex():int{ return (((_selectedIndices.length)==0) ? -1 : _selectedIndices[(_selectedIndices.length - 1)]); } override protected function draw():void{ super.draw(); } override protected function configUI():void{ super.configUI(); listHolder = new Sprite(); addChild(listHolder); listHolder.scrollRect = contentScrollRect; list = new Sprite(); listHolder.addChild(list); } public function addItem(_arg1:Object):void{ _dataProvider.addItem(_arg1); invalidateList(); } protected function handleCellRendererMouseEvent(_arg1:MouseEvent):void{ var _local2:ICellRenderer; var _local3:String; _local2 = (_arg1.target as ICellRenderer); _local3 = ((_arg1.type)==MouseEvent.ROLL_OVER) ? ListEvent.ITEM_ROLL_OVER : ListEvent.ITEM_ROLL_OUT; dispatchEvent(new ListEvent(_local3, false, false, _local2.listData.column, _local2.listData.row, _local2.listData.index, _local2.data)); } public function clearRendererStyle(_arg1:String, _arg2:int=-1):void{ delete rendererStyles[_arg1]; updatedRendererStyles[_arg1] = null; invalidate(InvalidationType.RENDERER_STYLES); } protected function handleCellRendererDoubleClick(_arg1:MouseEvent):void{ var _local2:ICellRenderer; var _local3:uint; if (!_enabled){ return; }; _local2 = (_arg1.currentTarget as ICellRenderer); _local3 = _local2.listData.index; dispatchEvent(new ListEvent(ListEvent.ITEM_DOUBLE_CLICK, false, true, _local2.listData.column, _local2.listData.row, _local3, _local2.data)); } public function get rowCount():uint{ return (0); } public function isItemSelected(_arg1:Object):Boolean{ return ((selectedItems.indexOf(_arg1) > -1)); } public function set dataProvider(_arg1:DataProvider):void{ if (_dataProvider != null){ _dataProvider.removeEventListener(DataChangeEvent.DATA_CHANGE, handleDataChange); _dataProvider.removeEventListener(DataChangeEvent.PRE_DATA_CHANGE, onPreChange); }; _dataProvider = _arg1; _dataProvider.addEventListener(DataChangeEvent.DATA_CHANGE, handleDataChange, false, 0, true); _dataProvider.addEventListener(DataChangeEvent.PRE_DATA_CHANGE, onPreChange, false, 0, true); clearSelection(); invalidateList(); } override protected function drawLayout():void{ super.drawLayout(); contentScrollRect = listHolder.scrollRect; contentScrollRect.width = availableWidth; contentScrollRect.height = availableHeight; listHolder.scrollRect = contentScrollRect; } public function getItemAt(_arg1:uint):Object{ return (_dataProvider.getItemAt(_arg1)); } override protected function initializeAccessibility():void{ if (SelectableList.createAccessibilityImplementation != null){ SelectableList.createAccessibilityImplementation(this); }; } public function scrollToIndex(_arg1:int):void{ } public function removeItem(_arg1:Object):Object{ return (_dataProvider.removeItem(_arg1)); } public function get dataProvider():DataProvider{ return (_dataProvider); } public function set maxHorizontalScrollPosition(_arg1:Number):void{ _maxHorizontalScrollPosition = _arg1; invalidate(InvalidationType.SIZE); } public function setRendererStyle(_arg1:String, _arg2:Object, _arg3:uint=0):void{ if (rendererStyles[_arg1] == _arg2){ return; }; updatedRendererStyles[_arg1] = _arg2; rendererStyles[_arg1] = _arg2; invalidate(InvalidationType.RENDERER_STYLES); } public function invalidateItemAt(_arg1:uint):void{ var _local2:Object; _local2 = _dataProvider.getItemAt(_arg1); if (_local2 != null){ invalidateItem(_local2); }; } public function set selectedItems(_arg1:Array):void{ var _local2:Array; var _local3:uint; var _local4:int; if (_arg1 == null){ selectedIndices = null; return; }; _local2 = []; _local3 = 0; while (_local3 < _arg1.length) { _local4 = _dataProvider.getItemIndex(_arg1[_local3]); if (_local4 != -1){ _local2.push(_local4); }; _local3++; }; selectedIndices = _local2; } public function clearSelection():void{ selectedIndex = -1; } override public function get maxHorizontalScrollPosition():Number{ return (_maxHorizontalScrollPosition); } public function get selectedItems():Array{ var _local1:Array; var _local2:uint; _local1 = []; _local2 = 0; while (_local2 < _selectedIndices.length) { _local1.push(_dataProvider.getItemAt(_selectedIndices[_local2])); _local2++; }; return (_local1); } public function set selectedIndex(_arg1:int):void{ selectedIndices = ((_arg1)==-1) ? null : [_arg1]; } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, BaseScrollPane.getStyleDefinition())); } } }//package fl.controls
Section 15
//TextInput (fl.controls.TextInput) package fl.controls { import fl.core.*; import flash.display.*; import flash.events.*; import fl.managers.*; import fl.events.*; import flash.text.*; import flash.ui.*; public class TextInput extends UIComponent implements IFocusManagerComponent { protected var _html:Boolean;// = false protected var _savedHTML:String; protected var background:DisplayObject; protected var _editable:Boolean;// = true public var textField:TextField; private static var defaultStyles:Object = {upSkin:"TextInput_upSkin", disabledSkin:"TextInput_disabledSkin", focusRectSkin:null, focusRectPadding:null, textFormat:null, disabledTextFormat:null, textPadding:0, embedFonts:false}; public static var createAccessibilityImplementation:Function; public function TextInput(){ _editable = true; _html = false; super(); } override public function drawFocus(_arg1:Boolean):void{ if (focusTarget != null){ focusTarget.drawFocus(_arg1); return; }; super.drawFocus(_arg1); } public function set imeMode(_arg1:String):void{ _imeMode = _arg1; } override protected function isOurFocus(_arg1:DisplayObject):Boolean{ return ((((_arg1 == textField)) || (super.isOurFocus(_arg1)))); } protected function handleKeyDown(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == Keyboard.ENTER){ dispatchEvent(new ComponentEvent(ComponentEvent.ENTER, true)); }; } public function set text(_arg1:String):void{ textField.text = _arg1; _html = false; invalidate(InvalidationType.DATA); invalidate(InvalidationType.STYLES); } protected function updateTextFieldType():void{ textField.type = (((enabled) && (editable))) ? TextFieldType.INPUT : TextFieldType.DYNAMIC; textField.selectable = enabled; } public function get selectionEndIndex():int{ return (textField.selectionEndIndex); } public function get editable():Boolean{ return (_editable); } override protected function focusInHandler(_arg1:FocusEvent):void{ var _local2:IFocusManager; if (_arg1.target == this){ stage.focus = textField; }; _local2 = focusManager; if (((editable) && (_local2))){ _local2.showFocusIndicator = true; if (((textField.selectable) && ((textField.selectionBeginIndex == textField.selectionBeginIndex)))){ setSelection(0, textField.length); }; }; super.focusInHandler(_arg1); if (editable){ setIMEMode(true); }; } public function get selectionBeginIndex():int{ return (textField.selectionBeginIndex); } public function set alwaysShowSelection(_arg1:Boolean):void{ textField.alwaysShowSelection = _arg1; } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; updateTextFieldType(); } protected function setEmbedFont(){ var _local1:Object; _local1 = getStyleValue("embedFonts"); if (_local1 != null){ textField.embedFonts = _local1; }; } public function get horizontalScrollPosition():int{ return (textField.scrollH); } public function set condenseWhite(_arg1:Boolean):void{ textField.condenseWhite = _arg1; } public function set displayAsPassword(_arg1:Boolean):void{ textField.displayAsPassword = _arg1; } public function set horizontalScrollPosition(_arg1:int):void{ textField.scrollH = _arg1; } public function get restrict():String{ return (textField.restrict); } public function get textWidth():Number{ return (textField.textWidth); } public function get textHeight():Number{ return (textField.textHeight); } public function set editable(_arg1:Boolean):void{ _editable = _arg1; updateTextFieldType(); } public function get maxChars():int{ return (textField.maxChars); } public function get length():int{ return (textField.length); } public function getLineMetrics(_arg1:int):TextLineMetrics{ return (textField.getLineMetrics(_arg1)); } public function get imeMode():String{ return (_imeMode); } override protected function focusOutHandler(_arg1:FocusEvent):void{ super.focusOutHandler(_arg1); if (editable){ setIMEMode(false); }; } public function set htmlText(_arg1:String):void{ if (_arg1 == ""){ text = ""; return; }; _html = true; _savedHTML = _arg1; textField.htmlText = _arg1; invalidate(InvalidationType.DATA); invalidate(InvalidationType.STYLES); } public function get text():String{ return (textField.text); } override public function get enabled():Boolean{ return (super.enabled); } public function get condenseWhite():Boolean{ return (textField.condenseWhite); } public function get alwaysShowSelection():Boolean{ return (textField.alwaysShowSelection); } override protected function draw():void{ var _local1:Object; if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ drawTextFormat(); drawBackground(); _local1 = getStyleValue("embedFonts"); if (_local1 != null){ textField.embedFonts = _local1; }; invalidate(InvalidationType.SIZE, false); }; if (isInvalid(InvalidationType.SIZE)){ drawLayout(); }; super.draw(); } protected function handleTextInput(_arg1:TextEvent):void{ _arg1.stopPropagation(); dispatchEvent(new TextEvent(TextEvent.TEXT_INPUT, true, false, _arg1.text)); } override protected function configUI():void{ super.configUI(); tabChildren = true; textField = new TextField(); addChild(textField); updateTextFieldType(); textField.addEventListener(TextEvent.TEXT_INPUT, handleTextInput, false, 0, true); textField.addEventListener(Event.CHANGE, handleChange, false, 0, true); textField.addEventListener(KeyboardEvent.KEY_DOWN, handleKeyDown, false, 0, true); } public function setSelection(_arg1:int, _arg2:int):void{ textField.setSelection(_arg1, _arg2); } public function get displayAsPassword():Boolean{ return (textField.displayAsPassword); } public function appendText(_arg1:String):void{ textField.appendText(_arg1); } public function set restrict(_arg1:String):void{ if (((componentInspectorSetting) && ((_arg1 == "")))){ _arg1 = null; }; textField.restrict = _arg1; } public function get htmlText():String{ return (textField.htmlText); } protected function drawBackground():void{ var _local1:DisplayObject; var _local2:String; _local1 = background; _local2 = (enabled) ? "upSkin" : "disabledSkin"; background = getDisplayObjectInstance(getStyleValue(_local2)); if (background == null){ return; }; addChildAt(background, 0); if (((((!((_local1 == null))) && (!((_local1 == background))))) && (contains(_local1)))){ removeChild(_local1); }; } override public function setFocus():void{ stage.focus = textField; } protected function drawLayout():void{ var _local1:Number; _local1 = Number(getStyleValue("textPadding")); if (background != null){ background.width = width; background.height = height; }; textField.width = (width - (2 * _local1)); textField.height = (height - (2 * _local1)); textField.x = (textField.y = _local1); } public function set maxChars(_arg1:int):void{ textField.maxChars = _arg1; } public function get maxHorizontalScrollPosition():int{ return (textField.maxScrollH); } protected function drawTextFormat():void{ var _local1:Object; var _local2:TextFormat; var _local3:TextFormat; _local1 = UIComponent.getStyleDefinition(); _local2 = (enabled) ? (_local1.defaultTextFormat as TextFormat) : (_local1.defaultDisabledTextFormat as TextFormat); textField.setTextFormat(_local2); _local3 = (getStyleValue((enabled) ? "textFormat" : "disabledTextFormat") as TextFormat); if (_local3 != null){ textField.setTextFormat(_local3); } else { _local3 = _local2; }; textField.defaultTextFormat = _local3; setEmbedFont(); if (_html){ textField.htmlText = _savedHTML; }; } protected function handleChange(_arg1:Event):void{ _arg1.stopPropagation(); dispatchEvent(new Event(Event.CHANGE, true)); } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controls
Section 16
//ComponentShim (fl.core.ComponentShim) package fl.core { import flash.display.*; public dynamic class ComponentShim extends MovieClip { } }//package fl.core
Section 17
//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 18
//UIComponent (fl.core.UIComponent) package fl.core { import flash.display.*; import flash.events.*; import fl.managers.*; import fl.events.*; import flash.text.*; import flash.utils.*; import flash.system.*; public class UIComponent extends Sprite { protected var _enabled:Boolean;// = true private var _mouseFocusEnabled:Boolean;// = true protected var startHeight:Number; protected var _height:Number; protected var _oldIMEMode:String;// = null protected var startWidth:Number; public var focusTarget:IFocusManagerComponent; protected var errorCaught:Boolean;// = false protected var uiFocusRect:DisplayObject; protected var _width:Number; public var version:String;// = "3.0.0.15" protected var isFocused:Boolean;// = false protected var callLaterMethods:Dictionary; private var _focusEnabled:Boolean;// = true private var tempText:TextField; protected var invalidateFlag:Boolean;// = false protected var _inspector:Boolean;// = false protected var sharedStyles:Object; protected var invalidHash:Object; protected var isLivePreview:Boolean;// = false protected var _imeMode:String;// = null protected var instanceStyles:Object; protected var _x:Number; 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(){ version = "3.0.0.15"; isLivePreview = false; invalidateFlag = false; _enabled = true; isFocused = false; _focusEnabled = true; _mouseFocusEnabled = true; _imeMode = null; _oldIMEMode = null; errorCaught = false; _inspector = false; super(); 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 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); }; } private function callLaterDispatcher(_arg1:Event):void{ var _local2:Dictionary; 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; _local2 = callLaterMethods; for (_local3 in _local2) { _local3(); delete _local2[_local3]; }; inCallLaterPhase = false; } private function addedHandler(_arg1:Event):void{ removeEventListener("addedToStage", addedHandler); initializeFocusManager(); } protected function getStyleValue(_arg1:String):Object{ return (((instanceStyles[_arg1])==null) ? sharedStyles[_arg1] : instanceStyles[_arg1]); } protected function isOurFocus(_arg1:DisplayObject):Boolean{ return ((_arg1 == this)); } override public function get scaleX():Number{ return ((width / startWidth)); } override public function get scaleY():Number{ return ((height / startHeight)); } override public function set height(_arg1:Number):void{ if (_height == _arg1){ return; }; setSize(width, _arg1); } protected function keyDownHandler(_arg1:KeyboardEvent):void{ } 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 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); } 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); } 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; }; }; } public function set enabled(_arg1:Boolean):void{ if (_arg1 == _enabled){ return; }; _enabled = _arg1; invalidate(InvalidationType.STATE); } 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); }; } protected function keyUpHandler(_arg1:KeyboardEvent):void{ } public function set focusEnabled(_arg1:Boolean):void{ _focusEnabled = _arg1; } 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 classDef:Object; var skin = _arg1; classDef = null; 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 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); }; } protected function createFocusManager():void{ if (focusManagers[stage] == null){ focusManagers[stage] = new FocusManager(stage); }; } override public function set visible(_arg1:Boolean):void{ var _local2:String; if (super.visible == _arg1){ return; }; super.visible = _arg1; _local2 = (_arg1) ? ComponentEvent.SHOW : ComponentEvent.HIDE; dispatchEvent(new ComponentEvent(_local2, true)); } 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 x(_arg1:Number):void{ move(_arg1, _y); } public function drawNow():void{ draw(); } override public function set y(_arg1:Number):void{ move(_x, _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")); } 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); } protected function validate():void{ invalidHash = {}; } override public function get height():Number{ return (_height); } public function invalidate(_arg1:String="all", _arg2:Boolean=true):void{ invalidHash[_arg1] = true; if (_arg2){ this.callLater(draw); }; } 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{ } protected function draw():void{ if (isInvalid(InvalidationType.SIZE, InvalidationType.STYLES)){ if (((isFocused) && (focusManager.showFocusIndicator))){ drawFocus(true); }; }; validate(); } protected function configUI():void{ var _local1:Number; var _local2:Number; var _local3:Number; isLivePreview = checkLivePreview(); _local1 = rotation; rotation = 0; _local2 = super.width; _local3 = 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 setScaleX(_arg1:Number):void{ super.scaleX = _arg1; } protected function setScaleY(_arg1:Number):void{ super.scaleY = _arg1; } private function initializeFocusManager():void{ if (stage == null){ addEventListener(Event.ADDED_TO_STAGE, addedHandler, false, 0, true); } else { createFocusManager(); }; } 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 setSize(_arg1:Number, _arg2:Number):void{ _width = _arg1; _height = _arg2; invalidate(InvalidationType.SIZE); dispatchEvent(new ComponentEvent(ComponentEvent.RESIZE, false)); } override public function set width(_arg1:Number):void{ if (_width == _arg1){ return; }; setSize(_arg1, height); } public function setFocus():void{ if (stage){ stage.focus = this; }; } protected function initializeAccessibility():void{ if (UIComponent.createAccessibilityImplementation != null){ UIComponent.createAccessibilityImplementation(this); }; } public function get focusManager():IFocusManager{ var _local1:DisplayObject; _local1 = 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); } 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(); } public function getStyle(_arg1:String):Object{ return (instanceStyles[_arg1]); } public static function getStyleDefinition():Object{ return (defaultStyles); } public static function mergeStyles(... _args):Object{ var _local2:Object; var _local3:uint; var _local4:uint; var _local5:Object; var _local6:String; _local2 = {}; _local3 = _args.length; _local4 = 0; 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 19
//DataProvider (fl.data.DataProvider) package fl.data { import flash.events.*; import fl.events.*; public class DataProvider extends EventDispatcher { protected var data:Array; public function DataProvider(_arg1:Object=null){ if (_arg1 == null){ data = []; } else { data = getDataFromObject(_arg1); }; } protected function dispatchPreChangeEvent(_arg1:String, _arg2:Array, _arg3:int, _arg4:int):void{ dispatchEvent(new DataChangeEvent(DataChangeEvent.PRE_DATA_CHANGE, _arg1, _arg2, _arg3, _arg4)); } public function invalidateItemAt(_arg1:int):void{ checkIndex(_arg1, (data.length - 1)); dispatchChangeEvent(DataChangeType.INVALIDATE, [data[_arg1]], _arg1, _arg1); } public function getItemIndex(_arg1:Object):int{ return (data.indexOf(_arg1)); } protected function getDataFromObject(_arg1:Object):Array{ var _local2:Array; var _local3:Array; var _local4:uint; var _local5:Object; var _local6:XML; var _local7:XMLList; var _local8:XML; var _local9:XMLList; var _local10:XML; var _local11:XMLList; var _local12:XML; if ((_arg1 is Array)){ _local3 = (_arg1 as Array); if (_local3.length > 0){ if ((((_local3[0] is String)) || ((_local3[0] is Number)))){ _local2 = []; _local4 = 0; while (_local4 < _local3.length) { _local5 = {label:String(_local3[_local4]), data:_local3[_local4]}; _local2.push(_local5); _local4++; }; return (_local2); }; }; return (_arg1.concat()); //unresolved jump }; if ((_arg1 is DataProvider)){ return (_arg1.toArray()); }; if ((_arg1 is XML)){ _local6 = (_arg1 as XML); _local2 = []; _local7 = _local6.*; for each (_local8 in _local7) { _arg1 = {}; _local9 = _local8.attributes(); for each (_local10 in _local9) { _arg1[_local10.localName()] = _local10.toString(); }; _local11 = _local8.*; for each (_local12 in _local11) { if (_local12.hasSimpleContent()){ _arg1[_local12.localName()] = _local12.toString(); }; }; _local2.push(_arg1); }; return (_local2); //unresolved jump }; throw (new TypeError((("Error: Type Coercion failed: cannot convert " + _arg1) + " to Array or DataProvider."))); } public function removeItemAt(_arg1:uint):Object{ var _local2:Array; checkIndex(_arg1, (data.length - 1)); dispatchPreChangeEvent(DataChangeType.REMOVE, data.slice(_arg1, (_arg1 + 1)), _arg1, _arg1); _local2 = data.splice(_arg1, 1); dispatchChangeEvent(DataChangeType.REMOVE, _local2, _arg1, _arg1); return (_local2[0]); } public function addItem(_arg1:Object):void{ dispatchPreChangeEvent(DataChangeType.ADD, [_arg1], (data.length - 1), (data.length - 1)); data.push(_arg1); dispatchChangeEvent(DataChangeType.ADD, [_arg1], (data.length - 1), (data.length - 1)); } public function sortOn(_arg1:Object, _arg2:Object=null){ var _local3:Array; dispatchPreChangeEvent(DataChangeType.SORT, data.concat(), 0, (data.length - 1)); _local3 = data.sortOn(_arg1, _arg2); dispatchChangeEvent(DataChangeType.SORT, data.concat(), 0, (data.length - 1)); return (_local3); } public function sort(... _args){ var _local2:Array; dispatchPreChangeEvent(DataChangeType.SORT, data.concat(), 0, (data.length - 1)); _local2 = data.sort.apply(data, _args); dispatchChangeEvent(DataChangeType.SORT, data.concat(), 0, (data.length - 1)); return (_local2); } public function addItems(_arg1:Object):void{ addItemsAt(_arg1, data.length); } public function concat(_arg1:Object):void{ addItems(_arg1); } public function clone():DataProvider{ return (new DataProvider(data)); } public function toArray():Array{ return (data.concat()); } public function get length():uint{ return (data.length); } public function addItemAt(_arg1:Object, _arg2:uint):void{ checkIndex(_arg2, data.length); dispatchPreChangeEvent(DataChangeType.ADD, [_arg1], _arg2, _arg2); data.splice(_arg2, 0, _arg1); dispatchChangeEvent(DataChangeType.ADD, [_arg1], _arg2, _arg2); } public function getItemAt(_arg1:uint):Object{ checkIndex(_arg1, (data.length - 1)); return (data[_arg1]); } override public function toString():String{ return ((("DataProvider [" + data.join(" , ")) + "]")); } public function invalidateItem(_arg1:Object):void{ var _local2:uint; _local2 = getItemIndex(_arg1); if (_local2 == -1){ return; }; invalidateItemAt(_local2); } protected function dispatchChangeEvent(_arg1:String, _arg2:Array, _arg3:int, _arg4:int):void{ dispatchEvent(new DataChangeEvent(DataChangeEvent.DATA_CHANGE, _arg1, _arg2, _arg3, _arg4)); } protected function checkIndex(_arg1:int, _arg2:int):void{ if ((((_arg1 > _arg2)) || ((_arg1 < 0)))){ throw (new RangeError((((("DataProvider index (" + _arg1) + ") is not in acceptable range (0 - ") + _arg2) + ")"))); }; } public function addItemsAt(_arg1:Object, _arg2:uint):void{ var _local3:Array; checkIndex(_arg2, data.length); _local3 = getDataFromObject(_arg1); dispatchPreChangeEvent(DataChangeType.ADD, _local3, _arg2, ((_arg2 + _local3.length) - 1)); data.splice.apply(data, [_arg2, 0].concat(_local3)); dispatchChangeEvent(DataChangeType.ADD, _local3, _arg2, ((_arg2 + _local3.length) - 1)); } public function replaceItem(_arg1:Object, _arg2:Object):Object{ var _local3:int; _local3 = getItemIndex(_arg2); if (_local3 != -1){ return (replaceItemAt(_arg1, _local3)); }; return (null); } public function removeItem(_arg1:Object):Object{ var _local2:int; _local2 = getItemIndex(_arg1); if (_local2 != -1){ return (removeItemAt(_local2)); }; return (null); } public function merge(_arg1:Object):void{ var _local2:Array; var _local3:uint; var _local4:uint; var _local5:uint; var _local6:Object; _local2 = getDataFromObject(_arg1); _local3 = _local2.length; _local4 = data.length; dispatchPreChangeEvent(DataChangeType.ADD, data.slice(_local4, data.length), _local4, (this.data.length - 1)); _local5 = 0; while (_local5 < _local3) { _local6 = _local2[_local5]; if (getItemIndex(_local6) == -1){ data.push(_local6); }; _local5++; }; if (data.length > _local4){ dispatchChangeEvent(DataChangeType.ADD, data.slice(_local4, data.length), _local4, (this.data.length - 1)); } else { dispatchChangeEvent(DataChangeType.ADD, [], -1, -1); }; } public function replaceItemAt(_arg1:Object, _arg2:uint):Object{ var _local3:Array; checkIndex(_arg2, (data.length - 1)); _local3 = [data[_arg2]]; dispatchPreChangeEvent(DataChangeType.REPLACE, _local3, _arg2, _arg2); data[_arg2] = _arg1; dispatchChangeEvent(DataChangeType.REPLACE, _local3, _arg2, _arg2); return (_local3[0]); } public function invalidate():void{ dispatchEvent(new DataChangeEvent(DataChangeEvent.DATA_CHANGE, DataChangeType.INVALIDATE_ALL, data.concat(), 0, data.length)); } public function removeAll():void{ var _local1:Array; _local1 = data.concat(); dispatchPreChangeEvent(DataChangeType.REMOVE_ALL, _local1, 0, _local1.length); data = []; dispatchChangeEvent(DataChangeType.REMOVE_ALL, _local1, 0, _local1.length); } } }//package fl.data
Section 20
//SimpleCollectionItem (fl.data.SimpleCollectionItem) package fl.data { public dynamic class SimpleCollectionItem { public var label:String; public var data:String; public function toString():String{ return ((((("[SimpleCollectionItem: " + label) + ",") + data) + "]")); } } }//package fl.data
Section 21
//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 22
//DataChangeEvent (fl.events.DataChangeEvent) package fl.events { import flash.events.*; public class DataChangeEvent extends Event { protected var _items:Array; protected var _endIndex:uint; protected var _changeType:String; protected var _startIndex:uint; public static const PRE_DATA_CHANGE:String = "preDataChange"; public static const DATA_CHANGE:String = "dataChange"; public function DataChangeEvent(_arg1:String, _arg2:String, _arg3:Array, _arg4:int=-1, _arg5:int=-1):void{ super(_arg1); _changeType = _arg2; _startIndex = _arg4; _items = _arg3; _endIndex = ((_arg5)==-1) ? _startIndex : _arg5; } public function get changeType():String{ return (_changeType); } public function get startIndex():uint{ return (_startIndex); } public function get items():Array{ return (_items); } override public function clone():Event{ return (new DataChangeEvent(type, _changeType, _items, _startIndex, _endIndex)); } override public function toString():String{ return (formatToString("DataChangeEvent", "type", "changeType", "startIndex", "endIndex", "bubbles", "cancelable")); } public function get endIndex():uint{ return (_endIndex); } } }//package fl.events
Section 23
//DataChangeType (fl.events.DataChangeType) package fl.events { public class DataChangeType { public static const ADD:String = "add"; public static const REMOVE:String = "remove"; public static const REMOVE_ALL:String = "removeAll"; public static const CHANGE:String = "change"; public static const REPLACE:String = "replace"; public static const INVALIDATE:String = "invalidate"; public static const INVALIDATE_ALL:String = "invalidateAll"; public static const SORT:String = "sort"; } }//package fl.events
Section 24
//ListEvent (fl.events.ListEvent) package fl.events { import flash.events.*; public class ListEvent extends Event { protected var _index:int; protected var _item:Object; protected var _columnIndex:int; protected var _rowIndex:int; public static const ITEM_DOUBLE_CLICK:String = "itemDoubleClick"; public static const ITEM_ROLL_OUT:String = "itemRollOut"; public static const ITEM_ROLL_OVER:String = "itemRollOver"; public static const ITEM_CLICK:String = "itemClick"; public function ListEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false, _arg4:int=-1, _arg5:int=-1, _arg6:int=-1, _arg7:Object=null){ super(_arg1, _arg2, _arg3); _rowIndex = _arg5; _columnIndex = _arg4; _index = _arg6; _item = _arg7; } public function get rowIndex():Object{ return (_rowIndex); } public function get index():int{ return (_index); } public function get item():Object{ return (_item); } public function get columnIndex():int{ return (_columnIndex); } override public function clone():Event{ return (new ListEvent(type, bubbles, cancelable, _columnIndex, _rowIndex)); } override public function toString():String{ return (formatToString("ListEvent", "type", "bubbles", "cancelable", "columnIndex", "rowIndex", "index", "item")); } } }//package fl.events
Section 25
//ScrollEvent (fl.events.ScrollEvent) package fl.events { import flash.events.*; public class ScrollEvent extends Event { private var _position:Number; private var _direction:String; private var _delta:Number; public static const SCROLL:String = "scroll"; public function ScrollEvent(_arg1:String, _arg2:Number, _arg3:Number){ super(ScrollEvent.SCROLL, false, false); _direction = _arg1; _delta = _arg2; _position = _arg3; } override public function clone():Event{ return (new ScrollEvent(_direction, _delta, _position)); } public function get position():Number{ return (_position); } override public function toString():String{ return (formatToString("ScrollEvent", "type", "bubbles", "cancelable", "direction", "delta", "position")); } public function get delta():Number{ return (_delta); } public function get direction():String{ return (_direction); } } }//package fl.events
Section 26
//FocusManager (fl.managers.FocusManager) package fl.managers { import fl.core.*; import fl.controls.*; import flash.display.*; import flash.events.*; import flash.text.*; import flash.utils.*; 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){ activated = false; calculateCandidates = true; _showFocusIndicator = true; _defaultButtonEnabled = true; super(); 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 _local5:int; var _local6:int; var _local7:DisplayObject; var _local8:IFocusManagerGroup; var _local9:int; var _local10:DisplayObject; var _local11:IFocusManagerGroup; _local5 = focusableCandidates.length; _local6 = _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); } 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)); } private function mouseFocusChangeHandler(_arg1:FocusEvent):void{ if ((_arg1.relatedObject is TextField)){ return; }; _arg1.preventDefault(); } private function focusOutHandler(_arg1:FocusEvent):void{ var _local2:InteractiveObject; _local2 = (_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); } public function findFocusManagerComponent(_arg1:InteractiveObject):InteractiveObject{ var _local2:InteractiveObject; _local2 = _arg1; while (_arg1) { if ((((_arg1 is IFocusManagerComponent)) && (IFocusManagerComponent(_arg1).focusEnabled))){ return (_arg1); }; _arg1 = _arg1.parent; }; return (_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 addedHandler(_arg1:Event):void{ var _local2:DisplayObject; _local2 = DisplayObject(_arg1.target); if (_local2.stage){ addFocusables(DisplayObject(_arg1.target)); }; } 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); } private function tabChildrenChangeHandler(_arg1:Event):void{ var _local2:DisplayObjectContainer; if (_arg1.target != _arg1.currentTarget){ return; }; calculateCandidates = true; _local2 = DisplayObjectContainer(_arg1.target); if (_local2.tabChildren){ addFocusables(_local2, true); } else { removeFocusables(_local2); }; } public function sendDefaultButtonEvent():void{ defButton.dispatchEvent(new MouseEvent(MouseEvent.CLICK)); } public function getFocus():InteractiveObject{ var _local1:InteractiveObject; _local1 = form.stage.focus; return (findFocusManagerComponent(_local1)); } private function isEnabledAndVisible(_arg1:DisplayObject):Boolean{ var _local2:DisplayObjectContainer; var _local3:TextField; var _local4:SimpleButton; _local2 = 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); } public function set defaultButton(_arg1:Button):void{ var _local2:Button; _local2 = (_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 deactivateHandler(_arg1:Event):void{ var _local2:InteractiveObject; _local2 = InteractiveObject(_arg1.target); } public function setFocus(_arg1:InteractiveObject):void{ if ((_arg1 is IFocusManagerComponent)){ IFocusManagerComponent(_arg1).setFocus(); } else { form.stage.focus = _arg1; }; } private function setFocusToNextObject(_arg1:FocusEvent):void{ var _local2:InteractiveObject; if (!hasFocusableObjects()){ return; }; _local2 = getNextFocusManagerComponent(_arg1.shiftKey); if (_local2){ setFocus(_local2); }; } private function hasFocusableObjects():Boolean{ var _local1:Object; for (_local1 in focusableObjects) { return (true); }; return (false); } private function tabIndexChangeHandler(_arg1:Event):void{ calculateCandidates = 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; var _local3:int; _local2 = focusableCandidates.length; _local3 = 0; _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 _local3:DisplayObject; var _local4:InteractiveObject; _local3 = 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 _local3:String; var _local4:String; var _local5:int; var _local6:String; var _local7:String; var _local8:String; var _local9:DisplayObject; var _local10:DisplayObject; _local3 = ""; _local4 = ""; _local8 = "0000"; _local9 = DisplayObject(_arg1); _local10 = 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; _local2 = 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 _local2:DisplayObject; var _local3:String; var _local4:int; var _local5:Boolean; var _local6:int; var _local7:int; var _local8:IFocusManagerGroup; if (!hasFocusableObjects()){ return (null); }; if (calculateCandidates){ sortFocusableObjects(); calculateCandidates = false; }; _local2 = form.stage.focus; _local2 = DisplayObject(findFocusManagerComponent(InteractiveObject(_local2))); _local3 = ""; if ((_local2 is IFocusManagerGroup)){ _local8 = IFocusManagerGroup(_local2); _local3 = _local8.groupName; }; _local4 = getIndexOfFocusedObject(_local2); _local5 = false; _local6 = _local4; if (_local4 == -1){ if (_arg1){ _local4 = focusableCandidates.length; }; _local5 = true; }; _local7 = getIndexOfNextObject(_local4, _arg1, _local5, _local3); return (findFocusManagerComponent(focusableCandidates[_local7])); } private function mouseDownHandler(_arg1:MouseEvent):void{ var _local2:InteractiveObject; if (_arg1.isDefaultPrevented()){ return; }; _local2 = 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; _local2 = _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 _local2:InteractiveObject; var _local3:Button; _local2 = 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{ var _local2:InteractiveObject; var _local3:Boolean; calculateCandidates = true; _local2 = InteractiveObject(_arg1.target); _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 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; } public function get defaultButtonEnabled():Boolean{ return (_defaultButtonEnabled); } } }//package fl.managers
Section 27
//IFocusManager (fl.managers.IFocusManager) package fl.managers { import fl.controls.*; import flash.display.*; 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 get nextTabIndex():int; function get defaultButton():Button; function get showFocusIndicator():Boolean; function setFocus(_arg1:InteractiveObject):void; function activate():void; function showFocus():void; function set defaultButtonEnabled(_arg1:Boolean):void; function hideFocus():void; function findFocusManagerComponent(_arg1:InteractiveObject):InteractiveObject; function getNextFocusManagerComponent(_arg1:Boolean=false):InteractiveObject; } }//package fl.managers
Section 28
//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 29
//IFocusManagerGroup (fl.managers.IFocusManagerGroup) package fl.managers { public interface IFocusManagerGroup { function set groupName(_arg1:String):void; function set selected(_arg1:Boolean):void; function get groupName():String; function get selected():Boolean; } }//package fl.managers
Section 30
//StyleManager (fl.managers.StyleManager) package fl.managers { import fl.core.*; import flash.text.*; import flash.utils.*; public class StyleManager { private var globalStyles:Object; private var classToDefaultStylesDict:Dictionary; private var styleToClassesHash:Object; private var classToStylesDict:Dictionary; private var classToInstancesDict: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; var _local4:Object; _local3 = getClassDef(_arg1); _local4 = 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; var _local5:Object; _local4 = getClassDef(_arg1); _local5 = 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 _local2:StyleManager; var _local3:Class; var _local4:Object; var _local5:String; _local2 = getInstance(); _local3 = getClassDef(_arg1); _local4 = _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; var _local4:Object; _local3 = getClassDef(_arg1); _local4 = 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 _local3:Dictionary; var _local4:Object; var _local5:UIComponent; _local3 = 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 _local2:Dictionary; var _local3:Object; _local2 = getInstance().styleToClassesHash[_arg1]; if (_local2 == null){ return; }; for (_local3 in _local2) { invalidateComponentStyle(Class(_local3), _arg1); }; } public static function registerInstance(_arg1:UIComponent):void{ var inst:StyleManager; var classDef:Class; var target:Class; var defaultStyles:Object; var styleToClasses:Object; var n:String; var instance = _arg1; inst = getInstance(); classDef = 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; 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; var _local4:StyleManager; var _local5:Object; _local3 = getClassDef(_arg1); _local4 = getInstance(); _local5 = _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; _local3 = getInstance().globalStyles; if ((((_local3[_arg1] === _arg2)) && (!((_arg2 is TextFormat))))){ return; }; _local3[_arg1] = _arg2; invalidateStyle(_arg1); } } }//package fl.managers
Section 31
//TweenEvent (gs.events.TweenEvent) package gs.events { import flash.events.*; public class TweenEvent extends Event { public var info:Object; public static const UPDATE:String = "update"; public static const START:String = "start"; public static const version:Number = 0.9; public static const COMPLETE:String = "complete"; public function TweenEvent(_arg1:String, _arg2:Object=null, _arg3:Boolean=false, _arg4:Boolean=false){ super(_arg1, _arg3, _arg4); this.info = _arg2; } override public function clone():Event{ return (new TweenEvent(this.type, this.info, this.bubbles, this.cancelable)); } } }//package gs.events
Section 32
//AutoAlphaPlugin (gs.plugins.AutoAlphaPlugin) package gs.plugins { import flash.display.*; import gs.*; public class AutoAlphaPlugin extends TweenPlugin { protected var _tweenVisible:Boolean; protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function AutoAlphaPlugin(){ this.propName = "autoAlpha"; this.overwriteProps = ["alpha", "visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); if (((!((_target.visible == true))) && (_tweenVisible))){ _target.visible = true; }; } public function onCompleteTween():void{ if (((((_tweenVisible) && (!((_tween.vars.runBackwards == true))))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(!((_arg2 == 0))); _tweenVisible = true; addTween(_arg1, "alpha", _arg1.alpha, _arg2, "alpha"); return (true); } override public function killProps(_arg1:Object):void{ super.killProps(_arg1); _tweenVisible = !(Boolean(("visible" in _arg1))); } } }//package gs.plugins
Section 33
//BevelFilterPlugin (gs.plugins.BevelFilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; public class BevelFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function BevelFilterPlugin(){ this.propName = "bevelFilter"; this.overwriteProps = ["bevelFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = BevelFilter; initFilter(_arg2, new BevelFilter(0, 0, 0xFFFFFF, 0.5, 0, 0.5, 2, 2, 0, ((_arg2.quality) || (2)))); return (true); } } }//package gs.plugins
Section 34
//BezierPlugin (gs.plugins.BezierPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class BezierPlugin extends TweenPlugin { protected var _future:Object; protected var _orient:Boolean; protected var _orientData:Array; protected var _beziers:Object; protected var _target:Object; protected static const _RAD2DEG:Number = 57.2957795130823; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function BezierPlugin(){ _future = {}; super(); this.propName = "bezier"; this.overwriteProps = []; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:String; var _local4:Object; var _local5:Number; var _local6:uint; var _local7:Number; var _local8:int; var _local9:Object; var _local10:Boolean; var _local11:Number; var _local12:Number; var _local13:Array; var _local14:Number; if (_arg1 == 1){ for (_local3 in _beziers) { _local2 = (_beziers[_local3].length - 1); _target[_local3] = _beziers[_local3][_local2][2]; }; } else { for (_local3 in _beziers) { _local6 = _beziers[_local3].length; if (_arg1 < 0){ _local2 = 0; } else { if (_arg1 >= 1){ _local2 = (_local6 - 1); } else { _local2 = int((_local6 * _arg1)); }; }; _local5 = ((_arg1 - (_local2 * (1 / _local6))) * _local6); _local4 = _beziers[_local3][_local2]; if (this.round){ _local7 = (_local4[0] + (_local5 * (((2 * (1 - _local5)) * (_local4[1] - _local4[0])) + (_local5 * (_local4[2] - _local4[0]))))); _local8 = ((_local7)<0) ? -1 : 1; _target[_local3] = ((((_local7 % 1) * _local8))>0.5) ? (int(_local7) + _local8) : int(_local7); } else { _target[_local3] = (_local4[0] + (_local5 * (((2 * (1 - _local5)) * (_local4[1] - _local4[0])) + (_local5 * (_local4[2] - _local4[0]))))); }; }; }; if (_orient){ _local9 = _target; _local10 = this.round; _target = _future; this.round = false; _orient = false; this.changeFactor = (_arg1 + 0.01); _target = _local9; this.round = _local10; _orient = true; _local2 = 0; while (_local2 < _orientData.length) { _local13 = _orientData[_local2]; _local14 = ((_local13[3]) || (0)); _local11 = (_future[_local13[0]] - _target[_local13[0]]); _local12 = (_future[_local13[1]] - _target[_local13[1]]); _target[_local13[2]] = ((Math.atan2(_local12, _local11) * _RAD2DEG) + _local14); _local2++; }; }; } protected function init(_arg1:TweenLite, _arg2:Array, _arg3:Boolean):void{ var _local4:Object; var _local5:int; var _local6:String; _target = _arg1.target; if (_arg1.exposedVars.orientToBezier == true){ _orientData = [["x", "y", "rotation", 0]]; _orient = true; } else { if ((_arg1.exposedVars.orientToBezier is Array)){ _orientData = _arg1.exposedVars.orientToBezier; _orient = true; }; }; _local4 = {}; _local5 = 0; while (_local5 < _arg2.length) { for (_local6 in _arg2[_local5]) { if (_local4[_local6] == undefined){ _local4[_local6] = [_arg1.target[_local6]]; }; if (typeof(_arg2[_local5][_local6]) == "number"){ _local4[_local6].push(_arg2[_local5][_local6]); } else { _local4[_local6].push((_arg1.target[_local6] + Number(_arg2[_local5][_local6]))); }; }; _local5++; }; for (_local6 in _local4) { this.overwriteProps[this.overwriteProps.length] = _local6; if (_arg1.exposedVars[_local6] != undefined){ if (typeof(_arg1.exposedVars[_local6]) == "number"){ _local4[_local6].push(_arg1.exposedVars[_local6]); } else { _local4[_local6].push((_arg1.target[_local6] + Number(_arg1.exposedVars[_local6]))); }; delete _arg1.exposedVars[_local6]; _local5 = (_arg1.tweens.length - 1); while (_local5 > -1) { if (_arg1.tweens[_local5].name == _local6){ _arg1.tweens.splice(_local5, 1); }; _local5--; }; }; }; _beziers = parseBeziers(_local4, _arg3); } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (!(_arg2 is Array)){ return (false); }; init(_arg3, (_arg2 as Array), false); return (true); } override public function killProps(_arg1:Object):void{ var _local2:String; for (_local2 in _beziers) { if ((_local2 in _arg1)){ delete _beziers[_local2]; }; }; super.killProps(_arg1); } public static function parseBeziers(_arg1:Object, _arg2:Boolean=false):Object{ var _local3:int; var _local4:Array; var _local5:Object; var _local6:String; var _local7:Object; _local7 = {}; if (_arg2){ for (_local6 in _arg1) { _local4 = _arg1[_local6]; _local5 = []; _local7[_local6] = _local5; if (_local4.length > 2){ _local5[_local5.length] = [_local4[0], (_local4[1] - ((_local4[2] - _local4[0]) / 4)), _local4[1]]; _local3 = 1; while (_local3 < (_local4.length - 1)) { _local5[_local5.length] = [_local4[_local3], (_local4[_local3] + (_local4[_local3] - _local5[(_local3 - 1)][1])), _local4[(_local3 + 1)]]; _local3++; }; } else { _local5[_local5.length] = [_local4[0], ((_local4[0] + _local4[1]) / 2), _local4[1]]; }; }; } else { for (_local6 in _arg1) { _local4 = _arg1[_local6]; _local5 = []; _local7[_local6] = _local5; if (_local4.length > 3){ _local5[_local5.length] = [_local4[0], _local4[1], ((_local4[1] + _local4[2]) / 2)]; _local3 = 2; while (_local3 < (_local4.length - 2)) { _local5[_local5.length] = [_local5[(_local3 - 2)][2], _local4[_local3], ((_local4[_local3] + _local4[(_local3 + 1)]) / 2)]; _local3++; }; _local5[_local5.length] = [_local5[(_local5.length - 1)][2], _local4[(_local4.length - 2)], _local4[(_local4.length - 1)]]; } else { if (_local4.length == 3){ _local5[_local5.length] = [_local4[0], _local4[1], _local4[2]]; } else { if (_local4.length == 2){ _local5[_local5.length] = [_local4[0], ((_local4[0] + _local4[1]) / 2), _local4[1]]; }; }; }; }; }; return (_local7); } } }//package gs.plugins
Section 35
//BezierThroughPlugin (gs.plugins.BezierThroughPlugin) package gs.plugins { import gs.*; public class BezierThroughPlugin extends BezierPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function BezierThroughPlugin(){ this.propName = "bezierThrough"; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (!(_arg2 is Array)){ return (false); }; init(_arg3, (_arg2 as Array), true); return (true); } } }//package gs.plugins
Section 36
//BlurFilterPlugin (gs.plugins.BlurFilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; public class BlurFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function BlurFilterPlugin(){ this.propName = "blurFilter"; this.overwriteProps = ["blurFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = BlurFilter; initFilter(_arg2, new BlurFilter(0, 0, ((_arg2.quality) || (2)))); return (true); } } }//package gs.plugins
Section 37
//ColorMatrixFilterPlugin (gs.plugins.ColorMatrixFilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; public class ColorMatrixFilterPlugin extends FilterPlugin { protected var _matrix:Array; protected var _matrixTween:EndArrayPlugin; public static const API:Number = 1; public static const VERSION:Number = 1.1; protected static var _lumG:Number = 0.71516; protected static var _lumR:Number = 0.212671; protected static var _idMatrix:Array = [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]; protected static var _lumB:Number = 0.072169; public function ColorMatrixFilterPlugin(){ this.propName = "colorMatrixFilter"; this.overwriteProps = ["colorMatrixFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:Object; var _local5:Array; _target = _arg1; _type = ColorMatrixFilter; _local4 = _arg2; initFilter({remove:_arg2.remove, index:_arg2.index, addFilter:_arg2.addFilter}, new ColorMatrixFilter(_idMatrix.slice())); _matrix = ColorMatrixFilter(_filter).matrix; _local5 = []; if (((!((_local4.matrix == null))) && ((_local4.matrix is Array)))){ _local5 = _local4.matrix; } else { if (_local4.relative == true){ _local5 = _matrix.slice(); } else { _local5 = _idMatrix.slice(); }; _local5 = setBrightness(_local5, _local4.brightness); _local5 = setContrast(_local5, _local4.contrast); _local5 = setHue(_local5, _local4.hue); _local5 = setSaturation(_local5, _local4.saturation); _local5 = setThreshold(_local5, _local4.threshold); if (!isNaN(_local4.colorize)){ _local5 = colorize(_local5, _local4.colorize, _local4.amount); }; }; _matrixTween = new EndArrayPlugin(); _matrixTween.init(_matrix, _local5); return (true); } override public function set changeFactor(_arg1:Number):void{ _matrixTween.changeFactor = _arg1; ColorMatrixFilter(_filter).matrix = _matrix; super.changeFactor = _arg1; } public static function setSaturation(_arg1:Array, _arg2:Number):Array{ var _local3:Number; var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Array; if (isNaN(_arg2)){ return (_arg1); }; _local3 = (1 - _arg2); _local4 = (_local3 * _lumR); _local5 = (_local3 * _lumG); _local6 = (_local3 * _lumB); _local7 = [(_local4 + _arg2), _local5, _local6, 0, 0, _local4, (_local5 + _arg2), _local6, 0, 0, _local4, _local5, (_local6 + _arg2), 0, 0, 0, 0, 0, 1, 0]; return (applyMatrix(_local7, _arg1)); } public static function setHue(_arg1:Array, _arg2:Number):Array{ var _local3:Number; var _local4:Number; var _local5:Array; if (isNaN(_arg2)){ return (_arg1); }; _arg2 = (_arg2 * (Math.PI / 180)); _local3 = Math.cos(_arg2); _local4 = Math.sin(_arg2); _local5 = [((_lumR + (_local3 * (1 - _lumR))) + (_local4 * -(_lumR))), ((_lumG + (_local3 * -(_lumG))) + (_local4 * -(_lumG))), ((_lumB + (_local3 * -(_lumB))) + (_local4 * (1 - _lumB))), 0, 0, ((_lumR + (_local3 * -(_lumR))) + (_local4 * 0.143)), ((_lumG + (_local3 * (1 - _lumG))) + (_local4 * 0.14)), ((_lumB + (_local3 * -(_lumB))) + (_local4 * -0.283)), 0, 0, ((_lumR + (_local3 * -(_lumR))) + (_local4 * -((1 - _lumR)))), ((_lumG + (_local3 * -(_lumG))) + (_local4 * _lumG)), ((_lumB + (_local3 * (1 - _lumB))) + (_local4 * _lumB)), 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1]; return (applyMatrix(_local5, _arg1)); } public static function setThreshold(_arg1:Array, _arg2:Number):Array{ var _local3:Array; if (isNaN(_arg2)){ return (_arg1); }; _local3 = [(_lumR * 0x0100), (_lumG * 0x0100), (_lumB * 0x0100), 0, (-256 * _arg2), (_lumR * 0x0100), (_lumG * 0x0100), (_lumB * 0x0100), 0, (-256 * _arg2), (_lumR * 0x0100), (_lumG * 0x0100), (_lumB * 0x0100), 0, (-256 * _arg2), 0, 0, 0, 1, 0]; return (applyMatrix(_local3, _arg1)); } public static function applyMatrix(_arg1:Array, _arg2:Array):Array{ var _local3:Array; var _local4:int; var _local5:int; var _local6:int; var _local7:int; if (((!((_arg1 is Array))) || (!((_arg2 is Array))))){ return (_arg2); }; _local3 = []; _local4 = 0; _local5 = 0; _local6 = 0; while (_local6 < 4) { _local7 = 0; while (_local7 < 5) { if (_local7 == 4){ _local5 = _arg1[(_local4 + 4)]; } else { _local5 = 0; }; _local3[(_local4 + _local7)] = (((((_arg1[_local4] * _arg2[_local7]) + (_arg1[(_local4 + 1)] * _arg2[(_local7 + 5)])) + (_arg1[(_local4 + 2)] * _arg2[(_local7 + 10)])) + (_arg1[(_local4 + 3)] * _arg2[(_local7 + 15)])) + _local5); _local7++; }; _local4 = (_local4 + 5); _local6++; }; return (_local3); } public static function colorize(_arg1:Array, _arg2:Number, _arg3:Number=1):Array{ var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Array; if (isNaN(_arg2)){ return (_arg1); }; if (isNaN(_arg3)){ _arg3 = 1; }; _local4 = (((_arg2 >> 16) & 0xFF) / 0xFF); _local5 = (((_arg2 >> 8) & 0xFF) / 0xFF); _local6 = ((_arg2 & 0xFF) / 0xFF); _local7 = (1 - _arg3); _local8 = [(_local7 + ((_arg3 * _local4) * _lumR)), ((_arg3 * _local4) * _lumG), ((_arg3 * _local4) * _lumB), 0, 0, ((_arg3 * _local5) * _lumR), (_local7 + ((_arg3 * _local5) * _lumG)), ((_arg3 * _local5) * _lumB), 0, 0, ((_arg3 * _local6) * _lumR), ((_arg3 * _local6) * _lumG), (_local7 + ((_arg3 * _local6) * _lumB)), 0, 0, 0, 0, 0, 1, 0]; return (applyMatrix(_local8, _arg1)); } public static function setBrightness(_arg1:Array, _arg2:Number):Array{ if (isNaN(_arg2)){ return (_arg1); }; _arg2 = ((_arg2 * 100) - 100); return (applyMatrix([1, 0, 0, 0, _arg2, 0, 1, 0, 0, _arg2, 0, 0, 1, 0, _arg2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1], _arg1)); } public static function setContrast(_arg1:Array, _arg2:Number):Array{ var _local3:Array; if (isNaN(_arg2)){ return (_arg1); }; _arg2 = (_arg2 + 0.01); _local3 = [_arg2, 0, 0, 0, (128 * (1 - _arg2)), 0, _arg2, 0, 0, (128 * (1 - _arg2)), 0, 0, _arg2, 0, (128 * (1 - _arg2)), 0, 0, 0, 1, 0]; return (applyMatrix(_local3, _arg1)); } } }//package gs.plugins
Section 38
//DropShadowFilterPlugin (gs.plugins.DropShadowFilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; public class DropShadowFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function DropShadowFilterPlugin(){ this.propName = "dropShadowFilter"; this.overwriteProps = ["dropShadowFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = DropShadowFilter; initFilter(_arg2, new DropShadowFilter(0, 45, 0, 0, 0, 0, 1, ((_arg2.quality) || (2)), _arg2.inner, _arg2.knockout, _arg2.hideObject)); return (true); } } }//package gs.plugins
Section 39
//EndArrayPlugin (gs.plugins.EndArrayPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class EndArrayPlugin extends TweenPlugin { protected var _info:Array; protected var _a:Array; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function EndArrayPlugin(){ _info = []; super(); this.propName = "endArray"; this.overwriteProps = ["endArray"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:ArrayTweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _a[_local3.index] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _a[_local3.index] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function init(_arg1:Array, _arg2:Array):void{ var _local3:int; _a = _arg1; _local3 = (_arg2.length - 1); while (_local3 > -1) { if (((!((_arg1[_local3] == _arg2[_local3]))) && (!((_arg1[_local3] == null))))){ _info[_info.length] = new ArrayTweenInfo(_local3, _a[_local3], (_arg2[_local3] - _a[_local3])); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is Array))) || (!((_arg2 is Array))))){ return (false); }; init((_arg1 as Array), _arg2); return (true); } } }//package gs.plugins
Section 40
//FilterPlugin (gs.plugins.FilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; import gs.utils.tween.*; public class FilterPlugin extends TweenPlugin { protected var _index:int; protected var _filter:BitmapFilter; protected var _type:Class; protected var _remove:Boolean; protected var _target:Object; public static const VERSION:Number = 1.03; public static const API:Number = 1; override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:TweenInfo; var _local4:Array; _local4 = _target.filters; _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local3.target[_local3.property] = (_local3.start + (_local3.change * _arg1)); _local2--; }; if (!(_local4[_index] is _type)){ _index = (_local4.length - 1); _local2 = (_local4.length - 1); while (_local2 > -1) { if ((_local4[_local2] is _type)){ _index = _local2; break; }; _local2--; }; }; _local4[_index] = _filter; _target.filters = _local4; } public function onCompleteTween():void{ var _local1:int; var _local2:Array; if (_remove){ _local2 = _target.filters; if (!(_local2[_index] is _type)){ _local1 = (_local2.length - 1); while (_local1 > -1) { if ((_local2[_local1] is _type)){ _local2.splice(_local1, 1); break; }; _local1--; }; } else { _local2.splice(_index, 1); }; _target.filters = _local2; }; } protected function initFilter(_arg1:Object, _arg2:BitmapFilter):void{ var _local3:Array; var _local4:String; var _local5:int; var _local6:HexColorsPlugin; var _local7:Object; _local3 = _target.filters; _index = -1; if (_arg1.index != null){ _index = _arg1.index; } else { _local5 = (_local3.length - 1); while (_local5 > -1) { if ((_local3[_local5] is _type)){ _index = _local5; break; }; _local5--; }; }; if ((((((_index == -1)) || ((_local3[_index] == null)))) || ((_arg1.addFilter == true)))){ _index = ((_arg1.index)!=null) ? _arg1.index : _local3.length; _local3[_index] = _arg2; _target.filters = _local3; }; _filter = _local3[_index]; _remove = Boolean((_arg1.remove == true)); if (_remove){ this.onComplete = onCompleteTween; }; _local7 = ((_arg1.isTV)==true) ? _arg1.exposedVars : _arg1; for (_local4 in _local7) { if (((((((((!((_local4 in _filter))) || ((_filter[_local4] == _local7[_local4])))) || ((_local4 == "remove")))) || ((_local4 == "index")))) || ((_local4 == "addFilter")))){ } else { if ((((((_local4 == "color")) || ((_local4 == "highlightColor")))) || ((_local4 == "shadowColor")))){ _local6 = new HexColorsPlugin(); _local6.initColor(_filter, _local4, _filter[_local4], _local7[_local4]); _tweens[_tweens.length] = new TweenInfo(_local6, "changeFactor", 0, 1, _local4, false); } else { if ((((((((_local4 == "quality")) || ((_local4 == "inner")))) || ((_local4 == "knockout")))) || ((_local4 == "hideObject")))){ _filter[_local4] = _local7[_local4]; } else { addTween(_filter, _local4, _filter[_local4], _local7[_local4], _local4); }; }; }; }; } } }//package gs.plugins
Section 41
//FramePlugin (gs.plugins.FramePlugin) package gs.plugins { import flash.display.*; import gs.*; public class FramePlugin extends TweenPlugin { public var frame:int; protected var _target:MovieClip; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function FramePlugin(){ this.propName = "frame"; this.overwriteProps = ["frame"]; this.round = true; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.gotoAndStop(this.frame); } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is MovieClip))) || (isNaN(_arg2)))){ return (false); }; _target = (_arg1 as MovieClip); this.frame = _target.currentFrame; addTween(this, "frame", this.frame, _arg2, "frame"); return (true); } } }//package gs.plugins
Section 42
//GlowFilterPlugin (gs.plugins.GlowFilterPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.filters.*; public class GlowFilterPlugin extends FilterPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function GlowFilterPlugin(){ this.propName = "glowFilter"; this.overwriteProps = ["glowFilter"]; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _type = GlowFilter; initFilter(_arg2, new GlowFilter(0xFFFFFF, 0, 0, 0, ((_arg2.strength) || (1)), ((_arg2.quality) || (2)), _arg2.inner, _arg2.knockout)); return (true); } } }//package gs.plugins
Section 43
//HexColorsPlugin (gs.plugins.HexColorsPlugin) package gs.plugins { import gs.*; public class HexColorsPlugin extends TweenPlugin { protected var _colors:Array; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function HexColorsPlugin(){ this.propName = "hexColors"; this.overwriteProps = []; _colors = []; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:Array; _local2 = (_colors.length - 1); while (_local2 > -1) { _local3 = _colors[_local2]; _local3[0][_local3[1]] = ((((_local3[2] + (_arg1 * _local3[3])) << 16) | ((_local3[4] + (_arg1 * _local3[5])) << 8)) | (_local3[6] + (_arg1 * _local3[7]))); _local2--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:String; for (_local4 in _arg2) { initColor(_arg1, _local4, uint(_arg1[_local4]), uint(_arg2[_local4])); }; return (true); } override public function killProps(_arg1:Object):void{ var _local2:int; _local2 = (_colors.length - 1); while (_local2 > -1) { if (_arg1[_colors[_local2][1]] != undefined){ _colors.splice(_local2, 1); }; _local2--; }; super.killProps(_arg1); } public function initColor(_arg1:Object, _arg2:String, _arg3:uint, _arg4:uint):void{ var _local5:Number; var _local6:Number; var _local7:Number; if (_arg3 != _arg4){ _local5 = (_arg3 >> 16); _local6 = ((_arg3 >> 8) & 0xFF); _local7 = (_arg3 & 0xFF); _colors[_colors.length] = [_arg1, _arg2, _local5, ((_arg4 >> 16) - _local5), _local6, (((_arg4 >> 8) & 0xFF) - _local6), _local7, ((_arg4 & 0xFF) - _local7)]; this.overwriteProps[this.overwriteProps.length] = _arg2; }; } } }//package gs.plugins
Section 44
//RemoveTintPlugin (gs.plugins.RemoveTintPlugin) package gs.plugins { public class RemoveTintPlugin extends TintPlugin { public static const VERSION:Number = 1.01; public static const API:Number = 1; public function RemoveTintPlugin(){ this.propName = "removeTint"; } } }//package gs.plugins
Section 45
//RoundPropsPlugin (gs.plugins.RoundPropsPlugin) package gs.plugins { public class RoundPropsPlugin extends TweenPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function RoundPropsPlugin(){ this.propName = "roundProps"; this.overwriteProps = []; this.round = true; } public function add(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number):void{ addTween(_arg1, _arg2, _arg3, (_arg3 + _arg4), _arg2); this.overwriteProps[this.overwriteProps.length] = _arg2; } } }//package gs.plugins
Section 46
//ShortRotationPlugin (gs.plugins.ShortRotationPlugin) package gs.plugins { import gs.*; public class ShortRotationPlugin extends TweenPlugin { public static const VERSION:Number = 1; public static const API:Number = 1; public function ShortRotationPlugin(){ this.propName = "shortRotation"; this.overwriteProps = []; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:String; if (typeof(_arg2) == "number"){ trace("WARNING: You appear to be using the old shortRotation syntax. Instead of passing a number, please pass an object with properties that correspond to the rotations values For example, TweenMax.to(mc, 2, {shortRotation:{rotationX:-170, rotationY:25}})"); return (false); }; for (_local4 in _arg2) { initRotation(_arg1, _local4, _arg1[_local4], _arg2[_local4]); }; return (true); } public function initRotation(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number):void{ var _local5:Number; _local5 = ((_arg4 - _arg3) % 360); if (((_arg4 - _arg3) % 360) != (_local5 % 180)){ _local5 = ((_local5)<0) ? (_local5 + 360) : (_local5 - 360); }; addTween(_arg1, _arg2, _arg3, (_arg3 + _local5), _arg2); this.overwriteProps[this.overwriteProps.length] = _arg2; } } }//package gs.plugins
Section 47
//TintPlugin (gs.plugins.TintPlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.geom.*; import gs.utils.tween.*; public class TintPlugin extends TweenPlugin { protected var _ct:ColorTransform; protected var _ignoreAlpha:Boolean; protected var _target:DisplayObject; public static const VERSION:Number = 1.1; public static const API:Number = 1; protected static var _props:Array = ["redMultiplier", "greenMultiplier", "blueMultiplier", "alphaMultiplier", "redOffset", "greenOffset", "blueOffset", "alphaOffset"]; public function TintPlugin(){ this.propName = "tint"; this.overwriteProps = ["tint"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:ColorTransform; updateTweens(_arg1); if (_ignoreAlpha){ _local2 = _target.transform.colorTransform; _ct.alphaMultiplier = _local2.alphaMultiplier; _ct.alphaOffset = _local2.alphaOffset; }; _target.transform.colorTransform = _ct; } public function init(_arg1:DisplayObject, _arg2:ColorTransform):void{ var _local3:int; var _local4:String; _target = _arg1; _ct = _target.transform.colorTransform; _local3 = (_props.length - 1); while (_local3 > -1) { _local4 = _props[_local3]; if (_ct[_local4] != _arg2[_local4]){ _tweens[_tweens.length] = new TweenInfo(_ct, _local4, _ct[_local4], (_arg2[_local4] - _ct[_local4]), "tint", false); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:ColorTransform; if (!(_arg1 is DisplayObject)){ return (false); }; _local4 = new ColorTransform(); if (((!((_arg2 == null))) && (!((_arg3.exposedVars.removeTint == true))))){ _local4.color = uint(_arg2); }; _ignoreAlpha = true; init((_arg1 as DisplayObject), _local4); return (true); } } }//package gs.plugins
Section 48
//TweenPlugin (gs.plugins.TweenPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class TweenPlugin { public var overwriteProps:Array; protected var _tweens:Array; public var round:Boolean; public var onComplete:Function; public var propName:String; protected var _changeFactor:Number;// = 0 public static const VERSION:Number = 1.03; public static const API:Number = 1; public function TweenPlugin(){ _tweens = []; _changeFactor = 0; super(); } protected function updateTweens(_arg1:Number):void{ var _local2:int; var _local3:TweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _local3.target[_local3.property] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local3.target[_local3.property] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _changeFactor = _arg1; } protected function addTween(_arg1:Object, _arg2:String, _arg3:Number, _arg4, _arg5:String=null):void{ var _local6:Number; if (_arg4 != null){ _local6 = ((typeof(_arg4))=="number") ? (_arg4 - _arg3) : Number(_arg4); if (_local6 != 0){ _tweens[_tweens.length] = new TweenInfo(_arg1, _arg2, _arg3, _local6, ((_arg5) || (_arg2)), false); }; }; } public function killProps(_arg1:Object):void{ var _local2:int; _local2 = (this.overwriteProps.length - 1); while (_local2 > -1) { if ((this.overwriteProps[_local2] in _arg1)){ this.overwriteProps.splice(_local2, 1); }; _local2--; }; _local2 = (_tweens.length - 1); while (_local2 > -1) { if ((_tweens[_local2].name in _arg1)){ _tweens.splice(_local2, 1); }; _local2--; }; } public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ addTween(_arg1, this.propName, _arg1[this.propName], _arg2, this.propName); return (true); } public function get changeFactor():Number{ return (_changeFactor); } public static function activate(_arg1:Array):Boolean{ var _local2:int; var _local3:Object; _local2 = (_arg1.length - 1); while (_local2 > -1) { _local3 = new (_arg1[_local2]); TweenLite.plugins[_local3.propName] = _arg1[_local2]; _local2--; }; return (true); } } }//package gs.plugins
Section 49
//VisiblePlugin (gs.plugins.VisiblePlugin) package gs.plugins { import flash.display.*; import gs.*; public class VisiblePlugin extends TweenPlugin { protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function VisiblePlugin(){ this.propName = "visible"; this.overwriteProps = ["visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ if (_target.visible != true){ _target.visible = true; }; } public function onCompleteTween():void{ if (((!((_tween.vars.runBackwards == true))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(_arg2); return (true); } } }//package gs.plugins
Section 50
//VolumePlugin (gs.plugins.VolumePlugin) package gs.plugins { import flash.display.*; import gs.*; import flash.media.*; public class VolumePlugin extends TweenPlugin { protected var _st:SoundTransform; protected var _target:Object; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function VolumePlugin(){ this.propName = "volume"; this.overwriteProps = ["volume"]; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.soundTransform = _st; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((isNaN(_arg2)) || (!(_arg1.hasOwnProperty("soundTransform"))))){ return (false); }; _target = _arg1; _st = _target.soundTransform; addTween(_st, "volume", _st.volume, _arg2, "volume"); return (true); } } }//package gs.plugins
Section 51
//ArrayTweenInfo (gs.utils.tween.ArrayTweenInfo) package gs.utils.tween { public class ArrayTweenInfo { public var change:Number; public var index:uint; public var start:Number; public function ArrayTweenInfo(_arg1:uint, _arg2:Number, _arg3:Number){ this.index = _arg1; this.start = _arg2; this.change = _arg3; } } }//package gs.utils.tween
Section 52
//TweenInfo (gs.utils.tween.TweenInfo) package gs.utils.tween { public class TweenInfo { public var start:Number; public var name:String; public var change:Number; public var target:Object; public var property:String; public var isPlugin:Boolean; public function TweenInfo(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number, _arg5:String, _arg6:Boolean){ this.target = _arg1; this.property = _arg2; this.start = _arg3; this.change = _arg4; this.name = _arg5; this.isPlugin = _arg6; } } }//package gs.utils.tween
Section 53
//OverwriteManager (gs.OverwriteManager) package gs { import flash.utils.*; import gs.utils.tween.*; import flash.errors.*; public class OverwriteManager { public static const ALL:int = 1; public static const NONE:int = 0; public static const AUTO:int = 2; public static const CONCURRENT:int = 3; public static const version:Number = 3.12; public static var mode:int; public static var enabled:Boolean; public static function killVars(_arg1:Object, _arg2:Object, _arg3:Array):void{ var _local4:int; var _local5:String; var _local6:TweenInfo; _local4 = (_arg3.length - 1); while (_local4 > -1) { _local6 = _arg3[_local4]; if ((_local6.name in _arg1)){ _arg3.splice(_local4, 1); } else { if (((_local6.isPlugin) && ((_local6.name == "_MULTIPLE_")))){ _local6.target.killProps(_arg1); if (_local6.target.overwriteProps.length == 0){ _arg3.splice(_local4, 1); }; }; }; _local4--; }; for (_local5 in _arg1) { delete _arg2[_local5]; }; } public static function manageOverwrites(_arg1:TweenLite, _arg2:Array):void{ var _local3:Object; var _local4:int; var _local5:Number; var _local6:Array; var _local7:int; var _local8:TweenLite; var _local9:int; var _local10:Array; var _local11:Object; var _local12:int; var _local13:TweenInfo; var _local14:Array; _local3 = _arg1.vars; _local4 = ((_local3.overwrite)==undefined) ? mode : int(_local3.overwrite); if ((((_local4 < 2)) || ((_arg2 == null)))){ return; }; _local5 = _arg1.startTime; _local6 = []; _local9 = -1; _local7 = (_arg2.length - 1); while (_local7 > -1) { _local8 = _arg2[_local7]; if (_local8 == _arg1){ _local9 = _local7; } else { if ((((((_local7 < _local9)) && ((_local8.startTime <= _local5)))) && (((_local8.startTime + ((_local8.duration * 1000) / _local8.combinedTimeScale)) > _local5)))){ _local6[_local6.length] = _local8; }; }; _local7--; }; if ((((_local6.length == 0)) || ((_arg1.tweens.length == 0)))){ return; }; if (_local4 == AUTO){ _local10 = _arg1.tweens; _local11 = {}; _local7 = (_local10.length - 1); while (_local7 > -1) { _local13 = _local10[_local7]; if (_local13.isPlugin){ if (_local13.name == "_MULTIPLE_"){ _local14 = _local13.target.overwriteProps; _local12 = (_local14.length - 1); while (_local12 > -1) { _local11[_local14[_local12]] = true; _local12--; }; } else { _local11[_local13.name] = true; }; _local11[_local13.target.propName] = true; } else { _local11[_local13.name] = true; }; _local7--; }; _local7 = (_local6.length - 1); while (_local7 > -1) { killVars(_local11, _local6[_local7].exposedVars, _local6[_local7].tweens); _local7--; }; } else { _local7 = (_local6.length - 1); while (_local7 > -1) { _local6[_local7].enabled = false; _local7--; }; }; } public static function init(_arg1:int=2):int{ if (TweenLite.version < 10.09){ trace("TweenLite warning: Your TweenLite class needs to be updated to work with OverwriteManager (or you may need to clear your ASO files). Please download and install the latest version from http://www.tweenlite.com."); }; TweenLite.overwriteManager = OverwriteManager; mode = _arg1; enabled = true; return (mode); } } }//package gs
Section 54
//TweenLite (gs.TweenLite) package gs { import flash.display.*; import flash.events.*; import flash.utils.*; import gs.utils.tween.*; import gs.plugins.*; public class TweenLite { public var delay:Number; protected var _hasUpdate:Boolean; protected var _hasPlugins:Boolean; public var started:Boolean; public var initted:Boolean; public var active:Boolean; public var startTime:Number; public var target:Object; public var duration:Number; public var gc:Boolean; public var vars:Object; public var ease:Function; public var tweens:Array; public var exposedVars:Object; public var combinedTimeScale:Number; public var initTime:Number; public static const version:Number = 10.092; private static var _timer:Timer = new Timer(2000); public static var defaultEase:Function = TweenLite.easeOut; public static var plugins:Object = {}; public static var currentTime:uint; public static var masterList:Dictionary = new Dictionary(false); protected static var _reservedProps:Object = {ease:1, delay:1, overwrite:1, onComplete:1, onCompleteParams:1, runBackwards:1, startAt:1, onUpdate:1, onUpdateParams:1, roundProps:1, onStart:1, onStartParams:1, persist:1, renderOnStart:1, proxiedEase:1, easeParams:1, yoyo:1, loop:1, onCompleteListener:1, onUpdateListener:1, onStartListener:1, orientToBezier:1, timeScale:1}; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; public static var timingSprite:Sprite = new Sprite(); public static var overwriteManager:Object; private static var _tlInitted:Boolean; public function TweenLite(_arg1:Object, _arg2:Number, _arg3:Object){ var _local4:int; super(); if (_arg1 == null){ return; }; if (!_tlInitted){ TweenPlugin.activate([TintPlugin, RemoveTintPlugin, FramePlugin, AutoAlphaPlugin, VisiblePlugin, VolumePlugin, EndArrayPlugin]); currentTime = getTimer(); timingSprite.addEventListener(Event.ENTER_FRAME, updateAll, false, 0, true); if (overwriteManager == null){ overwriteManager = {mode:1, enabled:false}; }; _timer.addEventListener("timer", killGarbage, false, 0, true); _timer.start(); _tlInitted = true; }; this.vars = _arg3; this.duration = ((_arg2) || (0.001)); this.delay = ((_arg3.delay) || (0)); this.combinedTimeScale = ((_arg3.timeScale) || (1)); this.active = Boolean((((_arg2 == 0)) && ((this.delay == 0)))); this.target = _arg1; if (typeof(this.vars.ease) != "function"){ this.vars.ease = defaultEase; }; if (this.vars.easeParams != null){ this.vars.proxiedEase = this.vars.ease; this.vars.ease = easeProxy; }; this.ease = this.vars.ease; this.exposedVars = ((this.vars.isTV)==true) ? this.vars.exposedVars : this.vars; this.tweens = []; this.initTime = currentTime; this.startTime = (this.initTime + (this.delay * 1000)); _local4 = ((((_arg3.overwrite == undefined)) || (((!(overwriteManager.enabled)) && ((_arg3.overwrite > 1)))))) ? overwriteManager.mode : int(_arg3.overwrite); if (((!((_arg1 in masterList))) || ((_local4 == 1)))){ masterList[_arg1] = [this]; } else { masterList[_arg1].push(this); }; if ((((((this.vars.runBackwards == true)) && (!((this.vars.renderOnStart == true))))) || (this.active))){ initTweenVals(); if (this.active){ render((this.startTime + 1)); } else { render(this.startTime); }; if (((((!((this.exposedVars.visible == null))) && ((this.vars.runBackwards == true)))) && ((this.target is DisplayObject)))){ this.target.visible = this.exposedVars.visible; }; }; } public function set enabled(_arg1:Boolean):void{ var _local2:Array; var _local3:Boolean; var _local4:int; if (_arg1){ if (!(this.target in masterList)){ masterList[this.target] = [this]; } else { _local2 = masterList[this.target]; _local4 = (_local2.length - 1); while (_local4 > -1) { if (_local2[_local4] == this){ _local3 = true; break; }; _local4--; }; if (!_local3){ _local2[_local2.length] = this; }; }; }; this.gc = (_arg1) ? false : true; if (this.gc){ this.active = false; } else { this.active = this.started; }; } public function clear():void{ this.tweens = []; this.vars = (this.exposedVars = {ease:this.vars.ease}); _hasUpdate = false; } public function render(_arg1:uint):void{ var _local2:Number; var _local3:Number; var _local4:TweenInfo; var _local5:int; _local2 = ((_arg1 - this.startTime) * 0.001); if (_local2 >= this.duration){ _local2 = this.duration; _local3 = ((((this.ease == this.vars.ease)) || ((this.duration == 0.001)))) ? 1 : 0; } else { _local3 = this.ease(_local2, 0, 1, this.duration); }; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local4 = this.tweens[_local5]; _local4.target[_local4.property] = (_local4.start + (_local3 * _local4.change)); _local5--; }; if (_hasUpdate){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (_local2 == this.duration){ complete(true); }; } public function activate():void{ this.started = (this.active = true); if (!this.initted){ initTweenVals(); }; if (this.vars.onStart != null){ this.vars.onStart.apply(null, this.vars.onStartParams); }; if (this.duration == 0.001){ this.startTime = (this.startTime - 1); }; } public function get enabled():Boolean{ return ((this.gc) ? false : true); } public function initTweenVals():void{ var _local1:String; var _local2:int; var _local3:*; var _local4:TweenInfo; if (((!((this.exposedVars.timeScale == undefined))) && (this.target.hasOwnProperty("timeScale")))){ this.tweens[this.tweens.length] = new TweenInfo(this.target, "timeScale", this.target.timeScale, (this.exposedVars.timeScale - this.target.timeScale), "timeScale", false); }; for (_local1 in this.exposedVars) { if ((_local1 in _reservedProps)){ } else { if ((_local1 in plugins)){ _local3 = new (plugins[_local1]); if (_local3.onInitTween(this.target, this.exposedVars[_local1], this) == false){ this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); } else { this.tweens[this.tweens.length] = new TweenInfo(_local3, "changeFactor", 0, 1, ((_local3.overwriteProps.length)==1) ? _local3.overwriteProps[0] : "_MULTIPLE_", true); _hasPlugins = true; }; } else { this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); }; }; }; if (this.vars.runBackwards == true){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { _local4 = this.tweens[_local2]; this.tweens[_local2].start = (_local4.start + _local4.change); _local4.change = -(_local4.change); _local2--; }; }; if (this.vars.onUpdate != null){ _hasUpdate = true; }; if (((TweenLite.overwriteManager.enabled) && ((this.target in masterList)))){ overwriteManager.manageOverwrites(this, masterList[this.target]); }; this.initted = true; } protected function easeProxy(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams))); } public function killVars(_arg1:Object):void{ if (overwriteManager.enabled){ overwriteManager.killVars(_arg1, this.exposedVars, this.tweens); }; } public function complete(_arg1:Boolean=false):void{ var _local2:int; if (!_arg1){ if (!this.initted){ initTweenVals(); }; this.startTime = (currentTime - ((this.duration * 1000) / this.combinedTimeScale)); render(currentTime); return; }; if (_hasPlugins){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { if (((this.tweens[_local2].isPlugin) && (!((this.tweens[_local2].target.onComplete == null))))){ this.tweens[_local2].target.onComplete(); }; _local2--; }; }; if (this.vars.persist != true){ this.enabled = false; }; if (this.vars.onComplete != null){ this.vars.onComplete.apply(null, this.vars.onCompleteParams); }; } public static function updateAll(_arg1:Event=null):void{ var _local2:uint; var _local3:Dictionary; var _local4:Array; var _local5:int; var _local6:TweenLite; _local2 = (currentTime = getTimer()); _local3 = masterList; for each (_local4 in _local3) { _local5 = (_local4.length - 1); while (_local5 > -1) { _local6 = _local4[_local5]; if (_local6.active){ _local6.render(_local2); } else { if (_local6.gc){ _local4.splice(_local5, 1); } else { if (_local2 >= _local6.startTime){ _local6.activate(); _local6.render(_local2); }; }; }; _local5--; }; }; } public static function removeTween(_arg1:TweenLite, _arg2:Boolean=true):void{ if (_arg1 != null){ if (_arg2){ _arg1.clear(); }; _arg1.enabled = false; }; } public static function killTweensOf(_arg1:Object=null, _arg2:Boolean=false):void{ var _local3:Array; var _local4:int; var _local5:TweenLite; if (((!((_arg1 == null))) && ((_arg1 in masterList)))){ _local3 = masterList[_arg1]; _local4 = (_local3.length - 1); while (_local4 > -1) { _local5 = _local3[_local4]; if (((_arg2) && (!(_local5.gc)))){ _local5.complete(false); }; _local5.clear(); _local4--; }; delete masterList[_arg1]; }; } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ _arg3.runBackwards = true; return (new TweenLite(_arg1, _arg2, _arg3)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } protected static function killGarbage(_arg1:TimerEvent):void{ var _local2:Dictionary; var _local3:Object; _local2 = masterList; for (_local3 in _local2) { if (_local2[_local3].length == 0){ delete _local2[_local3]; }; }; } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null):TweenLite{ return (new TweenLite(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, overwrite:0})); } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ return (new TweenLite(_arg1, _arg2, _arg3)); } } }//package gs
Section 55
//TweenMax (gs.TweenMax) package gs { import flash.events.*; import flash.utils.*; import gs.utils.tween.*; import gs.plugins.*; import gs.events.*; public class TweenMax extends TweenLite implements IEventDispatcher { protected var _dispatcher:EventDispatcher; protected var _callbacks:Object; public var pauseTime:Number; protected var _repeatCount:Number; protected var _timeScale:Number; public static const version:Number = 10.12; public static var removeTween:Function = TweenLite.removeTween; private static var _overwriteMode:int = (OverwriteManager.enabled) ? OverwriteManager.mode : OverwriteManager.init(); ; protected static var _pausedTweens:Dictionary = new Dictionary(false); protected static var _globalTimeScale:Number = 1; public static var killTweensOf:Function = TweenLite.killTweensOf; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; private static var _activatedPlugins:Boolean = TweenPlugin.activate([TintPlugin, RemoveTintPlugin, FramePlugin, AutoAlphaPlugin, VisiblePlugin, VolumePlugin, EndArrayPlugin, HexColorsPlugin, BlurFilterPlugin, ColorMatrixFilterPlugin, BevelFilterPlugin, DropShadowFilterPlugin, GlowFilterPlugin, RoundPropsPlugin, BezierPlugin, BezierThroughPlugin, ShortRotationPlugin]); public function TweenMax(_arg1:Object, _arg2:Number, _arg3:Object){ super(_arg1, _arg2, _arg3); if (TweenLite.version < 10.092){ trace("TweenMax error! Please update your TweenLite class or try deleting your ASO files. TweenMax requires a more recent version. Download updates at http://www.TweenMax.com."); }; if (((!((this.combinedTimeScale == 1))) && ((this.target is TweenMax)))){ _timeScale = 1; this.combinedTimeScale = _globalTimeScale; } else { _timeScale = this.combinedTimeScale; this.combinedTimeScale = (this.combinedTimeScale * _globalTimeScale); }; if (((!((this.combinedTimeScale == 1))) && (!((this.delay == 0))))){ this.startTime = (this.initTime + (this.delay * (1000 / this.combinedTimeScale))); }; if (((((!((this.vars.onCompleteListener == null))) || (!((this.vars.onUpdateListener == null))))) || (!((this.vars.onStartListener == null))))){ initDispatcher(); if ((((_arg2 == 0)) && ((this.delay == 0)))){ onUpdateDispatcher(); onCompleteDispatcher(); }; }; _repeatCount = 0; if (((!(isNaN(this.vars.yoyo))) || (!(isNaN(this.vars.loop))))){ this.vars.persist = true; }; if ((((this.delay == 0)) && (!((this.vars.startAt == null))))){ this.vars.startAt.overwrite = 0; new TweenMax(this.target, 0, this.vars.startAt); }; } public function set repeatCount(_arg1:Number):void{ _repeatCount = _arg1; } override public function set enabled(_arg1:Boolean):void{ if (!_arg1){ _pausedTweens[this] = null; delete _pausedTweens[this]; }; super.enabled = _arg1; if (_arg1){ this.combinedTimeScale = (_timeScale * _globalTimeScale); }; } public function set reversed(_arg1:Boolean):void{ if (this.reversed != _arg1){ reverse(); }; } override public function render(_arg1:uint):void{ var _local2:Number; var _local3:Number; var _local4:TweenInfo; var _local5:int; _local2 = (((_arg1 - this.startTime) * 0.001) * this.combinedTimeScale); if (_local2 >= this.duration){ _local2 = this.duration; _local3 = ((((this.ease == this.vars.ease)) || ((this.duration == 0.001)))) ? 1 : 0; } else { _local3 = this.ease(_local2, 0, 1, this.duration); }; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local4 = this.tweens[_local5]; _local4.target[_local4.property] = (_local4.start + (_local3 * _local4.change)); _local5--; }; if (_hasUpdate){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (_local2 == this.duration){ complete(true); }; } protected function adjustStartValues():void{ var _local1:Number; var _local2:Number; var _local3:Number; var _local4:Number; var _local5:TweenInfo; var _local6:int; _local1 = this.progress; if (_local1 != 0){ _local2 = this.ease(_local1, 0, 1, 1); _local3 = (1 / (1 - _local2)); _local6 = (this.tweens.length - 1); while (_local6 > -1) { _local5 = this.tweens[_local6]; _local4 = (_local5.start + _local5.change); if (_local5.isPlugin){ _local5.change = ((_local4 - _local2) * _local3); } else { _local5.change = ((_local4 - _local5.target[_local5.property]) * _local3); }; _local5.start = (_local4 - _local5.change); _local6--; }; }; } public function get timeScale():Number{ return (_timeScale); } public function restart(_arg1:Boolean=false):void{ if (_arg1){ this.initTime = currentTime; this.startTime = (currentTime + (this.delay * (1000 / this.combinedTimeScale))); } else { this.startTime = currentTime; this.initTime = (currentTime - (this.delay * (1000 / this.combinedTimeScale))); }; _repeatCount = 0; if (this.target != this.vars.onComplete){ render(this.startTime); }; this.pauseTime = NaN; _pausedTweens[this] = null; delete _pausedTweens[this]; this.enabled = true; } public function get paused():Boolean{ return (!(isNaN(this.pauseTime))); } public function killProperties(_arg1:Array):void{ var _local2:Object; var _local3:int; _local2 = {}; _local3 = (_arg1.length - 1); while (_local3 > -1) { _local2[_arg1[_local3]] = true; _local3--; }; killVars(_local2); } public function resume():void{ this.enabled = true; if (!isNaN(this.pauseTime)){ this.initTime = (this.initTime + (currentTime - this.pauseTime)); this.startTime = (this.initTime + (this.delay * (1000 / this.combinedTimeScale))); this.pauseTime = NaN; if (((!(this.started)) && ((currentTime >= this.startTime)))){ activate(); } else { this.active = this.started; }; _pausedTweens[this] = null; delete _pausedTweens[this]; }; } override public function complete(_arg1:Boolean=false):void{ if (((((!(isNaN(this.vars.yoyo))) && ((((_repeatCount < this.vars.yoyo)) || ((this.vars.yoyo == 0)))))) || (((!(isNaN(this.vars.loop))) && ((((_repeatCount < this.vars.loop)) || ((this.vars.loop == 0)))))))){ _repeatCount++; if (!isNaN(this.vars.yoyo)){ this.ease = ((this.vars.ease)==this.ease) ? reverseEase : this.vars.ease; }; this.startTime = (_arg1) ? (this.startTime + (this.duration * (1000 / this.combinedTimeScale))) : currentTime; this.initTime = (this.startTime - (this.delay * (1000 / this.combinedTimeScale))); } else { if (this.vars.persist == true){ pause(); }; }; super.complete(_arg1); } public function invalidate(_arg1:Boolean=true):void{ var _local2:Number; if (this.initted){ _local2 = this.progress; if (((!(_arg1)) && (!((_local2 == 0))))){ this.progress = 0; }; this.tweens = []; _hasPlugins = false; this.exposedVars = ((this.vars.isTV)==true) ? this.vars.exposedProps : this.vars; initTweenVals(); _timeScale = ((this.vars.timeScale) || (1)); this.combinedTimeScale = (_timeScale * _globalTimeScale); this.delay = ((this.vars.delay) || (0)); if (isNaN(this.pauseTime)){ this.startTime = (this.initTime + ((this.delay * 1000) / this.combinedTimeScale)); }; if (((((!((this.vars.onCompleteListener == null))) || (!((this.vars.onUpdateListener == null))))) || (!((this.vars.onStartListener == null))))){ if (_dispatcher != null){ this.vars.onStart = _callbacks.onStart; this.vars.onUpdate = _callbacks.onUpdate; this.vars.onComplete = _callbacks.onComplete; _dispatcher = null; }; initDispatcher(); }; if (_local2 != 0){ if (_arg1){ adjustStartValues(); } else { this.progress = _local2; }; }; }; } public function get progress():Number{ var _local1:Number; var _local2:Number; _local1 = (isNaN(this.pauseTime)) ? currentTime : this.pauseTime; _local2 = (((((_local1 - this.initTime) * 0.001) - (this.delay / this.combinedTimeScale)) / this.duration) * this.combinedTimeScale); if (_local2 > 1){ return (1); }; if (_local2 < 0){ return (0); }; return (_local2); } public function willTrigger(_arg1:String):Boolean{ if (_dispatcher == null){ return (false); }; return (_dispatcher.willTrigger(_arg1)); } public function dispatchEvent(_arg1:Event):Boolean{ if (_dispatcher == null){ return (false); }; return (_dispatcher.dispatchEvent(_arg1)); } public function get reversed():Boolean{ return ((this.ease == reverseEase)); } public function get repeatCount():Number{ return (_repeatCount); } protected function onStartDispatcher(... _args):void{ if (_callbacks.onStart != null){ _callbacks.onStart.apply(null, this.vars.onStartParams); }; _dispatcher.dispatchEvent(new TweenEvent(TweenEvent.START)); } public function setDestination(_arg1:String, _arg2, _arg3:Boolean=true):void{ var _local4:Number; var _local5:int; var _local6:TweenInfo; var _local7:Object; var _local8:Object; var _local9:Array; var _local10:Boolean; var _local11:Array; var _local12:Object; _local4 = this.progress; if (this.initted){ if (!_arg3){ _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local6 = this.tweens[_local5]; if (_local6.name == _arg1){ _local6.target[_local6.property] = _local6.start; }; _local5--; }; }; _local7 = this.vars; _local8 = this.exposedVars; _local9 = this.tweens; _local10 = _hasPlugins; this.tweens = []; this.vars = (this.exposedVars = {}); this.vars[_arg1] = _arg2; initTweenVals(); if (((!((this.ease == reverseEase))) && ((_local7.ease is Function)))){ this.ease = _local7.ease; }; if (((_arg3) && (!((_local4 == 0))))){ adjustStartValues(); }; _local11 = this.tweens; this.vars = _local7; this.exposedVars = _local8; this.tweens = _local9; _local12 = {}; _local12[_arg1] = true; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local6 = this.tweens[_local5]; if (_local6.name == _arg1){ this.tweens.splice(_local5, 1); } else { if (((_local6.isPlugin) && ((_local6.name == "_MULTIPLE_")))){ _local6.target.killProps(_local12); if (_local6.target.overwriteProps.length == 0){ this.tweens.splice(_local5, 1); }; }; }; _local5--; }; this.tweens = this.tweens.concat(_local11); _hasPlugins = Boolean(((_local10) || (_hasPlugins))); }; this.vars[_arg1] = (this.exposedVars[_arg1] = _arg2); } public function set timeScale(_arg1:Number):void{ if (_arg1 < 1E-5){ _arg1 = (_timeScale = 1E-5); } else { _timeScale = _arg1; _arg1 = (_arg1 * _globalTimeScale); }; this.initTime = ((currentTime - ((((currentTime - this.initTime) - (this.delay * (1000 / this.combinedTimeScale))) * this.combinedTimeScale) * (1 / _arg1))) - (this.delay * (1000 / _arg1))); if (this.startTime != 999999999999999){ this.startTime = (this.initTime + (this.delay * (1000 / _arg1))); }; this.combinedTimeScale = _arg1; } public function removeEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false):void{ if (_dispatcher != null){ _dispatcher.removeEventListener(_arg1, _arg2, _arg3); }; } override public function initTweenVals():void{ var _local1:int; var _local2:int; var _local3:String; var _local4:String; var _local5:Array; var _local6:Object; var _local7:TweenInfo; if (((!((this.vars.startAt == null))) && (!((this.delay == 0))))){ this.vars.startAt.overwrite = 0; new TweenMax(this.target, 0, this.vars.startAt); }; super.initTweenVals(); if ((((this.exposedVars.roundProps is Array)) && (!((TweenLite.plugins.roundProps == null))))){ _local5 = this.exposedVars.roundProps; _local1 = (_local5.length - 1); while (_local1 > -1) { _local3 = _local5[_local1]; _local2 = (this.tweens.length - 1); while (_local2 > -1) { _local7 = this.tweens[_local2]; if (_local7.name == _local3){ if (_local7.isPlugin){ _local7.target.round = true; } else { if (_local6 == null){ _local6 = new TweenLite.plugins.roundProps(); _local6.add(_local7.target, _local3, _local7.start, _local7.change); _hasPlugins = true; this.tweens[_local2] = new TweenInfo(_local6, "changeFactor", 0, 1, _local3, true); } else { _local6.add(_local7.target, _local3, _local7.start, _local7.change); this.tweens.splice(_local2, 1); }; }; } else { if (((((_local7.isPlugin) && ((_local7.name == "_MULTIPLE_")))) && (!(_local7.target.round)))){ _local4 = ((" " + _local7.target.overwriteProps.join(" ")) + " "); if (_local4.indexOf(((" " + _local3) + " ")) != -1){ _local7.target.round = true; }; }; }; _local2--; }; _local1--; }; }; } protected function initDispatcher():void{ var _local1:Object; var _local2:String; if (_dispatcher == null){ _dispatcher = new EventDispatcher(this); _callbacks = {onStart:this.vars.onStart, onUpdate:this.vars.onUpdate, onComplete:this.vars.onComplete}; if (this.vars.isTV == true){ this.vars = this.vars.clone(); } else { _local1 = {}; for (_local2 in this.vars) { _local1[_local2] = this.vars[_local2]; }; this.vars = _local1; }; this.vars.onStart = onStartDispatcher; this.vars.onComplete = onCompleteDispatcher; if ((this.vars.onStartListener is Function)){ _dispatcher.addEventListener(TweenEvent.START, this.vars.onStartListener, false, 0, true); }; if ((this.vars.onUpdateListener is Function)){ _dispatcher.addEventListener(TweenEvent.UPDATE, this.vars.onUpdateListener, false, 0, true); this.vars.onUpdate = onUpdateDispatcher; _hasUpdate = true; }; if ((this.vars.onCompleteListener is Function)){ _dispatcher.addEventListener(TweenEvent.COMPLETE, this.vars.onCompleteListener, false, 0, true); }; }; } protected function onUpdateDispatcher(... _args):void{ if (_callbacks.onUpdate != null){ _callbacks.onUpdate.apply(null, this.vars.onUpdateParams); }; _dispatcher.dispatchEvent(new TweenEvent(TweenEvent.UPDATE)); } public function set progress(_arg1:Number):void{ this.startTime = (currentTime - ((this.duration * _arg1) * 1000)); this.initTime = (this.startTime - (this.delay * (1000 / this.combinedTimeScale))); if (!this.started){ activate(); }; render(currentTime); if (!isNaN(this.pauseTime)){ this.pauseTime = currentTime; this.startTime = 999999999999999; this.active = false; }; } public function reverse(_arg1:Boolean=true, _arg2:Boolean=true):void{ var _local3:Number; this.ease = ((this.vars.ease)==this.ease) ? reverseEase : this.vars.ease; _local3 = this.progress; if (((_arg1) && ((_local3 > 0)))){ this.startTime = (currentTime - ((((1 - _local3) * this.duration) * 1000) / this.combinedTimeScale)); this.initTime = (this.startTime - (this.delay * (1000 / this.combinedTimeScale))); }; if (_arg2 != false){ if (_local3 < 1){ resume(); } else { restart(); }; }; } public function addEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false, _arg4:int=0, _arg5:Boolean=false):void{ if (_dispatcher == null){ initDispatcher(); }; if ((((_arg1 == TweenEvent.UPDATE)) && (!((this.vars.onUpdate == onUpdateDispatcher))))){ this.vars.onUpdate = onUpdateDispatcher; _hasUpdate = true; }; _dispatcher.addEventListener(_arg1, _arg2, _arg3, _arg4, _arg5); } public function set paused(_arg1:Boolean):void{ if (_arg1){ pause(); } else { resume(); }; } public function hasEventListener(_arg1:String):Boolean{ if (_dispatcher == null){ return (false); }; return (_dispatcher.hasEventListener(_arg1)); } public function pause():void{ if (isNaN(this.pauseTime)){ this.pauseTime = currentTime; this.startTime = 999999999999999; this.enabled = false; _pausedTweens[this] = this; }; } public function reverseEase(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (this.vars.ease((_arg4 - _arg1), _arg2, _arg3, _arg4)); } protected function onCompleteDispatcher(... _args):void{ if (_callbacks.onComplete != null){ _callbacks.onComplete.apply(null, this.vars.onCompleteParams); }; _dispatcher.dispatchEvent(new TweenEvent(TweenEvent.COMPLETE)); } public static function set globalTimeScale(_arg1:Number):void{ setGlobalTimeScale(_arg1); } public static function pauseAll(_arg1:Boolean=true, _arg2:Boolean=false):void{ changePause(true, _arg1, _arg2); } public static function killAllDelayedCalls(_arg1:Boolean=false):void{ killAll(_arg1, false, true); } public static function setGlobalTimeScale(_arg1:Number):void{ var _local2:Dictionary; var _local3:int; var _local4:Array; if (_arg1 < 1E-5){ _arg1 = 1E-5; }; _local2 = masterList; _globalTimeScale = _arg1; for each (_local4 in _local2) { _local3 = (_local4.length - 1); while (_local3 > -1) { if ((_local4[_local3] is TweenMax)){ _local4[_local3].timeScale = (_local4[_local3].timeScale * 1); }; _local3--; }; }; } public static function get globalTimeScale():Number{ return (_globalTimeScale); } public static function getTweensOf(_arg1:Object):Array{ var _local2:Array; var _local3:Array; var _local4:TweenLite; var _local5:int; _local2 = masterList[_arg1]; _local3 = []; if (_local2 != null){ _local5 = (_local2.length - 1); while (_local5 > -1) { if (!_local2[_local5].gc){ _local3[_local3.length] = _local2[_local5]; }; _local5--; }; }; for each (_local4 in _pausedTweens) { if (_local4.target == _arg1){ _local3[_local3.length] = _local4; }; }; return (_local3); } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null, _arg4:Boolean=false):TweenMax{ return (new TweenMax(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, persist:_arg4, overwrite:0})); } public static function isTweening(_arg1:Object):Boolean{ var _local2:Array; var _local3:int; _local2 = getTweensOf(_arg1); _local3 = (_local2.length - 1); while (_local3 > -1) { if (((((_local2[_local3].active) || ((_local2[_local3].startTime == currentTime)))) && (!(_local2[_local3].gc)))){ return (true); }; _local3--; }; return (false); } public static function changePause(_arg1:Boolean, _arg2:Boolean=true, _arg3:Boolean=false):void{ var _local4:Array; var _local5:Boolean; var _local6:int; _local4 = getAllTweens(); _local6 = (_local4.length - 1); while (_local6 > -1) { _local5 = (_local4[_local6].target == _local4[_local6].vars.onComplete); if ((((_local4[_local6] is TweenMax)) && ((((_local5 == _arg3)) || (!((_local5 == _arg2))))))){ _local4[_local6].paused = _arg1; }; _local6--; }; } public static function killAllTweens(_arg1:Boolean=false):void{ killAll(_arg1, true, false); } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenMax{ _arg3.runBackwards = true; return (new TweenMax(_arg1, _arg2, _arg3)); } public static function killAll(_arg1:Boolean=false, _arg2:Boolean=true, _arg3:Boolean=true):void{ var _local4:Array; var _local5:Boolean; var _local6:int; _local4 = getAllTweens(); _local6 = (_local4.length - 1); while (_local6 > -1) { _local5 = (_local4[_local6].target == _local4[_local6].vars.onComplete); if ((((_local5 == _arg3)) || (!((_local5 == _arg2))))){ if (_arg1){ _local4[_local6].complete(false); _local4[_local6].clear(); } else { TweenLite.removeTween(_local4[_local6], true); }; }; _local6--; }; } public static function getAllTweens():Array{ var _local1:Dictionary; var _local2:Array; var _local3:Array; var _local4:int; var _local5:TweenLite; _local1 = masterList; _local2 = []; for each (_local3 in _local1) { _local4 = (_local3.length - 1); while (_local4 > -1) { if (!_local3[_local4].gc){ _local2[_local2.length] = _local3[_local4]; }; _local4--; }; }; for each (_local5 in _pausedTweens) { _local2[_local2.length] = _local5; }; return (_local2); } public static function resumeAll(_arg1:Boolean=true, _arg2:Boolean=false):void{ changePause(false, _arg1, _arg2); } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenMax{ return (new TweenMax(_arg1, _arg2, _arg3)); } } }//package gs
Section 56
//asDSsndButtoncopy_421 (popcorn_fla.asDSsndButtoncopy_421) package popcorn_fla { import flash.display.*; public dynamic class asDSsndButtoncopy_421 extends MovieClip { public var sndon:SimpleButton; public var sndoff:MovieClip; public function asDSsndButtoncopy_421(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ stop(); } } }//package popcorn_fla
Section 57
//asDSsound_but_village_425 (popcorn_fla.asDSsound_but_village_425) package popcorn_fla { import flash.display.*; public dynamic class asDSsound_but_village_425 extends MovieClip { public var Line:MovieClip; } }//package popcorn_fla
Section 58
//BKU8copy_433 (popcorn_fla.BKU8copy_433) package popcorn_fla { import flash.display.*; public dynamic class BKU8copy_433 extends MovieClip { public var submitScore:SimpleButton; public var gomoreGames:SimpleButton; public var playAgainbt:SimpleButton; public function BKU8copy_433(){ addFrameScript(0, frame1); } function frame1(){ } } }//package popcorn_fla
Section 59
//BKU8copy3_170 (popcorn_fla.BKU8copy3_170) package popcorn_fla { import flash.display.*; import flash.events.*; public dynamic class BKU8copy3_170 extends MovieClip { public var backbt:SimpleButton; public function BKU8copy3_170(){ addFrameScript(0, frame1); } function frame1(){ backbt.addEventListener(MouseEvent.CLICK, backfn); } public function backfn(_arg1:MouseEvent):void{ MovieClip(this.parent).gotoAndStop("start"); } } }//package popcorn_fla
Section 60
//BKU8copy4_442 (popcorn_fla.BKU8copy4_442) package popcorn_fla { import flash.display.*; public dynamic class BKU8copy4_442 extends MovieClip { public var conplayAgainbt:SimpleButton; public var submitScore:SimpleButton; public var conmgbt:SimpleButton; public function BKU8copy4_442(){ addFrameScript(0, frame1); } function frame1(){ } } }//package popcorn_fla
Section 61
//BOYAcc_310 (popcorn_fla.BOYAcc_310) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class BOYAcc_310 extends MovieClip { public function BOYAcc_310(){ addFrameScript(0, frame1, 10, frame11); } function frame1(){ MovieClip(this.parent.parent).startcheck = true; } function frame11(){ stop(); MovieClip(this.parent.parent).eventremove(); } } }//package popcorn_fla
Section 62
//BOYAXcopX_276 (popcorn_fla.BOYAXcopX_276) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class BOYAXcopX_276 extends MovieClip { public function BOYAXcopX_276(){ addFrameScript(20, frame21); } function frame21(){ stop(); MovieClip(this.parent.parent).tempwaste = 1; } } }//package popcorn_fla
Section 63
//BOYAXcopXZZZFGFGcC_286 (popcorn_fla.BOYAXcopXZZZFGFGcC_286) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class BOYAXcopXZZZFGFGcC_286 extends MovieClip { public function BOYAXcopXZZZFGFGcC_286(){ addFrameScript(0, frame1, 4, frame5, 18, frame19, 26, frame27); } public function give(_arg1:MouseEvent){ MovieClip(this.parent.parent).customer.removeEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).customer.food.visible = false; MovieClip(this.parent).gotoAndStop(15); } function frame1(){ MovieClip(this.parent.parent).tempwaste = 0; } function frame19(){ this.gotoAndStop(27); } function frame5(){ stop(); MovieClip(this.parent.parent).sweetMachine.sweetRollPull.gotoAndPlay(2); } function frame27(){ stop(); MovieClip(this.parent.parent).customer.buttonMode = true; MovieClip(this.parent.parent).customer.addEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).temp = 5; } } }//package popcorn_fla
Section 64
//BOYAXcopXZZZFGFGcZXZc_298 (popcorn_fla.BOYAXcopXZZZFGFGcZXZc_298) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class BOYAXcopXZZZFGFGcZXZc_298 extends MovieClip { public function BOYAXcopXZZZFGFGcZXZc_298(){ addFrameScript(21, frame22); } function frame22(){ stop(); MovieClip(this.parent.parent).tempwaste = 2; } } }//package popcorn_fla
Section 65
//BOYAXcopXZZZFGFGcZXZXcopyCV_284 (popcorn_fla.BOYAXcopXZZZFGFGcZXZXcopyCV_284) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class BOYAXcopXZZZFGFGcZXZXcopyCV_284 extends MovieClip { public function BOYAXcopXZZZFGFGcZXZXcopyCV_284(){ addFrameScript(23, frame24); } function frame24(){ stop(); MovieClip(this.parent.parent).tempwaste = 3; } } }//package popcorn_fla
Section 66
//BOYAXcopXZZZz_291 (popcorn_fla.BOYAXcopXZZZz_291) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class BOYAXcopXZZZz_291 extends MovieClip { public function BOYAXcopXZZZz_291(){ addFrameScript(0, frame1, 4, frame5, 18, frame19, 26, frame27); } public function give(_arg1:MouseEvent){ MovieClip(this.parent.parent).customer.removeEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).customer.food.visible = false; MovieClip(this.parent).gotoAndStop(15); } function frame1(){ MovieClip(this.parent.parent).tempwaste = 0; } function frame19(){ this.gotoAndStop(27); } function frame5(){ stop(); MovieClip(this.parent.parent).chocoRollMachine.chocoPull.gotoAndPlay(2); } function frame27(){ stop(); MovieClip(this.parent.parent).customer.buttonMode = true; MovieClip(this.parent.parent).customer.addEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).temp = 6; } } }//package popcorn_fla
Section 67
//BOYAXcX_282 (popcorn_fla.BOYAXcX_282) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class BOYAXcX_282 extends MovieClip { public function BOYAXcX_282(){ addFrameScript(0, frame1, 4, frame5, 27, frame28, 38, frame39); } public function give(_arg1:MouseEvent){ MovieClip(this.parent.parent).customer.removeEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).customer.food.visible = false; MovieClip(this.parent).gotoAndStop(15); } function frame1(){ MovieClip(this.parent.parent).tempwaste = 0; } function frame5(){ stop(); MovieClip(this.parent.parent).sweetcornMachine.sweetPull.gotoAndPlay(2); } function frame28(){ this.gotoAndStop(39); } function frame39(){ stop(); MovieClip(this.parent.parent).customer.buttonMode = true; MovieClip(this.parent.parent).customer.addEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).temp = 2; } } }//package popcorn_fla
Section 68
//BOYAXcXcopyZ_279 (popcorn_fla.BOYAXcXcopyZ_279) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class BOYAXcXcopyZ_279 extends MovieClip { public function BOYAXcXcopyZ_279(){ addFrameScript(0, frame1, 4, frame5, 27, frame28, 38, frame39); } public function give(_arg1:MouseEvent){ MovieClip(this.parent.parent).customer.removeEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).customer.food.visible = false; MovieClip(this.parent).gotoAndStop(15); } function frame1(){ MovieClip(this.parent.parent).tempwaste = 0; } function frame5(){ stop(); MovieClip(this.parent.parent).spicycornMachine.spicyPull.gotoAndPlay(2); } function frame28(){ this.gotoAndStop(39); } function frame39(){ stop(); MovieClip(this.parent.parent).customer.buttonMode = true; MovieClip(this.parent.parent).customer.addEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).temp = 1; } } }//package popcorn_fla
Section 69
//BOYAXcXcopzy_299 (popcorn_fla.BOYAXcXcopzy_299) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class BOYAXcXcopzy_299 extends MovieClip { public function BOYAXcXcopzy_299(){ addFrameScript(0, frame1, 6, frame7, 27, frame28, 38, frame39); } public function give(_arg1:MouseEvent){ MovieClip(this.parent.parent).customer.removeEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).customer.food.visible = false; MovieClip(this.parent).gotoAndStop(15); } function frame7(){ myvar.pourings.play(); } function frame1(){ MovieClip(this.parent.parent).tempwaste = 0; } function frame28(){ this.gotoAndStop(39); } function frame39(){ stop(); MovieClip(this.parent.parent).customer.buttonMode = true; MovieClip(this.parent.parent).customer.addEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).temp = 4; } } }//package popcorn_fla
Section 70
//BOYAXcXcz_300 (popcorn_fla.BOYAXcXcz_300) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class BOYAXcXcz_300 extends MovieClip { public function BOYAXcXcz_300(){ addFrameScript(0, frame1, 6, frame7, 27, frame28, 38, frame39); } public function give(_arg1:MouseEvent){ MovieClip(this.parent.parent).customer.removeEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).customer.food.visible = false; MovieClip(this.parent).gotoAndStop(15); } function frame7(){ myvar.pourings.play(); } function frame1(){ MovieClip(this.parent.parent).tempwaste = 0; } function frame28(){ this.gotoAndStop(39); } function frame39(){ stop(); MovieClip(this.parent.parent).customer.buttonMode = true; MovieClip(this.parent.parent).customer.addEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).temp = 3; } } }//package popcorn_fla
Section 71
//cust_387 (popcorn_fla.cust_387) package popcorn_fla { import flash.display.*; public dynamic class cust_387 extends MovieClip { public var custAll:MovieClip; public var food:MovieClip; public var bar3:MovieClip; public var bar4:MovieClip; public var bar5:MovieClip; public var bar1:MovieClip; public function cust_387(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4); } function frame3(){ stop(); bar1.visible = false; bar3.visible = false; bar4.visible = false; bar5.visible = false; food.visible = false; } function frame1(){ stop(); bar1.visible = false; bar3.visible = false; bar4.visible = false; bar5.visible = false; food.visible = false; } function frame4(){ stop(); bar1.visible = false; bar3.visible = false; bar4.visible = false; bar5.visible = false; food.visible = false; } function frame2(){ stop(); bar1.visible = false; bar3.visible = false; bar4.visible = false; bar5.visible = false; food.visible = false; } } }//package popcorn_fla
Section 72
//custcxvzxcv_416 (popcorn_fla.custcxvzxcv_416) package popcorn_fla { import flash.display.*; public dynamic class custcxvzxcv_416 extends MovieClip { public function custcxvzxcv_416(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4); } function frame3(){ stop(); } function frame1(){ stop(); } function frame4(){ stop(); } function frame2(){ stop(); } } }//package popcorn_fla
Section 73
//cvb_399 (popcorn_fla.cvb_399) package popcorn_fla { import flash.display.*; public dynamic class cvb_399 extends MovieClip { public function cvb_399(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ stop(); } } }//package popcorn_fla
Section 74
//cvxcbxcv_268 (popcorn_fla.cvxcbxcv_268) package popcorn_fla { import flash.display.*; public dynamic class cvxcbxcv_268 extends MovieClip { public function cvxcbxcv_268(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package popcorn_fla
Section 75
//cvxcbxcvcopy_259 (popcorn_fla.cvxcbxcvcopy_259) package popcorn_fla { import flash.display.*; public dynamic class cvxcbxcvcopy_259 extends MovieClip { public function cvxcbxcvcopy_259(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package popcorn_fla
Section 76
//cvxxxcbxcvcopy_253 (popcorn_fla.cvxxxcbxcvcopy_253) package popcorn_fla { import flash.display.*; public dynamic class cvxxxcbxcvcopy_253 extends MovieClip { public function cvxxxcbxcvcopy_253(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package popcorn_fla
Section 77
//cvxxxcbxcvcopyz_244 (popcorn_fla.cvxxxcbxcvcopyz_244) package popcorn_fla { import flash.display.*; public dynamic class cvxxxcbxcvcopyz_244 extends MovieClip { public function cvxxxcbxcvcopyz_244(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package popcorn_fla
Section 78
//foods_398 (popcorn_fla.foods_398) package popcorn_fla { import flash.display.*; public dynamic class foods_398 extends MovieClip { public var foodsall:MovieClip; public var foodAni:MovieClip; public function foods_398(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7); } function frame3(){ stop(); } function frame6(){ stop(); } function frame7(){ stop(); } function frame1(){ stop(); } function frame4(){ stop(); } function frame5(){ stop(); } function frame2(){ stop(); } } }//package popcorn_fla
Section 79
//gamemc_175 (popcorn_fla.gamemc_175) package popcorn_fla { import flash.display.*; import gs.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; import gs.easing.*; public dynamic class gamemc_175 extends MovieClip { public var pabt:SimpleButton; public var allow1:Boolean; public var sweetShow:MovieClip; public var customer1:MovieClip; public var randCust:int; public var remCust:int; public var cornPouch1:MovieClip; public var gsctxt:TextField; public var randFood:Number; public var cornPouch2:MovieClip; public var cornPouch3:MovieClip; public var sndBtn:MovieClip; public var cup:MovieClip; public var juicebool:Boolean; public var orangeShow:MovieClip; public var chocobowlbool:Boolean; public var targetxt:TextField; public var cp:int; public var ts:int; public var pb2:MovieClip; public var timetxt:TextField; public var sweetcornMachine:MovieClip; public var chocoRollMachine:MovieClip; public var popArray:Array; public var scoretxt:TextField; public var lvtxt:TextField; public var chocoShow:MovieClip; public var functionbool:Boolean; public var juiceMachine:MovieClip; public var sweetbowlbool:Boolean; public var wb2:MovieClip; public var pausebt:MovieClip; public var juiceArray:Array; public var grillshow:MovieClip; public var grapeShow:MovieClip; public var dustBin:MovieClip; public var grillmc:MovieClip; public var levelupmc:MovieClip; public var subtime:uint; public var grillShow:MovieClip; public var spicycornMachine:MovieClip; public var juiceCup1:MovieClip; public var lsctxt:TextField; public var sweetMachine:MovieClip; public var server:MovieClip; public var timer:Timer; public var soundCount:int; public var grillCorn3:MovieClip; public var grillCorn1:MovieClip; public var grillCorn2:MovieClip; public var popcount:int; public var spicyPopShow:MovieClip; public var cornArray:Array; public var dustBinBool:Boolean; public var juicecount:int; public var sweetpouchbool:Boolean; public var popjuice:int; public var spicypouchbool:Boolean; public var tempwaste:int; public var lsc:int; public var temp:int; public var customer:MovieClip; public var bowl:MovieClip; public var sweetPopShow:MovieClip; public var startcheck:Boolean; public var bee2:MovieClip; public function gamemc_175(){ addFrameScript(0, frame1, 4, frame5); } public function chocoPullfn(_arg1:MouseEvent){ if (myvar.soundToggle){ myvar.ps.play(); }; sweetMachine.sweetRollPull.removeEventListener(MouseEvent.CLICK, sweetRollPullfn); server.gotoAndStop(7); } public function juiceCupfn(_arg1:MouseEvent){ cornfnrmv(); juiceCup1.removeEventListener(MouseEvent.CLICK, juiceCupfn); bowl.removeEventListener(MouseEvent.CLICK, bowlfn); spicycornMachine.spicyPull.removeEventListener(MouseEvent.CLICK, spicycornMachinefn); sweetcornMachine.sweetPull.removeEventListener(MouseEvent.CLICK, sweetcornMachinefn); sweetMachine.sweetRollPull.removeEventListener(MouseEvent.CLICK, sweetRollPullfn); chocoRollMachine.chocoPull.removeEventListener(MouseEvent.CLICK, chocoPullfn); if (myvar.soundToggle){ myvar.throws.play(); }; temp = 0; tempwaste = 0; juicebool = true; server.gotoAndStop(8); if (juicebool){ juicebool = false; juiceMachine.orangebt.addEventListener(MouseEvent.CLICK, orangebtfn); juiceMachine.grapebt.addEventListener(MouseEvent.CLICK, grapebtfn); }; } public function bowlfn(_arg1:MouseEvent){ cornfnrmv(); juiceCup1.removeEventListener(MouseEvent.CLICK, juiceCupfn); bowl.removeEventListener(MouseEvent.CLICK, bowlfn); juiceMachine.orangebt.removeEventListener(MouseEvent.CLICK, orangebtfn); juiceMachine.grapebt.removeEventListener(MouseEvent.CLICK, grapebtfn); spicycornMachine.spicyPull.removeEventListener(MouseEvent.CLICK, spicycornMachinefn); sweetcornMachine.sweetPull.removeEventListener(MouseEvent.CLICK, sweetcornMachinefn); if (myvar.soundToggle){ myvar.throws.play(); }; temp = 0; tempwaste = 0; sweetbowlbool = true; chocobowlbool = true; server.gotoAndStop(5); if (sweetbowlbool){ sweetbowlbool = false; sweetMachine.sweetRollPull.addEventListener(MouseEvent.CLICK, sweetRollPullfn); }; if (chocobowlbool){ chocobowlbool = false; chocoRollMachine.chocoPull.addEventListener(MouseEvent.CLICK, chocoPullfn); }; } public function starttime(){ customer.mouseEnabled = true; customer.mouseChildren = true; customer.food.visible = true; timer.start(); if ((((myvar.lvcount == 1)) || ((myvar.lvcount == 2)))){ customer.bar1.visible = true; customer.bar1.gotoAndPlay(2); } else { if (myvar.lvcount == 3){ customer.bar3.visible = true; customer.bar3.gotoAndPlay(2); } else { if (myvar.lvcount == 4){ customer.bar4.visible = true; customer.bar4.gotoAndPlay(2); } else { if (myvar.lvcount == 5){ customer.bar5.visible = true; customer.bar5.gotoAndPlay(2); }; }; }; }; } public function cornfnadd():void{ cp = 0; while (cp < cornArray.length) { cornArray[cp].addEventListener(MouseEvent.CLICK, cornPouchfn); cp++; }; } function frame1(){ stop(); allow1 = false; soundCount = 0; if (soundCount == 0){ myvar.soundChannel2 = myvar.bg.play(0, int.MAX_VALUE, myvar.trans2); MovieClip(this.parent).myTimer2.start(); soundCount++; }; myvar.soundToggle = true; sndBtn.buttonMode = true; sndBtn.addEventListener(MouseEvent.CLICK, getSound); bee2.buttonMode = true; bee2.addEventListener(MouseEvent.CLICK, goto2); pausebt.visible = false; if (stage.hasEventListener(KeyboardEvent.KEY_UP) == false){ stage.addEventListener(KeyboardEvent.KEY_UP, pausebtfn); }; stop(); grillShow.visible = false; chocoShow.visible = false; sweetShow.visible = false; orangeShow.visible = false; grapeShow.visible = false; sweetPopShow.visible = false; spicyPopShow.visible = false; tempwaste = 0; bowl.buttonMode = true; juiceCup1.buttonMode = true; cornPouch1.buttonMode = true; cornPouch2.buttonMode = true; cornPouch3.buttonMode = true; grillCorn1.buttonMode = true; grillCorn2.buttonMode = true; grillCorn3.buttonMode = true; dustBin.buttonMode = true; spicycornMachine.spicyPull.buttonMode = true; sweetcornMachine.sweetPull.buttonMode = true; sweetMachine.sweetRollPull.buttonMode = true; chocoRollMachine.chocoPull.buttonMode = true; juiceMachine.orangebt.buttonMode = true; juiceMachine.grapebt.buttonMode = true; timetxt.text = myvar.time.toString(); lvtxt.text = myvar.lvcount.toString(); bowl.visible = false; grillshow.visible = false; juiceCup1.visible = false; cornPouch1.visible = false; cornPouch2.visible = false; cornPouch3.visible = false; grillCorn1.visible = false; grillCorn2.visible = false; grillCorn3.visible = false; chocoRollMachine.visible = false; sweetMachine.visible = false; customer.bar1.visible = false; customer.bar3.visible = false; customer.bar4.visible = false; customer.bar5.visible = false; cup.visible = false; popArray = new Array("", 8, 16, 24, 32, 34); juiceArray = new Array("", 4, 8, 12, 16, 16); spicypouchbool = false; sweetpouchbool = false; juicebool = false; sweetbowlbool = false; chocobowlbool = false; functionbool = false; startcheck = false; timer = new Timer(1000, 0); timer.addEventListener(TimerEvent.TIMER, timerfn); if (!functionbool){ customerfn(); }; bowl.addEventListener(MouseEvent.CLICK, bowlfn); juiceCup1.addEventListener(MouseEvent.CLICK, juiceCupfn); cornArray = new Array(cornPouch1, cornPouch2, cornPouch3); cornfnadd(); grillCorn1.addEventListener(MouseEvent.CLICK, grillCorn1fn); grillCorn2.addEventListener(MouseEvent.CLICK, grillCorn2fn); grillCorn3.addEventListener(MouseEvent.CLICK, grillCorn3fn); dustBinBool = false; dustBin.addEventListener(MouseEvent.CLICK, dustBinfn); } function frame5(){ stop(); this.mouseChildren = true; myvar.soundToggle = false; myvar.soundChannel2.stop(); MovieClip(this.parent).myTimer2.stop(); myvar.soundChannel1 = myvar.bg.play(0, int.MAX_VALUE, myvar.trans1); lsctxt.text = lsc.toString(); gsctxt.text = myvar.gsc.toString(); pabt.addEventListener(MouseEvent.CLICK, nextlv); } public function cornPouchfn(_arg1:MouseEvent){ cornfnrmv(); juiceCup1.removeEventListener(MouseEvent.CLICK, juiceCupfn); bowl.removeEventListener(MouseEvent.CLICK, bowlfn); juiceMachine.orangebt.removeEventListener(MouseEvent.CLICK, orangebtfn); juiceMachine.grapebt.removeEventListener(MouseEvent.CLICK, grapebtfn); sweetMachine.sweetRollPull.removeEventListener(MouseEvent.CLICK, sweetRollPullfn); chocoRollMachine.chocoPull.removeEventListener(MouseEvent.CLICK, chocoPullfn); server.gotoAndStop(2); if (myvar.soundToggle){ myvar.throws.play(); }; temp = 0; tempwaste = 0; spicypouchbool = true; sweetpouchbool = true; if (spicypouchbool){ spicypouchbool = false; spicycornMachine.spicyPull.addEventListener(MouseEvent.CLICK, spicycornMachinefn); }; if (sweetpouchbool){ sweetpouchbool = false; sweetcornMachine.sweetPull.addEventListener(MouseEvent.CLICK, sweetcornMachinefn); }; } public function dustBinfn(_arg1:MouseEvent){ if (myvar.soundToggle){ myvar.trash.play(); }; cornfnadd(); juiceCup1.addEventListener(MouseEvent.CLICK, juiceCupfn); bowl.addEventListener(MouseEvent.CLICK, bowlfn); switch (tempwaste){ case 1: server.gotoAndStop(16); myvar.u = true; tempwaste = 0; juiceCup1.addEventListener(MouseEvent.CLICK, juiceCupfn); bowl.addEventListener(MouseEvent.CLICK, bowlfn); break; case 2: server.gotoAndStop(16); myvar.v = true; tempwaste = 0; cornfnadd(); bowl.addEventListener(MouseEvent.CLICK, bowlfn); break; case 3: server.gotoAndStop(16); myvar.w = true; tempwaste = 0; cornfnadd(); juiceCup1.addEventListener(MouseEvent.CLICK, juiceCupfn); break; }; switch (temp){ case 1: server.gotoAndStop(14); myvar.a = true; temp = 0; break; case 2: server.gotoAndStop(14); myvar.b = true; temp = 0; break; case 3: server.gotoAndStop(14); myvar.c = true; temp = 0; break; case 4: server.gotoAndStop(14); myvar.d = true; temp = 0; break; case 5: server.gotoAndStop(14); myvar.e = true; temp = 0; break; case 6: server.gotoAndStop(14); myvar.f = true; temp = 0; break; case 7: server.gotoAndStop(14); myvar.g = true; temp = 0; break; }; } public function grapebtfn(_arg1:MouseEvent){ if (myvar.soundToggle){ myvar.ps.play(); }; juiceMachine.orangebt.removeEventListener(MouseEvent.CLICK, orangebtfn); juiceMachine.grapebt.gotoAndPlay(2); } public function OrderFood():void{ customer.mouseEnabled = false; customer.mouseChildren = false; grillCorn1.visible = false; grillCorn2.visible = false; grillCorn3.visible = false; timer.stop(); if ((((((((randCust == 1)) || ((randCust == 2)))) || ((randCust == 3)))) || ((randCust == 4)))){ customer1.x = customer.x; customer1.gotoAndStop(randCust); TweenMax.to(customer1, 4, {x:800}); customerfn(); }; } public function spicycornMachinefn(_arg1:MouseEvent){ if (myvar.soundToggle){ myvar.ps.play(); }; sweetcornMachine.sweetPull.removeEventListener(MouseEvent.CLICK, sweetcornMachinefn); server.gotoAndStop(3); } public function timerfn(_arg1:TimerEvent){ myvar.time--; if (myvar.grillwaste){ myvar.grillwaste = false; grillCorn1.visible = false; grillCorn2.visible = false; grillCorn3.visible = false; }; if ((((((((((myvar.lvcount == 1)) || ((myvar.lvcount == 2)))) || ((myvar.lvcount == 3)))) || ((myvar.lvcount == 4)))) || ((myvar.lvcount == 5)))){ if ((((myvar.time == 0)) || ((myvar.time < 0)))){ startcheck = false; timer.stop(); TweenMax.pauseAll(true, true); randFood = 0; randCust = 0; juicecount = 0; popcount = 0; customer.visible = false; functionbool = true; if (myvar.lvcount == 1){ if (lsc >= 400){ myvar.time = 80; levelup(); } else { myvar.time = 40; randFood = 0; randCust = 0; juicecount = 0; popcount = 0; myvar.lscfinal = lsc; myvar.gsc = (myvar.gsc + myvar.lscfinal); MovieClip(this.parent).gotoAndStop("gameover"); }; } else { if (myvar.lvcount == 2){ if (lsc >= 900){ myvar.time = 140; levelup(); } else { myvar.time = 80; randFood = 0; randCust = 0; juicecount = 0; popcount = 0; myvar.lscfinal = lsc; myvar.gsc = (myvar.gsc + myvar.lscfinal); MovieClip(this.parent).gotoAndStop("gameover"); }; } else { if (myvar.lvcount == 3){ if (lsc >= 1800){ myvar.time = 220; levelup(); } else { myvar.time = 140; randFood = 0; randCust = 0; juicecount = 0; popcount = 0; myvar.lscfinal = lsc; myvar.gsc = (myvar.gsc + myvar.lscfinal); MovieClip(this.parent).gotoAndStop("gameover"); }; } else { if (myvar.lvcount == 4){ if (lsc >= 2500){ myvar.time = 280; levelup(); } else { myvar.time = 220; randFood = 0; randCust = 0; juicecount = 0; popcount = 0; myvar.lscfinal = lsc; myvar.gsc = (myvar.gsc + myvar.lscfinal); MovieClip(this.parent).gotoAndStop("gameover"); }; } else { if (lsc >= 3200){ TweenMax.pauseAll(true, true); randFood = 0; randCust = 0; juicecount = 0; popcount = 0; myvar.lscfinal1 = lsc; myvar.gsc = (myvar.gsc + myvar.lscfinal1); functionbool = true; customer.visible = false; removeChild(customer); timer.removeEventListener(TimerEvent.TIMER, timerfn); MovieClip(this.parent).gotoAndStop("congrats"); } else { myvar.time = 280; randFood = 0; randCust = 0; juicecount = 0; popcount = 0; myvar.lscfinal = lsc; myvar.gsc = (myvar.gsc + myvar.lscfinal); MovieClip(this.parent).gotoAndStop("gameover"); }; }; }; }; }; }; }; if (this.currentFrame == 1){ timetxt.text = myvar.time.toString(); if (myvar.time == subtime){ OrderFood(); }; }; if (startcheck){ startcheck = false; cornfnadd(); juiceCup1.addEventListener(MouseEvent.CLICK, juiceCupfn); bowl.addEventListener(MouseEvent.CLICK, bowlfn); if ((((randFood == 1)) && ((temp == 1)))){ lsc = (lsc + 100); spicyPopShow.gotoAndPlay(2); OrderFood(); temp = 0; } else { if ((((randFood == 2)) && ((temp == 2)))){ lsc = (lsc + 100); sweetPopShow.gotoAndPlay(2); OrderFood(); temp = 0; } else { if ((((randFood == 5)) && ((temp == 5)))){ lsc = (lsc + 100); sweetShow.gotoAndPlay(2); OrderFood(); temp = 0; } else { if ((((randFood == 6)) && ((temp == 6)))){ lsc = (lsc + 100); chocoShow.gotoAndPlay(2); OrderFood(); temp = 0; } else { if ((((randFood == 7)) && ((temp == 7)))){ lsc = (lsc + 100); grillShow.gotoAndPlay(2); OrderFood(); temp = 0; } else { if ((((randFood == 3)) && ((temp == 3)))){ lsc = (lsc + 50); grapeShow.gotoAndPlay(2); OrderFood(); temp = 0; } else { if ((((randFood == 4)) && ((temp == 4)))){ lsc = (lsc + 50); orangeShow.gotoAndPlay(2); OrderFood(); temp = 0; } else { switch (temp){ case 1: server.gotoAndStop(17); break; case 2: server.gotoAndStop(19); break; case 3: server.gotoAndStop(23); break; case 4: server.gotoAndStop(22); break; case 5: server.gotoAndStop(20); break; case 6: server.gotoAndStop(21); break; case 7: server.gotoAndStop(18); break; }; }; }; }; }; }; }; }; }; if (this.currentFrame == 1){ scoretxt.text = lsc.toString(); }; } public function grillCorn3fn(_arg1:MouseEvent){ if (myvar.soundToggle){ myvar.throws.play(); }; temp = 0; tempwaste = 0; server.gotoAndStop(13); } public function grillCorn2fn(_arg1:MouseEvent){ if (myvar.soundToggle){ myvar.throws.play(); }; temp = 0; tempwaste = 0; server.gotoAndStop(12); } public function levelup():void{ TweenMax.pauseAll(true, true); randFood = 0; randCust = 0; juicecount = 0; popcount = 0; trace((("myvar gsc" + " ") + myvar.gsc)); myvar.gsc = (myvar.gsc + lsc); timetxt.text = myvar.time.toString(); scoretxt.text = lsc.toString(); timer.stop(); functionbool = true; customer.visible = false; this.gotoAndStop(5); } public function cornfnrmv():void{ var _local1:int; _local1 = 0; while (_local1 < cornArray.length) { cornArray[_local1].removeEventListener(MouseEvent.CLICK, cornPouchfn); _local1++; }; } public function customerfn():void{ var grilltake:Function; var grilltake2:Function; customer.buttonMode = false; customer.mouseEnabled = false; customer.mouseChildren = false; sndBtn.visible = true; myvar.a = false; myvar.b = false; myvar.c = false; myvar.d = false; myvar.e = false; myvar.f = false; myvar.g = false; customer.bar1.gotoAndStop(1); customer.bar3.gotoAndStop(1); customer.bar4.gotoAndStop(1); customer.bar5.gotoAndStop(1); temp = 0; randCust = Math.ceil((Math.random() * 4)); trace(((remCust + " ") + randCust)); if (remCust == randCust){ randCust++; if (randCust == 5){ randCust = 1; }; }; remCust = randCust; trace(((remCust + " ") + randCust)); if ((((myvar.lvcount == 1)) && (!(functionbool)))){ trace("level1"); targetxt.text = String(400); ts = 10; temp = 0; randFood = 0; subtime = (myvar.time - ts); customer.x = -100; customer.y = 400; juiceCup1.visible = true; cornPouch1.visible = true; cornPouch2.visible = true; cornPouch3.visible = true; if (!(((popcount == popArray[myvar.lvcount])) && ((juicecount == juiceArray[myvar.lvcount])))){ randFood = Math.ceil((Math.random() * 4)); popjuice = Math.ceil((Math.random() * 2)); if (popjuice == 1){ if (juicecount < juiceArray[myvar.lvcount]){ juicecount++; customer.food.gotoAndStop(randFood); } else { customerfn(); }; } else { if (popcount < popArray[myvar.lvcount]){ popcount++; customer.food.gotoAndStop(randFood); } else { customerfn(); }; }; }; }; if ((((myvar.lvcount == 2)) && (!(functionbool)))){ targetxt.text = String(900); customer.visible = true; spicypouchbool = false; sweetpouchbool = false; juicebool = false; sweetbowlbool = false; chocobowlbool = false; scoretxt.text = lsc.toString(); lvtxt.text = myvar.lvcount.toString(); trace("level2"); ts = 10; temp = 0; randFood = 0; subtime = (myvar.time - ts); customer.x = -100; customer.y = 400; juiceCup1.visible = true; cornPouch1.visible = true; cornPouch2.visible = true; cornPouch3.visible = true; sweetMachine.visible = true; bowl.visible = true; if (!(((popcount == 16)) && ((juicecount == 8)))){ randFood = Math.ceil((Math.random() * 5)); popjuice = Math.ceil((Math.random() * 2)); if (popjuice == 1){ if (juicecount < 8){ juicecount++; customer.food.gotoAndStop(randFood); } else { customerfn(); }; } else { if (popcount < 16){ popcount++; customer.food.gotoAndStop(randFood); } else { customerfn(); }; }; }; }; if ((((myvar.lvcount == 3)) && (!(functionbool)))){ targetxt.text = String(1800); customer.visible = true; spicypouchbool = false; sweetpouchbool = false; juicebool = false; sweetbowlbool = false; chocobowlbool = false; scoretxt.text = lsc.toString(); lvtxt.text = myvar.lvcount.toString(); trace("level3"); ts = 8; temp = 0; randFood = 0; subtime = (myvar.time - ts); customer.x = -100; customer.y = 400; juiceCup1.visible = true; cornPouch1.visible = true; cornPouch2.visible = true; cornPouch3.visible = true; sweetMachine.visible = true; bowl.visible = true; chocoRollMachine.visible = true; if (!(((popcount == 24)) && ((juicecount == 12)))){ randFood = Math.ceil((Math.random() * 6)); popjuice = Math.ceil((Math.random() * 2)); if (popjuice == 1){ if (juicecount < 12){ juicecount++; customer.food.gotoAndStop(randFood); } else { customerfn(); }; } else { if (popcount < 24){ popcount++; customer.food.gotoAndStop(randFood); } else { customerfn(); }; }; }; }; if ((((myvar.lvcount == 4)) && (!(functionbool)))){ grilltake = function (_arg1:MouseEvent){ grillCorn1.visible = true; grillCorn2.visible = true; grillCorn3.visible = true; grillCorn1.gotoAndPlay(2); grillCorn2.gotoAndPlay(2); grillCorn3.gotoAndPlay(2); }; targetxt.text = String(2500); customer.visible = true; spicypouchbool = false; sweetpouchbool = false; juicebool = false; sweetbowlbool = false; chocobowlbool = false; scoretxt.text = lsc.toString(); lvtxt.text = myvar.lvcount.toString(); trace("level4"); ts = 6; temp = 0; randFood = 0; subtime = (myvar.time - ts); customer.x = -100; customer.y = 400; juiceCup1.visible = true; cornPouch1.visible = true; cornPouch2.visible = true; cornPouch3.visible = true; sweetMachine.visible = true; bowl.visible = true; chocoRollMachine.visible = true; grillshow.visible = true; if (!(((popcount == 32)) && ((juicecount == 16)))){ randFood = Math.ceil((Math.random() * 7)); popjuice = Math.ceil((Math.random() * 2)); if (popjuice == 1){ if (juicecount < 16){ juicecount++; customer.food.gotoAndStop(randFood); } else { customerfn(); }; } else { if (popcount < 32){ popcount++; customer.food.gotoAndStop(randFood); } else { customerfn(); }; }; }; grillmc.addEventListener(MouseEvent.CLICK, grilltake); }; if ((((myvar.lvcount == 5)) && (!(functionbool)))){ grilltake2 = function (_arg1:MouseEvent){ grillCorn1.visible = true; grillCorn2.visible = true; grillCorn3.visible = true; grillCorn1.gotoAndPlay(2); grillCorn2.gotoAndPlay(2); grillCorn3.gotoAndPlay(2); }; targetxt.text = String(3200); customer.visible = true; spicypouchbool = false; sweetpouchbool = false; juicebool = false; sweetbowlbool = false; chocobowlbool = false; scoretxt.text = lsc.toString(); lvtxt.text = myvar.lvcount.toString(); trace("level5"); ts = 5; temp = 0; randFood = 0; subtime = (myvar.time - ts); customer.x = -100; customer.y = 400; juiceCup1.visible = true; cornPouch1.visible = true; cornPouch2.visible = true; cornPouch3.visible = true; sweetMachine.visible = true; bowl.visible = true; chocoRollMachine.visible = true; grillshow.visible = true; if (!(((popcount == 32)) && ((juicecount == 16)))){ randFood = Math.ceil((Math.random() * 7)); popjuice = Math.ceil((Math.random() * 2)); if (popjuice == 1){ if (juicecount < 16){ juicecount++; customer.food.gotoAndStop(randFood); } else { customerfn(); }; } else { if (popcount < 32){ popcount++; customer.food.gotoAndStop(randFood); } else { customerfn(); }; }; }; grillmc.addEventListener(MouseEvent.CLICK, grilltake2); }; if (randCust == 1){ customer.gotoAndStop(1); customer.food.visible = false; TweenMax.to(customer, 4, {x:450, onComplete:starttime}); }; if (randCust == 2){ customer.gotoAndStop(2); customer.food.visible = false; TweenMax.to(customer, 4, {x:450, onComplete:starttime}); }; if (randCust == 3){ customer.gotoAndStop(3); customer.food.visible = false; TweenMax.to(customer, 4, {x:450, onComplete:starttime}); }; if (randCust == 4){ customer.gotoAndStop(4); customer.food.visible = false; TweenMax.to(customer, 4, {x:450, onComplete:starttime}); }; } public function goto2(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.123bee.com"), "_blank"); bee2.removeEventListener(MouseEvent.CLICK, goto2); } public function grillCorn1fn(_arg1:MouseEvent){ if (myvar.soundToggle){ myvar.throws.play(); }; temp = 0; tempwaste = 0; server.gotoAndStop(11); } public function getSound(_arg1:MouseEvent):void{ if (!allow1){ myvar.soundChannel2.stop(); MovieClip(this.parent).myTimer2.stop(); trace(myvar.timerStopCount); myvar.soundToggle = false; myvar.soundChannel1 = myvar.bg.play(0, int.MAX_VALUE, myvar.trans1); allow1 = true; sndBtn.gotoAndStop(2); } else { myvar.soundChannel1.stop(); MovieClip(this.parent).myTimer2.start(); trace(myvar.timerStopCount); myvar.soundChannel2 = myvar.bg.play(myvar.timerStopCount, int.MAX_VALUE, myvar.trans2); myvar.soundToggle = true; allow1 = false; sndBtn.gotoAndStop(1); }; } public function pausebtfn(_arg1:KeyboardEvent):void{ if (this.currentFrame == 1){ if (_arg1.keyCode == 32){ if (pausebt.visible == false){ SoundMixer.stopAll(); myvar.soundToggle = false; myvar.soundChannel2.stop(); pausebt.visible = true; TweenMax.pauseAll(true, true); sndBtn.mouseEnabled = false; sndBtn.mouseChildren = false; sndBtn.gotoAndStop(2); timer.stop(); if ((((myvar.lvcount == 1)) || ((myvar.lvcount == 2)))){ customer.bar1.stop(); } else { if (myvar.lvcount == 3){ customer.bar3.stop(); } else { if (myvar.lvcount == 4){ customer.bar4.stop(); } else { if (myvar.lvcount == 5){ customer.bar5.stop(); }; }; }; }; } else { sndBtn.mouseEnabled = true; sndBtn.mouseChildren = true; sndBtn.gotoAndStop(1); if ((((myvar.lvcount == 1)) || ((myvar.lvcount == 2)))){ customer.bar1.play(); } else { if (myvar.lvcount == 3){ customer.bar3.play(); } else { if (myvar.lvcount == 4){ customer.bar4.play(); } else { if (myvar.lvcount == 5){ customer.bar5.play(); }; }; }; }; if (sndBtn.currentFrame == 1){ myvar.soundToggle = true; myvar.soundChannel1.stop(); myvar.soundChannel2 = myvar.bg.play(0, int.MAX_VALUE); }; pausebt.visible = false; TweenMax.resumeAll(true, true); timer.start(); }; }; }; } public function sweetcornMachinefn(_arg1:MouseEvent){ if (myvar.soundToggle){ myvar.ps.play(); }; spicycornMachine.spicyPull.removeEventListener(MouseEvent.CLICK, spicycornMachinefn); server.gotoAndStop(4); } public function eventremove():void{ spicycornMachine.spicyPull.removeEventListener(MouseEvent.CLICK, spicycornMachinefn); sweetcornMachine.sweetPull.removeEventListener(MouseEvent.CLICK, sweetcornMachinefn); sweetMachine.sweetRollPull.removeEventListener(MouseEvent.CLICK, sweetRollPullfn); chocoRollMachine.chocoPull.removeEventListener(MouseEvent.CLICK, chocoPullfn); juiceMachine.orangebt.removeEventListener(MouseEvent.CLICK, orangebtfn); juiceMachine.grapebt.removeEventListener(MouseEvent.CLICK, grapebtfn); spicycornMachine.spicyPull.removeEventListener(MouseEvent.CLICK, spicycornMachinefn); sweetcornMachine.sweetPull.removeEventListener(MouseEvent.CLICK, sweetcornMachinefn); } public function sweetRollPullfn(_arg1:MouseEvent){ if (myvar.soundToggle){ myvar.ps.play(); }; chocoRollMachine.chocoPull.removeEventListener(MouseEvent.CLICK, chocoPullfn); server.gotoAndStop(6); } public function nextlv(_arg1:MouseEvent){ myvar.lvcount++; lsc = 0; this.gotoAndStop(1); } public function orangebtfn(_arg1:MouseEvent){ if (myvar.soundToggle){ myvar.ps.play(); }; juiceMachine.grapebt.removeEventListener(MouseEvent.CLICK, grapebtfn); juiceMachine.orangebt.gotoAndPlay(2); } } }//package popcorn_fla
Section 80
//gfhmcopy3_261 (popcorn_fla.gfhmcopy3_261) package popcorn_fla { import flash.display.*; public dynamic class gfhmcopy3_261 extends MovieClip { public var chocoPull:MovieClip; } }//package popcorn_fla
Section 81
//gfhmcopy4_257 (popcorn_fla.gfhmcopy4_257) package popcorn_fla { import flash.display.*; public dynamic class gfhmcopy4_257 extends MovieClip { public var sweetRollPull:MovieClip; } }//package popcorn_fla
Section 82
//HKLJ_262 (popcorn_fla.HKLJ_262) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class HKLJ_262 extends MovieClip { public function HKLJ_262(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ stop(); MovieClip(this.parent.parent).server.pullChocoCorn.gotoAndPlay(6); } function frame1(){ stop(); } } }//package popcorn_fla
Section 83
//HKLJcopy_258 (popcorn_fla.HKLJcopy_258) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class HKLJcopy_258 extends MovieClip { public function HKLJcopy_258(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ MovieClip(this.parent.parent).server.pullSweetRollCorn.gotoAndPlay(6); } } }//package popcorn_fla
Section 84
//insaSymbol1_437 (popcorn_fla.insaSymbol1_437) package popcorn_fla { import flash.display.*; import flash.text.*; public dynamic class insaSymbol1_437 extends MovieClip { public var tex:TextField; public var okBtn:SimpleButton; } }//package popcorn_fla
Section 85
//K_228 (popcorn_fla.K_228) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class K_228 extends MovieClip { public function K_228(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ stop(); MovieClip(this.parent.parent).server.gotoAndStop(10); } function frame1(){ stop(); } } }//package popcorn_fla
Section 86
//K_231 (popcorn_fla.K_231) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class K_231 extends MovieClip { public function K_231(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ stop(); MovieClip(this.parent.parent).server.gotoAndStop(9); } function frame1(){ stop(); } } }//package popcorn_fla
Section 87
//KHJKHLcopy2_239 (popcorn_fla.KHJKHLcopy2_239) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class KHJKHLcopy2_239 extends MovieClip { public function KHJKHLcopy2_239(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ stop(); MovieClip(this.parent.parent).server.pullSweetCorn.gotoAndPlay(6); } } }//package popcorn_fla
Section 88
//KHJKHLcopy3_250 (popcorn_fla.KHJKHLcopy3_250) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class KHJKHLcopy3_250 extends MovieClip { public function KHJKHLcopy3_250(){ addFrameScript(0, frame1, 7, frame8); } function frame1(){ stop(); } function frame8(){ stop(); MovieClip(this.parent.parent).server.pullSpicyCorn.gotoAndPlay(6); } } }//package popcorn_fla
Section 89
//L_219 (popcorn_fla.L_219) package popcorn_fla { import flash.display.*; public dynamic class L_219 extends MovieClip { public var grillcorn:MovieClip; } }//package popcorn_fla
Section 90
//level12bar_394 (popcorn_fla.level12bar_394) package popcorn_fla { import flash.display.*; public dynamic class level12bar_394 extends MovieClip { public function level12bar_394(){ addFrameScript(0, frame1, 239, frame240); } function frame1(){ stop(); } function frame240(){ stop(); } } }//package popcorn_fla
Section 91
//level3bar_397 (popcorn_fla.level3bar_397) package popcorn_fla { import flash.display.*; public dynamic class level3bar_397 extends MovieClip { public function level3bar_397(){ addFrameScript(0, frame1, 191, frame192); } function frame1(){ stop(); } function frame192(){ stop(); } } }//package popcorn_fla
Section 92
//level4bar_395 (popcorn_fla.level4bar_395) package popcorn_fla { import flash.display.*; public dynamic class level4bar_395 extends MovieClip { public function level4bar_395(){ addFrameScript(0, frame1, 143, frame144); } function frame144(){ stop(); } function frame1(){ stop(); } } }//package popcorn_fla
Section 93
//level5bar_396 (popcorn_fla.level5bar_396) package popcorn_fla { import flash.display.*; public dynamic class level5bar_396 extends MovieClip { public function level5bar_396(){ addFrameScript(0, frame1, 119, frame120); } function frame1(){ stop(); } function frame120(){ stop(); } } }//package popcorn_fla
Section 94
//LHLJLJLcopy_302 (popcorn_fla.LHLJLJLcopy_302) package popcorn_fla { import flash.display.*; public dynamic class LHLJLJLcopy_302 extends MovieClip { public function LHLJLJLcopy_302(){ addFrameScript(0, frame1, 207, frame208); } function frame208(){ stop(); myvar.grillwaste = true; } function frame1(){ stop(); } } }//package popcorn_fla
Section 95
//LHLJLJLcopy2_349 (popcorn_fla.LHLJLJLcopy2_349) package popcorn_fla { import flash.display.*; public dynamic class LHLJLJLcopy2_349 extends MovieClip { public function LHLJLJLcopy2_349(){ addFrameScript(0, frame1, 207, frame208); } function frame208(){ stop(); } function frame1(){ stop(); } } }//package popcorn_fla
Section 96
//LHLJLJLcopy3_350 (popcorn_fla.LHLJLJLcopy3_350) package popcorn_fla { import flash.display.*; public dynamic class LHLJLJLcopy3_350 extends MovieClip { public function LHLJLJLcopy3_350(){ addFrameScript(0, frame1, 207, frame208); } function frame208(){ stop(); } function frame1(){ stop(); } } }//package popcorn_fla
Section 97
//logo_119 (popcorn_fla.logo_119) package popcorn_fla { import flash.display.*; public dynamic class logo_119 extends MovieClip { public function logo_119(){ addFrameScript(0, frame1); } function frame1(){ this.buttonMode = true; link.logolinks(this); } } }//package popcorn_fla
Section 98
//MainTimeline (popcorn_fla.MainTimeline) package popcorn_fla { import fl.controls.*; import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import fl.data.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var conlsc:TextField; public var dp1:DataProvider; public var myMenu:ContextMenu; public var congsc:TextField; public var instbt:SimpleButton; public var plbt:SimpleButton; public var nameText:TextField; public var cn:Number; public var arr:Array; public var myTimer2:Timer; public var preloader:MovieClip; public var gamelsc:TextField; public var msg:MovieClip; public var conmc:MovieClip; public var arrcon:Array; public var cncon:Number; public var submenu:ContextMenuItem; public var countryCombo:ComboBox; public var gomc:MovieClip; public var gamegsc:TextField; public var gamehome:MovieClip; public var dp:DataProvider; public var countryCombocon:ComboBox; public function MainTimeline(){ addFrameScript(0, frame1, 9, frame10, 19, frame20, 29, frame30, 39, frame40, 49, frame50); } public function run2(_arg1:TimerEvent):void{ myvar.timerStopCount++; } public function link(_arg1:ContextMenuEvent){ navigateToURL(new URLRequest("http://www.123bee.com")); } public function playfn(_arg1:MouseEvent):void{ this.gotoAndStop("game"); } public function gotoBee(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.123bee.com"), "_blank"); gomc.gomoreGames.removeEventListener(MouseEvent.CLICK, gotoBee); } public function submitMyScore(_arg1:MouseEvent):void{ if (((!((nameText.text == ""))) && (!((countryCombo.selectedItem.label == "All Countries"))))){ _arg1.target.mouseEnabled = false; ScoreSubmit.sendMyScore(nameText.text, String(countryCombo.selectedItem.label), myvar.gsc, 10414, "http://www.123bee.com", (myvar.lvcount.toString() + "/5")); gomc.submitScore.removeEventListener(MouseEvent.CLICK, submitMyScore); resetbool(); MovieClip(this.parent).sndBtn.visible = true; MovieClip(this.parent).gotoAndStop("start"); } else { msg.visible = true; if (nameText.text == ""){ msg.tex.text = "Enter your name"; } else { if (countryCombo.selectedItem.label == "All Countries"){ msg.tex.text = "Select your country"; }; }; }; } public function playAgainbtfn(_arg1):void{ gomc.playAgainbt.removeEventListener(MouseEvent.CLICK, playAgainbtfn); removeChild(countryCombo); myvar.gsc = (myvar.gsc - myvar.lscfinal); this.gotoAndStop("start"); } function frame10(){ stop(); plbt.addEventListener(MouseEvent.CLICK, playfn); instbt.addEventListener(MouseEvent.CLICK, instfn); } public function msgHidecon(_arg1:MouseEvent){ msg.visible = false; } public function msgHide(_arg1:MouseEvent){ msg.visible = false; } public function congotoBee(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.123bee.com"), "_blank"); conmc.conmgbt.removeEventListener(MouseEvent.CLICK, congotoBee); } public function onpreloader(_arg1:Event){ var _local2:Number; var _local3:Number; var _local4:Number; _local2 = this.stage.loaderInfo.bytesTotal; _local3 = this.stage.loaderInfo.bytesLoaded; _local4 = int(((_local3 / _local2) * 100)); preloader.cooker.innercooker.per.text = _local4; preloader.preloadMc.gotoAndStop(_local4); if ((((_local4 >= 90)) && ((_local4 <= 99)))){ preloader.cooker.gotoAndStop(2); } else { if (_local4 < 90){ preloader.cooker.gotoAndStop(1); }; }; if (_local4 >= 100){ preloader.cooker.gotoAndStop(3); this.removeEventListener(Event.ENTER_FRAME, onpreloader); }; } function frame1(){ stop(); myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); submenu = new ContextMenuItem("powered by www.123bee.com"); myMenu.customItems.push(submenu); contextMenu = myMenu; submenu.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, link); preloader.cooker.gotoAndStop(1); this.addEventListener(Event.ENTER_FRAME, onpreloader); } public function instfn(_arg1:MouseEvent):void{ this.gotoAndStop("instruction"); } function frame30(){ stop(); myvar.soundToggle = true; myTimer2 = new Timer(0, 0); myTimer2.start(); myTimer2.addEventListener(TimerEvent.TIMER, run2); } function frame20(){ stop(); } public function resetbool1(){ myvar.soundToggle = true; myvar.timerStopCount = 0; myvar.gameTimesec = 0; myvar.gameTimemins = 0; myvar.gameTimehrs = 0; myvar.lvcount = 1; myvar.time = 60; myvar.time1 = 60; myvar.sc = 0; myvar.gsc = 0; myvar.lscfinal = 0; myvar.lscfinal1 = 0; myvar.orangeTook = false; myvar.grapeTook = false; myvar.popcornbool = false; myvar.a = false; myvar.b = false; myvar.c = false; myvar.d = false; myvar.e = false; myvar.f = false; myvar.g = false; myvar.u = false; myvar.v = false; myvar.w = false; myvar.z = false; myvar.grillwaste = false; } public function submitMyScorecon(_arg1:MouseEvent):void{ if (((!((nameText.text == ""))) && (!((countryCombocon.selectedItem.label == "All Countries"))))){ _arg1.target.mouseEnabled = false; ScoreSubmit.sendMyScore(nameText.text, String(countryCombocon.selectedItem.label), myvar.gsc, 10414, "http://www.123bee.com", (myvar.lvcount.toString() + "/5")); conmc.submitScore.removeEventListener(MouseEvent.CLICK, submitMyScorecon); resetbool1(); MovieClip(this.parent).sndBtn.visible = true; MovieClip(this.parent).gotoAndStop("start"); } else { msg.visible = true; if (nameText.text == ""){ msg.tex.text = "Enter your name"; } else { if (countryCombocon.selectedItem.label == "All Countries"){ msg.tex.text = "Select your country"; }; }; }; } function frame40(){ stop(); this.mouseChildren = true; myvar.soundToggle = false; myvar.soundChannel2.stop(); myTimer2.stop(); myvar.soundChannel1 = myvar.bg.play(0, int.MAX_VALUE, myvar.trans1); trace(myvar.gsc); gamelsc.text = myvar.lscfinal.toString(); gamegsc.text = myvar.gsc.toString(); gomc.playAgainbt.addEventListener(MouseEvent.CLICK, playAgainbtfn); gomc.submitScore.addEventListener(MouseEvent.CLICK, submitMyScore); gomc.gomoreGames.addEventListener(MouseEvent.CLICK, gotoBee); msg.visible = false; dp = new DataProvider(); nameText.restrict = "a-z A-Z 0-9\\ ."; nameText.maxChars = 12; msg.okBtn.addEventListener(MouseEvent.CLICK, msgHide); cn = 0; arr = new Array("Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antigua and Barbuda", "Argentina", "Armenia", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bhutan", "Bolivia", "Bosnia and Herzegovina", "Botswana", "Brazil", "Brunei", "Darussalam", "Bulgaria", "Burkina", "Faso", "Burma (Myanmar)", "Burundi", "Cambodia", "Cameroon", "Canada", "Cape", "Verde", "Central African Republic", "Chad", "Chile", "China", "Colombia", "Comoros", "Congo", "Costa Rica", "Croatia", "Cuba", "Cyprus", "Czech Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "Ecuador", "East", "Timor", "Egypt", "Salvador", "England", "Equatorial Guinea", "Eritrea", "Estonia", "Ethiopia", "Fiji", "Finland", "France", "Gabon", "Gambia", "Georgia", "Germany", "Ghana", "Great Britain", "Greece", "Grenada", "Guatemala", "Guinea", "Guinea-Bissau", "Guyana", "Haiti", "Honduras", "Hungary", "Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Korea (North)", "Korea (South)", "Kosovo", "Kuwait", "Kyrgyzstan", "Laos", "Latvia", "Lebanon", "Lesotho", "Liberia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macedonia", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands", "Mauritania", "Mauritius", "Mexico", "Micronesia", "Moldova", "Monaco", "Mongolia", "Montenegro", "Morocco", "Mozambique", "Myanmar", "Namibia", "Nauru", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Niger", "Nigeria", "Norway", "Northern Ireland", "Oman", "Pakistan", "Palau", "Palestinian", "Panama", "Papua new Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Qatar", "Romania", "Russia", "Rwanda", "Nevis", "Lucia Vincent", "Arabia", "Scotland", "Senegal", "Serbia", "Seychelles", "Sierra", "Leone", "Singapore", "Slovakia", "Slovenia", "Solomon Islands", "Somalia", "South Africa", "Spain", "Sri Lanka", "Sudan", "Suriname", "Swaziland", "Sweden", "Switzerland", "Syria", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Togo", "Tonga", "Trinidad", "Tobago", "Tunisia", "Turkey", "Turkmenistan", "Tuvalu", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Vanuatu", "Vatican", "Venezuela", "Vietnam", "Western Sahara*", "Wales", "Yemen", "Zaire", "Zambia", "Zimbabwe"); arr = arr.sort(); dp.addItem({label:"All Countries"}); cn = 0; while (cn < arr.length) { dp.addItem({label:arr[cn]}); cn++; }; countryCombo = new ComboBox(); countryCombo.x = 410; countryCombo.y = 210; countryCombo.width = 170; countryCombo.height = 28; countryCombo.dataProvider = dp; addChild(countryCombo); } public function playAgainbtfncon(_arg1):void{ conmc.conplayAgainbt.removeEventListener(MouseEvent.CLICK, playAgainbtfncon); removeChild(countryCombocon); this.gotoAndStop("start"); } function frame50(){ stop(); this.mouseChildren = true; myvar.soundToggle = false; myvar.soundChannel2.stop(); myTimer2.stop(); myvar.soundChannel1 = myvar.bg.play(0, int.MAX_VALUE, myvar.trans1); trace(myvar.gsc); conlsc.text = myvar.lscfinal1.toString(); congsc.text = myvar.gsc.toString(); conmc.conplayAgainbt.addEventListener(MouseEvent.CLICK, playAgainbtfncon); conmc.submitScore.addEventListener(MouseEvent.CLICK, submitMyScorecon); conmc.conmgbt.addEventListener(MouseEvent.CLICK, congotoBee); msg.visible = false; dp1 = new DataProvider(); nameText.restrict = "a-z A-Z 0-9\\ ."; nameText.maxChars = 12; msg.okBtn.addEventListener(MouseEvent.CLICK, msgHidecon); cncon = 0; arrcon = new Array("Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antigua and Barbuda", "Argentina", "Armenia", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bhutan", "Bolivia", "Bosnia and Herzegovina", "Botswana", "Brazil", "Brunei", "Darussalam", "Bulgaria", "Burkina", "Faso", "Burma (Myanmar)", "Burundi", "Cambodia", "Cameroon", "Canada", "Cape", "Verde", "Central African Republic", "Chad", "Chile", "China", "Colombia", "Comoros", "Congo", "Costa Rica", "Croatia", "Cuba", "Cyprus", "Czech Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "Ecuador", "East", "Timor", "Egypt", "Salvador", "England", "Equatorial Guinea", "Eritrea", "Estonia", "Ethiopia", "Fiji", "Finland", "France", "Gabon", "Gambia", "Georgia", "Germany", "Ghana", "Great Britain", "Greece", "Grenada", "Guatemala", "Guinea", "Guinea-Bissau", "Guyana", "Haiti", "Honduras", "Hungary", "Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Korea (North)", "Korea (South)", "Kosovo", "Kuwait", "Kyrgyzstan", "Laos", "Latvia", "Lebanon", "Lesotho", "Liberia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macedonia", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands", "Mauritania", "Mauritius", "Mexico", "Micronesia", "Moldova", "Monaco", "Mongolia", "Montenegro", "Morocco", "Mozambique", "Myanmar", "Namibia", "Nauru", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Niger", "Nigeria", "Norway", "Northern Ireland", "Oman", "Pakistan", "Palau", "Palestinian", "Panama", "Papua new Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Qatar", "Romania", "Russia", "Rwanda", "Nevis", "Lucia Vincent", "Arabia", "Scotland", "Senegal", "Serbia", "Seychelles", "Sierra", "Leone", "Singapore", "Slovakia", "Slovenia", "Solomon Islands", "Somalia", "South Africa", "Spain", "Sri Lanka", "Sudan", "Suriname", "Swaziland", "Sweden", "Switzerland", "Syria", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Togo", "Tonga", "Trinidad", "Tobago", "Tunisia", "Turkey", "Turkmenistan", "Tuvalu", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Vanuatu", "Vatican", "Venezuela", "Vietnam", "Western Sahara*", "Wales", "Yemen", "Zaire", "Zambia", "Zimbabwe"); arrcon = arrcon.sort(); dp1.addItem({label:"All Countries"}); cncon = 0; while (cncon < arrcon.length) { dp1.addItem({label:arrcon[cncon]}); cncon++; }; countryCombocon = new ComboBox(); countryCombocon.x = 410; countryCombocon.y = 210; countryCombocon.width = 170; countryCombocon.height = 28; countryCombocon.dataProvider = dp1; addChild(countryCombocon); } public function resetbool(){ myvar.soundToggle = true; myvar.timerStopCount = 0; myvar.gameTimesec = 0; myvar.gameTimemins = 0; myvar.gameTimehrs = 0; myvar.lvcount = 1; myvar.time = 60; myvar.time1 = 60; myvar.sc = 0; myvar.gsc = 0; myvar.lscfinal = 0; myvar.lscfinal1 = 0; myvar.orangeTook = false; myvar.grapeTook = false; myvar.popcornbool = false; myvar.a = false; myvar.b = false; myvar.c = false; myvar.d = false; myvar.e = false; myvar.f = false; myvar.g = false; myvar.u = false; myvar.v = false; myvar.w = false; myvar.z = false; myvar.grillwaste = false; } } }//package popcorn_fla
Section 99
//OKL_214 (popcorn_fla.OKL_214) package popcorn_fla { import flash.display.*; public dynamic class OKL_214 extends MovieClip { public function OKL_214(){ addFrameScript(0, frame1, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); } } }//package popcorn_fla
Section 100
//olj_237 (popcorn_fla.olj_237) package popcorn_fla { import flash.display.*; public dynamic class olj_237 extends MovieClip { public function olj_237(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package popcorn_fla
Section 101
//olj_256 (popcorn_fla.olj_256) package popcorn_fla { import flash.display.*; public dynamic class olj_256 extends MovieClip { public function olj_256(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package popcorn_fla
Section 102
//OLJK_238 (popcorn_fla.OLJK_238) package popcorn_fla { import flash.display.*; public dynamic class OLJK_238 extends MovieClip { public var sweetPull:MovieClip; } }//package popcorn_fla
Section 103
//OLJK_249 (popcorn_fla.OLJK_249) package popcorn_fla { import flash.display.*; public dynamic class OLJK_249 extends MovieClip { public var spicyPull:MovieClip; } }//package popcorn_fla
Section 104
//OLJK_263 (popcorn_fla.OLJK_263) package popcorn_fla { import flash.display.*; public dynamic class OLJK_263 extends MovieClip { public var chocomc:MovieClip; } }//package popcorn_fla
Section 105
//prelo_121 (popcorn_fla.prelo_121) package popcorn_fla { import flash.display.*; import flash.text.*; public dynamic class prelo_121 extends MovieClip { public var per:TextField; } }//package popcorn_fla
Section 106
//prelo_124 (popcorn_fla.prelo_124) package popcorn_fla { import flash.display.*; import flash.text.*; public dynamic class prelo_124 extends MovieClip { public var per:TextField; public function prelo_124(){ addFrameScript(31, frame32); } function frame32(){ stop(); gotoAndPlay("loop"); } } }//package popcorn_fla
Section 107
//prelo_129 (popcorn_fla.prelo_129) package popcorn_fla { import flash.display.*; import flash.text.*; public dynamic class prelo_129 extends MovieClip { public var per:TextField; public function prelo_129(){ addFrameScript(24, frame25); } function frame25(){ stop(); MovieClip(parent.parent.parent).gotoAndStop("start"); } } }//package popcorn_fla
Section 108
//prelocooker_120 (popcorn_fla.prelocooker_120) package popcorn_fla { import flash.display.*; public dynamic class prelocooker_120 extends MovieClip { public var innercooker:MovieClip; public var bit1:bitsound; public function prelocooker_120(){ addFrameScript(1, frame2); } function frame2(){ bit1 = new bitsound(cooker); } } }//package popcorn_fla
Section 109
//prelolodergddfhh_7 (popcorn_fla.prelolodergddfhh_7) package popcorn_fla { import flash.display.*; public dynamic class prelolodergddfhh_7 extends MovieClip { public function prelolodergddfhh_7(){ addFrameScript(0, frame1, 99, frame100); } function frame1(){ stop(); } function frame100(){ stop(); } } }//package popcorn_fla
Section 110
//preloSymbol74_1 (popcorn_fla.preloSymbol74_1) package popcorn_fla { import flash.display.*; public dynamic class preloSymbol74_1 extends MovieClip { public var cooker:MovieClip; public var preloadMc:MovieClip; } }//package popcorn_fla
Section 111
//preloSymbol7copy3_27 (popcorn_fla.preloSymbol7copy3_27) package popcorn_fla { import flash.display.*; public dynamic class preloSymbol7copy3_27 extends MovieClip { public var bit1:bitsound; public function preloSymbol7copy3_27(){ addFrameScript(7, frame8); } function frame8(){ bit1 = new bitsound(catchthecup); } } }//package popcorn_fla
Section 112
//Scvbcb_378 (popcorn_fla.Scvbcb_378) package popcorn_fla { import flash.display.*; public dynamic class Scvbcb_378 extends MovieClip { public function Scvbcb_378(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ stop(); } } }//package popcorn_fla
Section 113
//Scvbcbcvb_383 (popcorn_fla.Scvbcbcvb_383) package popcorn_fla { import flash.display.*; public dynamic class Scvbcbcvb_383 extends MovieClip { public function Scvbcbcvb_383(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ stop(); } } }//package popcorn_fla
Section 114
//Scvbcgh_370 (popcorn_fla.Scvbcgh_370) package popcorn_fla { import flash.display.*; public dynamic class Scvbcgh_370 extends MovieClip { public function Scvbcgh_370(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ stop(); } } }//package popcorn_fla
Section 115
//Scvbcghb_372 (popcorn_fla.Scvbcghb_372) package popcorn_fla { import flash.display.*; public dynamic class Scvbcghb_372 extends MovieClip { public var foodsall:MovieClip; public function Scvbcghb_372(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ stop(); } } }//package popcorn_fla
Section 116
//Scvbcghghgh_368 (popcorn_fla.Scvbcghghgh_368) package popcorn_fla { import flash.display.*; public dynamic class Scvbcghghgh_368 extends MovieClip { public function Scvbcghghgh_368(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ stop(); } } }//package popcorn_fla
Section 117
//Scvbcvbcvb_362 (popcorn_fla.Scvbcvbcvb_362) package popcorn_fla { import flash.display.*; public dynamic class Scvbcvbcvb_362 extends MovieClip { public var foodsall:MovieClip; public function Scvbcvbcvb_362(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ stop(); } } }//package popcorn_fla
Section 118
//Scvbcx_365 (popcorn_fla.Scvbcx_365) package popcorn_fla { import flash.display.*; public dynamic class Scvbcx_365 extends MovieClip { public var foodsall:MovieClip; public function Scvbcx_365(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); trace("sweet"); } function frame5(){ stop(); } } }//package popcorn_fla
Section 119
//Symbol2BB_270 (popcorn_fla.Symbol2BB_270) package popcorn_fla { import flash.display.*; public dynamic class Symbol2BB_270 extends MovieClip { public var pullSweetCorn:MovieClip; public var pullSpicyCorn:MovieClip; public var juicetakeAni:MovieClip; public var grillcornAni:MovieClip; public var pullSweetRollCorn:MovieClip; public var grapeAni:MovieClip; public var pullChocoCorn:MovieClip; public var pouchtakeAni:MovieClip; public var bowltakeAni:MovieClip; public var orangeAni:MovieClip; public var throwtoDustBin:MovieClip; public function Symbol2BB_270(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23); } function frame10(){ stop(); } function frame14(){ stop(); } function frame18(){ stop(); } function frame12(){ stop(); } function frame6(){ stop(); } function frame7(){ stop(); } function frame1(){ stop(); } function frame3(){ stop(); } function frame13(){ stop(); } function frame22(){ stop(); } function frame4(){ stop(); } function frame8(){ stop(); } function frame9(){ stop(); } function frame2(){ stop(); } function frame5(){ stop(); } function frame15(){ stop(); } function frame16(){ stop(); } function frame11(){ stop(); } function frame17(){ stop(); } function frame19(){ stop(); } function frame20(){ stop(); } function frame23(){ stop(); } function frame21(){ stop(); } } }//package popcorn_fla
Section 120
//Timeline_222 (popcorn_fla.Timeline_222) package popcorn_fla { import flash.display.*; public dynamic class Timeline_222 extends MovieClip { public var orangebt:MovieClip; public var grapebt:MovieClip; } }//package popcorn_fla
Section 121
//vb_308 (popcorn_fla.vb_308) package popcorn_fla { import flash.display.*; public dynamic class vb_308 extends MovieClip { public function vb_308(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7); } function frame3(){ stop(); } function frame6(){ stop(); } function frame7(){ stop(); } function frame1(){ stop(); } function frame4(){ stop(); } function frame5(){ stop(); } function frame2(){ stop(); } } }//package popcorn_fla
Section 122
//vbcopy1_312 (popcorn_fla.vbcopy1_312) package popcorn_fla { import flash.display.*; public dynamic class vbcopy1_312 extends MovieClip { public function vbcopy1_312(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7); } function frame3(){ stop(); } function frame6(){ stop(); } function frame7(){ stop(); } function frame1(){ stop(); } function frame4(){ stop(); } function frame5(){ stop(); } function frame2(){ stop(); } } }//package popcorn_fla
Section 123
//vbcopy2_313 (popcorn_fla.vbcopy2_313) package popcorn_fla { import flash.display.*; public dynamic class vbcopy2_313 extends MovieClip { public function vbcopy2_313(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7); } function frame3(){ stop(); trace("v"); } function frame6(){ stop(); } function frame7(){ stop(); } function frame1(){ stop(); } function frame4(){ stop(); } function frame5(){ stop(); trace("w"); } function frame2(){ stop(); trace("u"); } } }//package popcorn_fla
Section 124
//xvxcc1_314 (popcorn_fla.xvxcc1_314) package popcorn_fla { import flash.display.*; public dynamic class xvxcc1_314 extends MovieClip { public function xvxcc1_314(){ addFrameScript(7, frame8, 56, frame57); } function frame8(){ myvar.bh.play(); } function frame57(){ stop(); } } }//package popcorn_fla
Section 125
//xvxcc1cozxcxcxc_343 (popcorn_fla.xvxcc1cozxcxcxc_343) package popcorn_fla { import flash.display.*; public dynamic class xvxcc1cozxcxcxc_343 extends MovieClip { public function xvxcc1cozxcxcxc_343(){ addFrameScript(56, frame57); } function frame57(){ stop(); } } }//package popcorn_fla
Section 126
//xvxcc1cozxcxcxxc_344 (popcorn_fla.xvxcc1cozxcxcxxc_344) package popcorn_fla { import flash.display.*; public dynamic class xvxcc1cozxcxcxxc_344 extends MovieClip { public function xvxcc1cozxcxcxxc_344(){ addFrameScript(56, frame57); } function frame57(){ stop(); } } }//package popcorn_fla
Section 127
//xvxcc1cozxczxccopz_328 (popcorn_fla.xvxcc1cozxczxccopz_328) package popcorn_fla { import flash.display.*; public dynamic class xvxcc1cozxczxccopz_328 extends MovieClip { public function xvxcc1cozxczxccopz_328(){ addFrameScript(56, frame57); } function frame57(){ stop(); } } }//package popcorn_fla
Section 128
//xvxcc1cozxczxccopzxczxcy_324 (popcorn_fla.xvxcc1cozxczxccopzxczxcy_324) package popcorn_fla { import flash.display.*; public dynamic class xvxcc1cozxczxccopzxczxcy_324 extends MovieClip { public function xvxcc1cozxczxccopzxczxcy_324(){ addFrameScript(56, frame57); } function frame57(){ stop(); } } }//package popcorn_fla
Section 129
//xvxcc1cozxxzfghfghfxc_335 (popcorn_fla.xvxcc1cozxxzfghfghfxc_335) package popcorn_fla { import flash.display.*; public dynamic class xvxcc1cozxxzfghfghfxc_335 extends MovieClip { public function xvxcc1cozxxzfghfghfxc_335(){ addFrameScript(47, frame48); } function frame48(){ stop(); } } }//package popcorn_fla
Section 130
//xvxcc1cozxxzxzx_330 (popcorn_fla.xvxcc1cozxxzxzx_330) package popcorn_fla { import flash.display.*; public dynamic class xvxcc1cozxxzxzx_330 extends MovieClip { public function xvxcc1cozxxzxzx_330(){ addFrameScript(47, frame48); } function frame48(){ stop(); } } }//package popcorn_fla
Section 131
//zzxzx_301 (popcorn_fla.zzxzx_301) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class zzxzx_301 extends MovieClip { public function zzxzx_301(){ addFrameScript(0, frame1, 3, frame4, 10, frame11, 18, frame19); } public function give(_arg1:MouseEvent){ MovieClip(this.parent.parent).customer.removeEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).customer.food.visible = false; MovieClip(this.parent).gotoAndStop(15); } function frame1(){ MovieClip(this.parent.parent).tempwaste = 0; } function frame19(){ stop(); MovieClip(this.parent.parent).customer.buttonMode = true; MovieClip(this.parent.parent).customer.addEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).temp = 7; } function frame4(){ MovieClip(this.parent.parent).grillCorn1.visible = false; } function frame11(){ this.gotoAndStop(19); } } }//package popcorn_fla
Section 132
//zzxzxcx_305 (popcorn_fla.zzxzxcx_305) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class zzxzxcx_305 extends MovieClip { public function zzxzxcx_305(){ addFrameScript(0, frame1, 3, frame4, 12, frame13, 20, frame21); } public function give(_arg1:MouseEvent){ MovieClip(this.parent.parent).customer.removeEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).customer.food.visible = false; MovieClip(this.parent).gotoAndStop(15); } function frame1(){ MovieClip(this.parent.parent).tempwaste = 0; } function frame13(){ this.gotoAndStop(21); } function frame4(){ MovieClip(this.parent.parent).grillCorn2.visible = false; } function frame21(){ stop(); MovieClip(this.parent.parent).customer.buttonMode = true; MovieClip(this.parent.parent).customer.addEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).temp = 7; } } }//package popcorn_fla
Section 133
//zzxzxczx_306 (popcorn_fla.zzxzxczx_306) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class zzxzxczx_306 extends MovieClip { public function zzxzxczx_306(){ addFrameScript(0, frame1, 3, frame4, 14, frame15, 22, frame23); } public function give(_arg1:MouseEvent){ MovieClip(this.parent.parent).customer.removeEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).customer.food.visible = false; MovieClip(this.parent).gotoAndStop(15); } function frame15(){ this.gotoAndStop(24); } function frame1(){ MovieClip(this.parent.parent).tempwaste = 0; } function frame23(){ stop(); MovieClip(this.parent.parent).customer.buttonMode = true; MovieClip(this.parent.parent).customer.addEventListener(MouseEvent.CLICK, give); MovieClip(this.parent.parent).temp = 7; } function frame4(){ MovieClip(this.parent.parent).grillCorn3.visible = false; } } }//package popcorn_fla
Section 134
//zzxzz_307 (popcorn_fla.zzxzz_307) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class zzxzz_307 extends MovieClip { public var throwfood:MovieClip; public function zzxzz_307(){ addFrameScript(0, frame1, 14, frame15); } function frame15(){ stop(); MovieClip(this.parent.parent).temp = 0; MovieClip(this.parent.parent).dustBin.gotoAndPlay(1); } function frame1(){ if (myvar.a){ throwfood.gotoAndStop(1); myvar.a = false; } else { if (myvar.b){ throwfood.gotoAndStop(2); myvar.b = false; } else { if (myvar.c){ throwfood.gotoAndStop(3); myvar.c = false; } else { if (myvar.d){ throwfood.gotoAndStop(4); myvar.d = false; } else { if (myvar.e){ throwfood.gotoAndStop(5); myvar.e = false; } else { if (myvar.f){ throwfood.gotoAndStop(6); myvar.f = false; } else { if (myvar.g){ throwfood.gotoAndStop(7); myvar.g = false; }; }; }; }; }; }; }; } } }//package popcorn_fla
Section 135
//zzxzzcopy_311 (popcorn_fla.zzxzzcopy_311) package popcorn_fla { import flash.display.*; import flash.events.*; import flash.geom.*; import flash.filters.*; import flash.text.*; import flash.utils.*; import flash.media.*; import flash.ui.*; import flash.errors.*; import flash.system.*; import flash.net.*; import adobe.utils.*; import flash.accessibility.*; import flash.external.*; import flash.printing.*; import flash.xml.*; public dynamic class zzxzzcopy_311 extends MovieClip { public var throwfood2:MovieClip; public function zzxzzcopy_311(){ addFrameScript(0, frame1, 14, frame15); } function frame15(){ stop(); MovieClip(this.parent.parent).dustBin.gotoAndPlay(1); } function frame1(){ if (myvar.soundToggle){ myvar.trash.play(); }; if (myvar.u){ throwfood2.gotoAndStop(2); myvar.u = false; MovieClip(this.parent.parent).tempwaste = 0; } else { if (myvar.v){ throwfood2.gotoAndStop(3); myvar.v = false; MovieClip(this.parent.parent).tempwaste = 0; } else { if (myvar.w){ throwfood2.gotoAndStop(5); myvar.w = false; MovieClip(this.parent.parent).tempwaste = 0; }; }; }; } } }//package popcorn_fla
Section 136
//ballhittingsound (ballhittingsound) package { import flash.media.*; public dynamic class ballhittingsound extends Sound { } }//package
Section 137
//Bg (Bg) package { import flash.media.*; public dynamic class Bg extends Sound { } }//package
Section 138
//bitsound (bitsound) package { import flash.display.*; import flash.media.*; public class bitsound extends MovieClip { public var soundtransform:SoundTransform; public static var soundchannel11:SoundChannel = new SoundChannel(); public static var sounds:Sound; public function bitsound(_arg1){ soundtransform = new SoundTransform(); super(); sounds = new (_arg1); soundchannel11 = sounds.play(); } } }//package
Section 139
//catchthecup (catchthecup) package { import flash.media.*; public dynamic class catchthecup extends Sound { } }//package
Section 140
//CellRenderer_disabledSkin (CellRenderer_disabledSkin) package { import flash.display.*; public dynamic class CellRenderer_disabledSkin extends MovieClip { } }//package
Section 141
//CellRenderer_downSkin (CellRenderer_downSkin) package { import flash.display.*; public dynamic class CellRenderer_downSkin extends MovieClip { } }//package
Section 142
//CellRenderer_overSkin (CellRenderer_overSkin) package { import flash.display.*; public dynamic class CellRenderer_overSkin extends MovieClip { } }//package
Section 143
//CellRenderer_selectedDisabledSkin (CellRenderer_selectedDisabledSkin) package { import flash.display.*; public dynamic class CellRenderer_selectedDisabledSkin extends MovieClip { } }//package
Section 144
//CellRenderer_selectedDownSkin (CellRenderer_selectedDownSkin) package { import flash.display.*; public dynamic class CellRenderer_selectedDownSkin extends MovieClip { } }//package
Section 145
//CellRenderer_selectedOverSkin (CellRenderer_selectedOverSkin) package { import flash.display.*; public dynamic class CellRenderer_selectedOverSkin extends MovieClip { } }//package
Section 146
//CellRenderer_selectedUpSkin (CellRenderer_selectedUpSkin) package { import flash.display.*; public dynamic class CellRenderer_selectedUpSkin extends MovieClip { } }//package
Section 147
//CellRenderer_upSkin (CellRenderer_upSkin) package { import flash.display.*; public dynamic class CellRenderer_upSkin extends MovieClip { } }//package
Section 148
//ComboBox_disabledSkin (ComboBox_disabledSkin) package { import flash.display.*; public dynamic class ComboBox_disabledSkin extends MovieClip { } }//package
Section 149
//ComboBox_downSkin (ComboBox_downSkin) package { import flash.display.*; public dynamic class ComboBox_downSkin extends MovieClip { } }//package
Section 150
//ComboBox_overSkin (ComboBox_overSkin) package { import flash.display.*; public dynamic class ComboBox_overSkin extends MovieClip { } }//package
Section 151
//ComboBox_upSkin (ComboBox_upSkin) package { import flash.display.*; public dynamic class ComboBox_upSkin extends MovieClip { } }//package
Section 152
//cooker (cooker) package { import flash.media.*; public dynamic class cooker extends Sound { } }//package
Section 153
//focusRectSkin (focusRectSkin) package { import flash.display.*; public dynamic class focusRectSkin extends MovieClip { } }//package
Section 154
//link (link) package { import flash.display.*; import flash.events.*; import flash.net.*; public class link extends MovieClip { public var logo:MovieClip; public static function logolinks(_arg1){ _arg1.addEventListener(MouseEvent.CLICK, logoconnect); } public static function logoconnect(_arg1:MouseEvent){ navigateToURL(new URLRequest("http://www.123bee.com")); } } }//package
Section 155
//List_skin (List_skin) package { import flash.display.*; public dynamic class List_skin extends MovieClip { } }//package
Section 156
//myvar (myvar) package { import flash.media.*; public class myvar { public static var z:Boolean = false; public static var grapeTook:Boolean = false; public static var ps:popcornbuttonsound = new popcornbuttonsound(); public static var time1:int = 60; public static var trans1:SoundTransform = new SoundTransform(0, 0); public static var trans2:SoundTransform = new SoundTransform(1, 0); public static var u:Boolean = false; public static var gameTimesec:int = 0; public static var grillwaste:Boolean = false; public static var pourings:pouringsound = new pouringsound(); public static var lscfinal1:int = 0; public static var trash:trashsound = new trashsound(); public static var lscfinal:int = 0; public static var soundChannel1:SoundChannel = new SoundChannel(); public static var soundChannel2:SoundChannel = new SoundChannel(); public static var gameTimemins:int = 0; public static var soundToggle:Boolean = true; public static var bg:Bg = new Bg(); public static var bh:ballhittingsound = new ballhittingsound(); public static var lvcount:int = 1; public static var throws:throwingsound = new throwingsound(); public static var time:int = 40; public static var sc:int = 0; public static var a:Boolean = false; public static var b:Boolean = false; public static var popcornbool:Boolean = false; public static var d:Boolean = false; public static var orangeTook:Boolean = false; public static var f:Boolean = false; public static var g:Boolean = false; public static var timerStopCount:int = 0; public static var gameTimehrs:int = 0; public static var e:Boolean = false; public static var c:Boolean = false; public static var v:Boolean = false; public static var gsc:int = 0; public static var w:Boolean = false; } }//package
Section 157
//popcornbuttonsound (popcornbuttonsound) package { import flash.media.*; public dynamic class popcornbuttonsound extends Sound { } }//package
Section 158
//pouringsound (pouringsound) package { import flash.media.*; public dynamic class pouringsound extends Sound { } }//package
Section 159
//ScoreSubmit (ScoreSubmit) package { import flash.display.*; import flash.events.*; import flash.system.*; import flash.net.*; public class ScoreSubmit extends Sprite { public static function sendMyScore(_arg1:String, _arg2:String, _arg3:Number, _arg4:Number, _arg5:String, _arg6:String):void{ var receivedData:String; var processedData:String; var addressRequest:URLRequest; var dataObject:URLVariables; var addressLoader:URLLoader; var callMe:Function; var myName = _arg1; var myCountry = _arg2; var myScore = _arg3; var myGameId = _arg4; var mySite = _arg5; var myLevels = _arg6; callMe = function (_arg1:Event):void{ var _local2:Number; var _local3:Number; receivedData = _arg1.target.data; if (receivedData.match("success=0")){ } else { if (receivedData.match("success=1")){ trace(receivedData); _local2 = receivedData.indexOf("scoreid"); _local3 = receivedData.indexOf("&"); if (_local2 == 0){ processedData = receivedData.substring(_local2, _local3); } else { processedData = receivedData.substring(_local2); }; if (mySite.match("123bee")){ navigateToURL(new URLRequest(((("http://www.123bee.com/highscores?gameid=" + myGameId) + "&") + processedData))); } else { if (mySite.match("123peppy")){ navigateToURL(new URLRequest(((("http://www.123peppy.com/highscore?gameid=" + myGameId) + "&") + processedData))); }; }; }; }; }; Security.allowDomain("*"); Security.allowInsecureDomain("*"); if (mySite.match("123bee")){ addressRequest = new URLRequest("http://www.123bee.com/scores/saveScore.php"); } else { if (mySite.match("123peppy")){ addressRequest = new URLRequest("http://www.123peppy.com/score/saveScore.php"); }; }; dataObject = new URLVariables(); dataObject.fname = myName; dataObject.country = myCountry; dataObject.score = myScore; dataObject.Levels = myLevels; dataObject.gameid = myGameId; addressRequest.data = dataObject; addressLoader = new URLLoader(); addressLoader.dataFormat = URLLoaderDataFormat.VARIABLES; addressLoader.addEventListener(Event.COMPLETE, callMe); addressLoader.load(addressRequest); } } }//package
Section 160
//ScrollArrowDown_disabledSkin (ScrollArrowDown_disabledSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_disabledSkin extends MovieClip { } }//package
Section 161
//ScrollArrowDown_downSkin (ScrollArrowDown_downSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_downSkin extends MovieClip { } }//package
Section 162
//ScrollArrowDown_overSkin (ScrollArrowDown_overSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_overSkin extends MovieClip { } }//package
Section 163
//ScrollArrowDown_upSkin (ScrollArrowDown_upSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_upSkin extends MovieClip { } }//package
Section 164
//ScrollArrowUp_disabledSkin (ScrollArrowUp_disabledSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_disabledSkin extends MovieClip { } }//package
Section 165
//ScrollArrowUp_downSkin (ScrollArrowUp_downSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_downSkin extends MovieClip { } }//package
Section 166
//ScrollArrowUp_overSkin (ScrollArrowUp_overSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_overSkin extends MovieClip { } }//package
Section 167
//ScrollArrowUp_upSkin (ScrollArrowUp_upSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_upSkin extends MovieClip { } }//package
Section 168
//ScrollBar_thumbIcon (ScrollBar_thumbIcon) package { import flash.display.*; public dynamic class ScrollBar_thumbIcon extends MovieClip { } }//package
Section 169
//ScrollThumb_downSkin (ScrollThumb_downSkin) package { import flash.display.*; public dynamic class ScrollThumb_downSkin extends MovieClip { } }//package
Section 170
//ScrollThumb_overSkin (ScrollThumb_overSkin) package { import flash.display.*; public dynamic class ScrollThumb_overSkin extends MovieClip { } }//package
Section 171
//ScrollThumb_upSkin (ScrollThumb_upSkin) package { import flash.display.*; public dynamic class ScrollThumb_upSkin extends MovieClip { } }//package
Section 172
//ScrollTrack_skin (ScrollTrack_skin) package { import flash.display.*; public dynamic class ScrollTrack_skin extends MovieClip { } }//package
Section 173
//TextInput_disabledSkin (TextInput_disabledSkin) package { import flash.display.*; public dynamic class TextInput_disabledSkin extends MovieClip { } }//package
Section 174
//TextInput_upSkin (TextInput_upSkin) package { import flash.display.*; public dynamic class TextInput_upSkin extends MovieClip { } }//package
Section 175
//throwingsound (throwingsound) package { import flash.media.*; public dynamic class throwingsound extends Sound { } }//package
Section 176
//trashsound (trashsound) package { import flash.media.*; public dynamic class trashsound extends Sound { } }//package

Library Items

Symbol 1 Sound {trashsound}
Symbol 2 Sound {throwingsound}
Symbol 3 Sound {pouringsound}
Symbol 4 Sound {popcornbuttonsound}
Symbol 5 Sound {cooker}
Symbol 6 Sound {catchthecup}
Symbol 7 Sound {Bg}
Symbol 8 Sound {ballhittingsound}
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:26 75 76
Symbol 11 MovieClip {fl.core.ComponentShim}Used by:26 45 74 75 76
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClip {focusRectSkin}Uses:12Used by:26 74 75 76
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClip {ComboBox_upSkin}Uses:14Used by:76
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClip {ComboBox_disabledSkin}Uses:16Used by:76
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClip {ComboBox_overSkin}Uses:18Used by:76
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClip {ComboBox_downSkin}Uses:20Used by:76
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClip {TextInput_disabledSkin}Uses:22Used by:26
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClip {TextInput_upSkin}Uses:24Used by:26
Symbol 26 MovieClip {fl.controls.TextInput}Uses:10 11 23 25 13Used by:76
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClip {List_skin}Uses:27Used by:75
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClip {CellRenderer_upSkin}Uses:29Used by:45
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClip {CellRenderer_disabledSkin}Uses:31Used by:45
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClip {CellRenderer_downSkin}Uses:33Used by:45
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClip {CellRenderer_overSkin}Uses:35Used by:45
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClip {CellRenderer_selectedDisabledSkin}Uses:37Used by:45
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClip {CellRenderer_selectedDownSkin}Uses:39Used by:45
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClip {CellRenderer_selectedOverSkin}Uses:41Used by:45
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClip {CellRenderer_selectedUpSkin}Uses:43Used by:45
Symbol 45 MovieClip {fl.controls.listClasses.CellRenderer}Uses:30 11 32 34 36 38 40 42 44Used by:75
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClip {ScrollTrack_skin}Uses:46Used by:74
Symbol 48 GraphicUsed by:51
Symbol 49 GraphicUsed by:50 53 57 67
Symbol 50 MovieClipUses:49Used by:51 61 63
Symbol 51 MovieClip {ScrollArrowUp_downSkin}Uses:48 50Used by:74
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClip {ScrollArrowDown_downSkin}Uses:52 49Used by:74
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClip {ScrollThumb_downSkin}Uses:54Used by:74
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClip {ScrollArrowDown_overSkin}Uses:56 49Used by:74
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClip {ScrollThumb_overSkin}Uses:58Used by:74
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClip {ScrollArrowUp_overSkin}Uses:60 50Used by:74
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClip {ScrollArrowUp_upSkin}Uses:62 50Used by:74
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClip {ScrollThumb_upSkin}Uses:64Used by:74
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClip {ScrollArrowDown_upSkin}Uses:66 49Used by:74
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClip {ScrollArrowDown_disabledSkin}Uses:68Used by:74
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClip {ScrollArrowUp_disabledSkin}Uses:70Used by:74
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClip {ScrollBar_thumbIcon}Uses:72Used by:74
Symbol 74 MovieClip {fl.controls.ScrollBar}Uses:47 11 13 51 53 55 57 59 61 63 65 67 69 71 73Used by:75
Symbol 75 MovieClip {fl.controls.List}Uses:10 11 28 45 13 74Used by:76
Symbol 76 MovieClip {fl.controls.ComboBox}Uses:10 11 13 15 17 19 21 26 75
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:77Used by:296
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:79Used by:81
Symbol 81 MovieClipUses:80Used by:82
Symbol 82 MovieClipUses:81Used by:83
Symbol 83 MovieClipUses:82Used by:296
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:100
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:100
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:99
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:96
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:96
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:96
Symbol 96 MovieClipUses:91 93 95Used by:99
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:97Used by:99
Symbol 99 MovieClipUses:89 96 98Used by:100
Symbol 100 MovieClip {popcorn_fla.prelolodergddfhh_7}Uses:85 87 99Used by:296
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:296
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:109
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:109
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:109
Symbol 109 MovieClipUses:104 106 108Used by:117
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:116
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:116
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:116
Symbol 116 MovieClipUses:111 113 115Used by:117
Symbol 117 MovieClipUses:109 116Used by:296
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:118Used by:124
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:120Used by:124
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:124
Symbol 124 MovieClipUses:119 121 123Used by:269
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:125Used by:128
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:126 127Used by:133
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:129Used by:133
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClipUses:131Used by:133
Symbol 133 MovieClipUses:128 130 132Used by:269
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:269
Symbol 136 GraphicUsed by:141
Symbol 137 GraphicUsed by:138
Symbol 138 MovieClipUses:137Used by:141
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClipUses:139Used by:141
Symbol 141 MovieClipUses:136 138 140Used by:158
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:142Used by:158
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:144Used by:158
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClipUses:146Used by:158
Symbol 148 GraphicUsed by:149
Symbol 149 MovieClipUses:148Used by:158
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:150Used by:158
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClipUses:152Used by:158
Symbol 154 GraphicUsed by:155
Symbol 155 MovieClipUses:154Used by:158
Symbol 156 GraphicUsed by:157 179 485
Symbol 157 MovieClipUses:156Used by:158
Symbol 158 MovieClipUses:141 143 145 147 149 151 153 155 157Used by:269
Symbol 159 GraphicUsed by:160
Symbol 160 MovieClipUses:159Used by:269
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:161Used by:165
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClipUses:163Used by:165
Symbol 165 MovieClipUses:162 164Used by:168
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166Used by:168
Symbol 168 MovieClipUses:165 167Used by:191 235 242 251 256 261 267 268
Symbol 169 GraphicUsed by:186
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:186 232 239 248 253 258 264
Symbol 172 GraphicUsed by:186 232 239 248 253 258 264
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClipUses:173Used by:186 232 239 248 253 258 264
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:175Used by:186 232 239 248 253 258 264
Symbol 177 GraphicUsed by:178 314 607 735
Symbol 178 MovieClipUses:177Used by:180 181 230 231
Symbol 179 MovieClipUses:156Used by:180 181 230 231
Symbol 180 MovieClipUses:178 179Used by:186 239 248 253 258 264
Symbol 181 MovieClipUses:178 179Used by:186 239 248 253 258 264
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClipUses:182Used by:186 232 239 248 253 258 264
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:184Used by:186 232 239 248 253 258 264
Symbol 186 MovieClipUses:169 171 172 174 176 180 181 183 185Used by:187
Symbol 187 MovieClipUses:186Used by:188
Symbol 188 MovieClipUses:187Used by:191
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClipUses:189Used by:191 235 242 251 256 261 267 268
Symbol 191 MovieClipUses:168 188 190Used by:269
Symbol 192 GraphicUsed by:193
Symbol 193 MovieClipUses:192Used by:269
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:194Used by:269
Symbol 196 GraphicUsed by:197
Symbol 197 MovieClipUses:196Used by:262 269
Symbol 198 GraphicUsed by:209
Symbol 199 GraphicUsed by:202
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:200Used by:202
Symbol 202 MovieClipUses:199 201Used by:209
Symbol 203 GraphicUsed by:204
Symbol 204 MovieClipUses:203Used by:209
Symbol 205 GraphicUsed by:206
Symbol 206 MovieClipUses:205Used by:209
Symbol 207 GraphicUsed by:208
Symbol 208 MovieClipUses:207Used by:209
Symbol 209 MovieClipUses:198 202 204 206 208Used by:269
Symbol 210 GraphicUsed by:213
Symbol 211 GraphicUsed by:212
Symbol 212 MovieClipUses:211Used by:213
Symbol 213 MovieClipUses:210 212Used by:269
Symbol 214 GraphicUsed by:223
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:215Used by:223 237 244 246
Symbol 217 GraphicUsed by:220
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClipUses:218Used by:220
Symbol 220 MovieClipUses:217 219Used by:223 237 244 246
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:221Used by:223 237 244 246
Symbol 223 MovieClipUses:214 216 220 222Used by:269
Symbol 224 GraphicUsed by:227
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClipUses:225Used by:227
Symbol 227 MovieClipUses:224 226Used by:269
Symbol 228 GraphicUsed by:232
Symbol 229 GraphicUsed by:230
Symbol 230 MovieClipUses:229 178 179Used by:232
Symbol 231 MovieClipUses:178 179Used by:232
Symbol 232 MovieClipUses:228 171 172 174 176 230 231 183 185Used by:233
Symbol 233 MovieClipUses:232Used by:234
Symbol 234 MovieClipUses:233Used by:235
Symbol 235 MovieClipUses:168 234 190Used by:269
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:236 216 220 222Used by:269
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:238 171 172 174 176 180 181 183 185Used by:240
Symbol 240 MovieClipUses:239Used by:241
Symbol 241 MovieClipUses:240Used by:242
Symbol 242 MovieClipUses:168 241 190Used by:269
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:243 216 220 222Used by:269
Symbol 245 GraphicUsed by:246
Symbol 246 MovieClipUses:245 216 220 222Used by:269
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClipUses:247 171 172 174 176 180 181 183 185Used by:249
Symbol 249 MovieClipUses:248Used by:250
Symbol 250 MovieClipUses:249Used by:251 268
Symbol 251 MovieClipUses:168 250 190Used by:269
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClipUses:252 171 172 174 176 180 181 183 185Used by:254
Symbol 254 MovieClipUses:253Used by:255
Symbol 255 MovieClipUses:254Used by:256
Symbol 256 MovieClipUses:168 255 190Used by:269
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClipUses:257 171 172 174 176 180 181 183 185Used by:259
Symbol 259 MovieClipUses:258Used by:260
Symbol 260 MovieClipUses:259Used by:261
Symbol 261 MovieClipUses:168 260 190Used by:269
Symbol 262 MovieClipUses:197Used by:269
Symbol 263 GraphicUsed by:264
Symbol 264 MovieClipUses:263 171 172 174 176 180 181 183 185Used by:265
Symbol 265 MovieClipUses:264Used by:266
Symbol 266 MovieClipUses:265Used by:267
Symbol 267 MovieClipUses:168 266 190Used by:269
Symbol 268 MovieClipUses:168 250 190Used by:269
Symbol 269 MovieClip {popcorn_fla.preloSymbol7copy3_27}Uses:124 133 135 158 160 191 193 195 197 209 213 223 227 235 237 242 244 246 251 256 261 262 267 268Used by:296
Symbol 270 GraphicUsed by:271
Symbol 271 MovieClip {popcorn_fla.logo_119}Uses:270Used by:296
Symbol 272 GraphicUsed by:279
Symbol 273 GraphicUsed by:274
Symbol 274 MovieClipUses:273Used by:279 290 293
Symbol 275 GraphicUsed by:276
Symbol 276 MovieClipUses:275Used by:279 290 293
Symbol 277 FontUsed by:278 281 292
Symbol 278 EditableTextUses:277Used by:279
Symbol 279 MovieClip {popcorn_fla.prelo_121}Uses:272 274 276 278Used by:294
Symbol 280 GraphicUsed by:290
Symbol 281 EditableTextUses:277Used by:290
Symbol 282 GraphicUsed by:283
Symbol 283 MovieClipUses:282Used by:290 293
Symbol 284 GraphicUsed by:285
Symbol 285 MovieClipUses:284Used by:290 293
Symbol 286 GraphicUsed by:287
Symbol 287 MovieClipUses:286Used by:290 293
Symbol 288 GraphicUsed by:289
Symbol 289 MovieClipUses:288Used by:290 293
Symbol 290 MovieClip {popcorn_fla.prelo_124}Uses:280 274 281 276 283 285 287 289Used by:294
Symbol 291 GraphicUsed by:293
Symbol 292 EditableTextUses:277Used by:293
Symbol 293 MovieClip {popcorn_fla.prelo_129}Uses:291 274 283 285 287 292 276 289Used by:294
Symbol 294 MovieClip {popcorn_fla.prelocooker_120}Uses:279 290 293Used by:296
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClip {popcorn_fla.preloSymbol74_1}Uses:78 83 100 102 117 269 271 294 295Used by:Timeline
Symbol 297 GraphicUsed by:Timeline
Symbol 298 MovieClipUsed by:301
Symbol 299 GraphicUsed by:300
Symbol 300 MovieClipUses:299Used by:301
Symbol 301 MovieClipUses:298 300Used by:304
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:302Used by:304 379 1016 1041 1059  Timeline
Symbol 304 MovieClipUses:301 303Used by:Timeline
Symbol 305 GraphicUsed by:306
Symbol 306 MovieClipUses:305Used by:307 1025
Symbol 307 MovieClipUses:306Used by:Timeline
Symbol 308 GraphicUsed by:309
Symbol 309 MovieClipUses:308Used by:Timeline
Symbol 310 GraphicUsed by:327
Symbol 311 GraphicUsed by:312 733
Symbol 312 MovieClipUses:311Used by:327 620
Symbol 313 GraphicUsed by:316
Symbol 314 MovieClipUses:177Used by:316
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:313 314 315Used by:327
Symbol 317 GraphicUsed by:318
Symbol 318 MovieClipUses:317Used by:327 620
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319Used by:326
Symbol 321 GraphicUsed by:325 650 728 788 890
Symbol 322 FontUsed by:323 324 342 347 374 375 378 1011 1012 1015 1017 1018 1019 1021 1023 1024 1026 1027 1028 1029 1030 1032 1034 1037 1038 1039 1042 1043 1044 1050 1057 1060 1061 1062
Symbol 323 TextUses:322Used by:325 650 728 788 890
Symbol 324 TextUses:322Used by:325 650 728 788 890
Symbol 325 MovieClipUses:321 323 324Used by:326 515 569 632 648 710 715 717 876 883 887
Symbol 326 MovieClipUses:320 325Used by:327 372
Symbol 327 MovieClipUses:310 312 316 318 326Used by:332
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:328Used by:332 602
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:330Used by:332 620
Symbol 332 MovieClipUses:327 329 331Used by:336
Symbol 333 BitmapUsed by:334
Symbol 334 GraphicUses:333Used by:335
Symbol 335 MovieClipUses:334Used by:336  Timeline
Symbol 336 MovieClipUses:332 335Used by:Timeline
Symbol 337 GraphicUsed by:341 346 351
Symbol 338 GraphicUsed by:339 346 351
Symbol 339 MovieClipUses:338Used by:341
Symbol 340 GraphicUsed by:341 346 351
Symbol 341 MovieClipUses:337 339 340Used by:343 348
Symbol 342 TextUses:322Used by:343 346
Symbol 343 MovieClipUses:341 342Used by:346
Symbol 344 GraphicUsed by:345 346
Symbol 345 MovieClipUses:344Used by:346
Symbol 346 ButtonUses:343 345 337 338 340 342 344Used by:Timeline
Symbol 347 TextUses:322Used by:348 351
Symbol 348 MovieClipUses:341 347Used by:351
Symbol 349 GraphicUsed by:350 351
Symbol 350 MovieClipUses:349Used by:351
Symbol 351 ButtonUses:348 350 337 338 340 347 349Used by:Timeline
Symbol 352 GraphicUsed by:353
Symbol 353 MovieClipUses:352Used by:367 585
Symbol 354 GraphicUsed by:355
Symbol 355 MovieClipUses:354Used by:367 585
Symbol 356 GraphicUsed by:357
Symbol 357 MovieClipUses:356Used by:362 675 710
Symbol 358 GraphicUsed by:359 807 907
Symbol 359 MovieClipUses:358Used by:362 675 710
Symbol 360 GraphicUsed by:361 806 906
Symbol 361 MovieClipUses:360Used by:362 675 710
Symbol 362 MovieClipUses:357 359 361Used by:367
Symbol 363 GraphicUsed by:364
Symbol 364 MovieClipUses:363Used by:367 585
Symbol 365 GraphicUsed by:367
Symbol 366 MovieClipUsed by:367 550 585
Symbol 367 MovieClipUses:353 355 362 364 365 366Used by:368 575
Symbol 368 MovieClipUses:367Used by:369
Symbol 369 MovieClipUses:368Used by:373  Timeline
Symbol 370 GraphicUsed by:371
Symbol 371 MovieClipUses:370Used by:379 1016 1041 1059
Symbol 372 MovieClipUses:326Used by:373
Symbol 373 MovieClipUses:372 369Used by:379 1016 1041 1059
Symbol 374 TextUses:322Used by:377
Symbol 375 TextUses:322Used by:377
Symbol 376 GraphicUsed by:377
Symbol 377 ButtonUses:374 375 376Used by:379
Symbol 378 TextUses:322Used by:379
Symbol 379 MovieClip {popcorn_fla.BKU8copy3_170}Uses:371 303 373 377 378Used by:Timeline
Symbol 380 FontUsed by:381 985 986 987 988
Symbol 381 TextUses:380Used by:Timeline
Symbol 382 GraphicUsed by:Timeline
Symbol 383 GraphicUsed by:384
Symbol 384 MovieClipUses:383Used by:399
Symbol 385 GraphicUsed by:388 393 396
Symbol 386 GraphicUsed by:387
Symbol 387 MovieClipUses:386Used by:388 393 396
Symbol 388 MovieClipUses:385 387Used by:389
Symbol 389 MovieClipUses:388Used by:390
Symbol 390 MovieClipUses:389Used by:398
Symbol 391 GraphicUsed by:392
Symbol 392 MovieClipUses:391Used by:393
Symbol 393 MovieClipUses:385 387 392Used by:394
Symbol 394 MovieClipUses:393Used by:395 398
Symbol 395 MovieClipUses:394Used by:398
Symbol 396 MovieClipUses:385 387Used by:397
Symbol 397 MovieClipUses:396Used by:398
Symbol 398 MovieClipUses:390 395 394 397Used by:399
Symbol 399 MovieClipUses:384 398Used by:1025
Symbol 400 GraphicUsed by:418
Symbol 401 BitmapUsed by:402 407
Symbol 402 GraphicUses:401Used by:403
Symbol 403 MovieClipUses:402Used by:406
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:404Used by:406
Symbol 406 MovieClipUses:403 405Used by:418
Symbol 407 GraphicUses:401Used by:408
Symbol 408 MovieClipUses:407Used by:411
Symbol 409 GraphicUsed by:410
Symbol 410 MovieClipUses:409Used by:411
Symbol 411 MovieClipUses:408 410Used by:418
Symbol 412 GraphicUsed by:413
Symbol 413 MovieClipUses:412Used by:414 415
Symbol 414 MovieClipUses:413Used by:418
Symbol 415 MovieClipUses:413Used by:418
Symbol 416 GraphicUsed by:417
Symbol 417 MovieClipUses:416Used by:418
Symbol 418 MovieClipUses:400 406 411 414 415 417Used by:1025
Symbol 419 GraphicUsed by:430
Symbol 420 GraphicUsed by:421
Symbol 421 MovieClipUses:420Used by:430
Symbol 422 GraphicUsed by:430
Symbol 423 GraphicUsed by:430
Symbol 424 GraphicUsed by:430
Symbol 425 GraphicUsed by:430
Symbol 426 GraphicUsed by:430
Symbol 427 GraphicUsed by:430
Symbol 428 GraphicUsed by:430
Symbol 429 GraphicUsed by:430
Symbol 430 MovieClipUses:419 421 422 423 424 425 426 427 428 429Used by:431
Symbol 431 MovieClipUses:430Used by:1025
Symbol 432 GraphicUsed by:445
Symbol 433 GraphicUsed by:434
Symbol 434 MovieClipUses:433Used by:445
Symbol 435 GraphicUsed by:436
Symbol 436 MovieClipUses:435Used by:445
Symbol 437 GraphicUsed by:438
Symbol 438 MovieClipUses:437Used by:445
Symbol 439 GraphicUsed by:440
Symbol 440 MovieClipUses:439Used by:445
Symbol 441 GraphicUsed by:442
Symbol 442 MovieClipUses:441Used by:445
Symbol 443 GraphicUsed by:444
Symbol 444 MovieClipUses:443Used by:445
Symbol 445 MovieClipUses:432 434 436 438 440 442 444Used by:446
Symbol 446 MovieClipUses:445Used by:1025
Symbol 447 GraphicUsed by:452
Symbol 448 GraphicUsed by:452
Symbol 449 GraphicUsed by:452
Symbol 450 GraphicUsed by:452
Symbol 451 GraphicUsed by:452
Symbol 452 MovieClipUses:447 448 449 450 451Used by:453
Symbol 453 MovieClipUses:452Used by:1025
Symbol 454 GraphicUsed by:1025
Symbol 455 GraphicUsed by:456
Symbol 456 MovieClipUses:455Used by:1025
Symbol 457 GraphicUsed by:459
Symbol 458 GraphicUsed by:459
Symbol 459 MovieClip {popcorn_fla.OKL_214}Uses:457 458Used by:1025
Symbol 460 GraphicUsed by:463
Symbol 461 GraphicUsed by:462
Symbol 462 MovieClipUses:461Used by:463 503
Symbol 463 MovieClipUses:460 462Used by:466
Symbol 464 GraphicUsed by:465
Symbol 465 MovieClipUses:464Used by:466
Symbol 466 MovieClipUses:463 465Used by:1025
Symbol 467 GraphicUsed by:472
Symbol 468 GraphicUsed by:469
Symbol 469 MovieClipUses:468Used by:472
Symbol 470 GraphicUsed by:471
Symbol 471 MovieClipUses:470Used by:472
Symbol 472 MovieClip {popcorn_fla.L_219}Uses:467 469 471Used by:1025
Symbol 473 GraphicUsed by:474
Symbol 474 MovieClipUses:473Used by:482
Symbol 475 GraphicUsed by:482
Symbol 476 GraphicUsed by:477
Symbol 477 MovieClipUses:476Used by:479
Symbol 478 GraphicUsed by:479
Symbol 479 MovieClipUses:477 478Used by:482
Symbol 480 GraphicUsed by:481
Symbol 481 MovieClipUses:480Used by:482
Symbol 482 MovieClipUses:474 475 479 481Used by:491
Symbol 483 GraphicUsed by:491
Symbol 484 GraphicUsed by:486 487
Symbol 485 MovieClipUses:156Used by:487 490
Symbol 486 MovieClipUses:484Used by:487
Symbol 487 MovieClip {popcorn_fla.K_228}Uses:484 485 486Used by:491
Symbol 488 GraphicUsed by:489 490
Symbol 489 MovieClipUses:488Used by:490
Symbol 490 MovieClip {popcorn_fla.K_231}Uses:488 485 489Used by:491
Symbol 491 MovieClip {popcorn_fla.Timeline_222}Uses:482 483 487 490Used by:1025
Symbol 492 GraphicUsed by:498 688 692 695 710 715 717 847 861 879 899 901
Symbol 493 GraphicUsed by:498 688 692 710 715 717 847 861 901
Symbol 494 GraphicUsed by:498 688 692 710 715 717 847 901
Symbol 495 GraphicUsed by:498 688 692 695 710 715 717 847 861 880 899 901
Symbol 496 GraphicUsed by:498 695 710 715 717 899
Symbol 497 GraphicUsed by:498 695 710 717 899
Symbol 498 MovieClipUses:492 493 494 495 496 497Used by:1025
Symbol 499 GraphicUsed by:500
Symbol 500 MovieClipUses:499Used by:1025
Symbol 501 GraphicUsed by:502
Symbol 502 MovieClipUses:501Used by:503
Symbol 503 MovieClipUses:462 502Used by:1025
Symbol 504 GraphicUsed by:515 569
Symbol 505 GraphicUsed by:515 569
Symbol 506 GraphicUsed by:515
Symbol 507 GraphicUsed by:515
Symbol 508 GraphicUsed by:515
Symbol 509 GraphicUsed by:515
Symbol 510 GraphicUsed by:515
Symbol 511 GraphicUsed by:515
Symbol 512 GraphicUsed by:515
Symbol 513 GraphicUsed by:515
Symbol 514 GraphicUsed by:515
Symbol 515 MovieClip {popcorn_fla.olj_237}Uses:504 505 506 325 507 508 509 510 511 512 513 514Used by:1025
Symbol 516 GraphicUsed by:517 551
Symbol 517 MovieClip {popcorn_fla.KHJKHLcopy2_239}Uses:516Used by:550
Symbol 518 GraphicUsed by:519
Symbol 519 MovieClipUses:518Used by:550
Symbol 520 GraphicUsed by:537 554
Symbol 521 GraphicUsed by:537 554
Symbol 522 GraphicUsed by:537 554
Symbol 523 GraphicUsed by:537 554
Symbol 524 GraphicUsed by:537 554
Symbol 525 GraphicUsed by:537 554
Symbol 526 GraphicUsed by:537 554
Symbol 527 GraphicUsed by:537 554
Symbol 528 GraphicUsed by:537 554
Symbol 529 GraphicUsed by:537 554
Symbol 530 GraphicUsed by:537 554
Symbol 531 GraphicUsed by:537 554
Symbol 532 GraphicUsed by:537 554
Symbol 533 GraphicUsed by:537 554
Symbol 534 GraphicUsed by:537 554
Symbol 535 GraphicUsed by:537 554
Symbol 536 GraphicUsed by:537 554
Symbol 537 MovieClipUses:520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536Used by:550
Symbol 538 GraphicUsed by:539
Symbol 539 MovieClipUses:538Used by:550 559
Symbol 540 GraphicUsed by:541
Symbol 541 MovieClipUses:540Used by:550 559
Symbol 542 GraphicUsed by:543
Symbol 543 MovieClipUses:542Used by:544 555
Symbol 544 MovieClip {popcorn_fla.cvxxxcbxcvcopyz_244}Uses:543Used by:550
Symbol 545 GraphicUsed by:546
Symbol 546 MovieClipUses:545Used by:549
Symbol 547 GraphicUsed by:548
Symbol 548 MovieClipUses:547Used by:549 558
Symbol 549 MovieClipUses:546 548Used by:550
Symbol 550 MovieClip {popcorn_fla.OLJK_238}Uses:517 519 366 537 539 541 544 549Used by:1025
Symbol 551 MovieClip {popcorn_fla.KHJKHLcopy3_250}Uses:516Used by:559
Symbol 552 GraphicUsed by:553
Symbol 553 MovieClipUses:552Used by:559
Symbol 554 MovieClipUses:520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536Used by:559
Symbol 555 MovieClip {popcorn_fla.cvxxxcbxcvcopy_253}Uses:543Used by:559
Symbol 556 GraphicUsed by:557
Symbol 557 MovieClipUses:556Used by:558
Symbol 558 MovieClipUses:557 548Used by:559
Symbol 559 MovieClip {popcorn_fla.OLJK_249}Uses:551 553 554 539 555 541 558Used by:1025
Symbol 560 GraphicUsed by:569
Symbol 561 GraphicUsed by:569
Symbol 562 GraphicUsed by:569
Symbol 563 GraphicUsed by:569
Symbol 564 GraphicUsed by:569
Symbol 565 GraphicUsed by:569
Symbol 566 GraphicUsed by:569
Symbol 567 GraphicUsed by:569
Symbol 568 GraphicUsed by:569
Symbol 569 MovieClip {popcorn_fla.olj_256}Uses:504 505 560 325 561 562 563 564 565 566 567 568Used by:1025
Symbol 570 GraphicUsed by:571 576
Symbol 571 MovieClip {popcorn_fla.HKLJcopy_258}Uses:570Used by:575
Symbol 572 GraphicUsed by:573
Symbol 573 MovieClipUses:572Used by:574 586
Symbol 574 MovieClip {popcorn_fla.cvxcbxcvcopy_259}Uses:573Used by:575
Symbol 575 MovieClip {popcorn_fla.gfhmcopy4_257}Uses:571 367 574Used by:1025
Symbol 576 MovieClip {popcorn_fla.HKLJ_262}Uses:570Used by:587
Symbol 577 GraphicUsed by:578
Symbol 578 MovieClipUses:577Used by:583
Symbol 579 GraphicUsed by:580
Symbol 580 MovieClipUses:579Used by:583
Symbol 581 GraphicUsed by:582
Symbol 582 MovieClipUses:581Used by:583
Symbol 583 MovieClipUses:578 580 582Used by:585
Symbol 584 GraphicUsed by:585
Symbol 585 MovieClip {popcorn_fla.OLJK_263}Uses:353 355 583 364 584 366Used by:587
Symbol 586 MovieClip {popcorn_fla.cvxcbxcv_268}Uses:573Used by:587
Symbol 587 MovieClip {popcorn_fla.gfhmcopy3_261}Uses:576 585 586Used by:1025
Symbol 588 GraphicUsed by:589
Symbol 589 MovieClipUses:588Used by:1025
Symbol 590 GraphicUsed by:621 712
Symbol 591 GraphicUsed by:621 632 663 675 687 688 712
Symbol 592 GraphicUsed by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718 771 786 801 815 834 847 861
Symbol 593 GraphicUsed by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718
Symbol 594 GraphicUsed by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718
Symbol 595 GraphicUsed by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718
Symbol 596 GraphicUsed by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718
Symbol 597 GraphicUsed by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718 771 786 801 815 834 847 861
Symbol 598 GraphicUsed by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718
Symbol 599 GraphicUsed by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718 771 786 801 815 834 847 861
Symbol 600 GraphicUsed by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718
Symbol 601 GraphicUsed by:602 725
Symbol 602 MovieClipUses:601 329Used by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718
Symbol 603 GraphicUsed by:620
Symbol 604 GraphicUsed by:620
Symbol 605 GraphicUsed by:619 743 771 786 801 815 834 847 861
Symbol 606 GraphicUsed by:619
Symbol 607 MovieClipUses:177Used by:619
Symbol 608 GraphicUsed by:619 743 771 786 801 815 834 847 861
Symbol 609 GraphicUsed by:619 743 771 786 801 815 834 847 861
Symbol 610 GraphicUsed by:619
Symbol 611 GraphicUsed by:619 743 771 786 801 815 834 847 861
Symbol 612 GraphicUsed by:619 743 771 786 801 815 834 847 861
Symbol 613 GraphicUsed by:619
Symbol 614 GraphicUsed by:619
Symbol 615 GraphicUsed by:619
Symbol 616 GraphicUsed by:619
Symbol 617 GraphicUsed by:619
Symbol 618 GraphicUsed by:619
Symbol 619 MovieClipUses:605 606 607 608 609 610 611 612 613 614 615 616 617 618Used by:620 628
Symbol 620 MovieClipUses:603 331 604 312 318 619Used by:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718
Symbol 621 MovieClipUses:590 591 592 593 594 595 596 597 598 599 600 602 620Used by:862
Symbol 622 GraphicUsed by:632 663 688
Symbol 623 GraphicUsed by:632 663 675 687 688
Symbol 624 GraphicUsed by:632 648 887
Symbol 625 GraphicUsed by:628
Symbol 626 GraphicUsed by:627
Symbol 627 MovieClipUses:626Used by:628
Symbol 628 MovieClipUses:625 627 619Used by:632 648 659 663 688 692 695 703 704 705 711 718
Symbol 629 GraphicUsed by:632 663 675 687 688 711 718
Symbol 630 GraphicUsed by:632 648 659 692 695 703 704 705
Symbol 631 GraphicUsed by:632 648 659 692 695
Symbol 632 MovieClip {popcorn_fla.BOYAXcopX_276}Uses:591 593 594 596 597 592 600 602 599 598 595 620 622 623 624 325 628 629 630 631Used by:862
Symbol 633 GraphicUsed by:636
Symbol 634 GraphicUsed by:635
Symbol 635 MovieClipUses:634Used by:636
Symbol 636 MovieClipUses:633 635Used by:648 659 692 695 703 704 705
Symbol 637 GraphicUsed by:648 659 692 695
Symbol 638 GraphicUsed by:648 659 692 695
Symbol 639 GraphicUsed by:648 659 692 695 711 718
Symbol 640 GraphicUsed by:648 887
Symbol 641 GraphicUsed by:648 887
Symbol 642 GraphicUsed by:648 887
Symbol 643 GraphicUsed by:648 887
Symbol 644 GraphicUsed by:648 887
Symbol 645 GraphicUsed by:648 887
Symbol 646 GraphicUsed by:648 887
Symbol 647 GraphicUsed by:648 887
Symbol 648 MovieClip {popcorn_fla.BOYAXcXcopyZ_279}Uses:630 594 596 597 600 602 631 592 624 325 599 598 620 636 628 637 638 639 640 641 642 643 644 645 646 647 593 595Used by:862
Symbol 649 GraphicUsed by:659
Symbol 650 MovieClipUses:321 323 324Used by:659
Symbol 651 GraphicUsed by:659
Symbol 652 GraphicUsed by:659 801
Symbol 653 GraphicUsed by:659
Symbol 654 GraphicUsed by:659
Symbol 655 GraphicUsed by:659
Symbol 656 GraphicUsed by:659
Symbol 657 GraphicUsed by:659
Symbol 658 GraphicUsed by:659
Symbol 659 MovieClip {popcorn_fla.BOYAXcX_282}Uses:630 594 596 597 600 602 631 592 649 650 599 598 620 636 628 637 638 639 651 652 653 654 655 656 657 658 593 595Used by:862
Symbol 660 GraphicUsed by:661 816
Symbol 661 MovieClipUses:660Used by:663 675 687 710 715 717 885
Symbol 662 GraphicUsed by:663 675 687 710 715 717 815 834 908 914
Symbol 663 MovieClip {popcorn_fla.BOYAXcopXZZZFGFGcZXZXcopyCV_284}Uses:591 593 594 596 597 622 600 602 599 623 661 662 595 628 629 592 598 620Used by:862
Symbol 664 GraphicUsed by:667
Symbol 665 GraphicUsed by:666
Symbol 666 MovieClipUses:665Used by:667
Symbol 667 MovieClipUses:664 666Used by:675 687
Symbol 668 GraphicUsed by:671
Symbol 669 GraphicUsed by:670
Symbol 670 MovieClipUses:669Used by:671
Symbol 671 MovieClipUses:668 670Used by:675 687
Symbol 672 GraphicUsed by:675 687
Symbol 673 GraphicUsed by:675 687
Symbol 674 GraphicUsed by:675 687 711 718
Symbol 675 MovieClip {popcorn_fla.BOYAXcopXZZZFGFGcC_286}Uses:591 594 593 596 597 592 600 602 599 661 662 598 595 620 667 671 672 623 673 357 361 359 674 629Used by:862
Symbol 676 GraphicUsed by:677
Symbol 677 MovieClipUses:676Used by:687
Symbol 678 GraphicUsed by:679 684 819 912
Symbol 679 MovieClipUses:678Used by:687
Symbol 680 GraphicUsed by:681
Symbol 681 MovieClipUses:680Used by:687
Symbol 682 GraphicUsed by:683
Symbol 683 MovieClipUses:682Used by:687 710 715 717
Symbol 684 MovieClipUses:678Used by:687 710 715 717
Symbol 685 GraphicUsed by:686 820 913
Symbol 686 MovieClipUses:685Used by:687 710 715 717
Symbol 687 MovieClip {popcorn_fla.BOYAXcopXZZZz_291}Uses:591 594 593 596 597 592 600 602 599 661 662 598 595 620 667 671 672 623 673 677 679 681 674 683 684 686 629Used by:862
Symbol 688 MovieClip {popcorn_fla.BOYAXcopXZZZFGFGcZXZc_298}Uses:591 593 594 596 597 622 600 602 599 623 492 493 494 495 595 628 629 592 598 620Used by:862
Symbol 689 GraphicUsed by:692 695
Symbol 690 GraphicUsed by:692
Symbol 691 GraphicUsed by:692
Symbol 692 MovieClip {popcorn_fla.BOYAXcXcopzy_299}Uses:630 594 597 596 600 602 631 592 599 492 493 494 495 598 620 636 628 637 638 639 689 690 691 593 595Used by:862
Symbol 693 GraphicUsed by:695
Symbol 694 GraphicUsed by:695
Symbol 695 MovieClip {popcorn_fla.BOYAXcXcz_300}Uses:630 594 597 596 600 602 631 592 599 492 496 497 495 598 620 636 628 637 638 639 689 693 694 593 595Used by:862
Symbol 696 GraphicUsed by:703 704 705
Symbol 697 GraphicUsed by:698 916
Symbol 698 MovieClipUses:697Used by:702 710 715 717 772 870 871
Symbol 699 GraphicUsed by:700
Symbol 700 MovieClipUses:699Used by:702 710 715 717 772 870 871
Symbol 701 GraphicUsed by:702 710 715 717 870 871
Symbol 702 MovieClip {popcorn_fla.LHLJLJLcopy_302}Uses:698 700 701Used by:703 704 705 1025
Symbol 703 MovieClip {popcorn_fla.zzxzx_301}Uses:593 594 596 597 600 602 595 592 599 620 598 630 636 696 628 702Used by:862
Symbol 704 MovieClip {popcorn_fla.zzxzxcx_305}Uses:593 594 596 597 600 602 595 592 599 620 598 630 636 696 628 702Used by:862
Symbol 705 MovieClip {popcorn_fla.zzxzxczx_306}Uses:593 594 596 597 600 602 595 592 599 620 598 630 636 696 628 702Used by:862
Symbol 706 GraphicUsed by:710
Symbol 707 GraphicUsed by:710
Symbol 708 GraphicUsed by:709
Symbol 709 MovieClipUses:708Used by:710
Symbol 710 MovieClip {popcorn_fla.vb_308}Uses:706 325 707 709 492 496 497 495 493 494 661 662 357 361 359 683 684 686 698 700 701Used by:711 718 942
Symbol 711 MovieClip {popcorn_fla.zzxzz_307}Uses:592 596 598 597 600 602 599 629 628 593 710 595 639 674 594 620Used by:862
Symbol 712 MovieClip {popcorn_fla.BOYAcc_310}Uses:590 591 592 593 594 595 596 597 600 602 620 598 599Used by:862
Symbol 713 GraphicUsed by:715
Symbol 714 GraphicUsed by:715
Symbol 715 MovieClip {popcorn_fla.vbcopy1_312}Uses:713 325 714 492 496 495 493 494 661 662 683 684 686 698 700 701Used by:718
Symbol 716 GraphicUsed by:717
Symbol 717 MovieClip {popcorn_fla.vbcopy2_313}Uses:716 325 492 496 497 495 493 494 661 662 683 684 686 698 700 701Used by:718
Symbol 718 MovieClip {popcorn_fla.zzxzzcopy_311}Uses:592 596 598 597 600 602 599 629 628 593 715 595 639 674 594 620 717 710Used by:862
Symbol 719 GraphicUsed by:771 786 801 815 834 847 861
Symbol 720 GraphicUsed by:771 786 801 815 834 847 861
Symbol 721 GraphicUsed by:771 786 801 815 834 847 861
Symbol 722 GraphicUsed by:771 786 801 815 834 847 861
Symbol 723 GraphicUsed by:724
Symbol 724 MovieClipUses:723Used by:725
Symbol 725 MovieClipUses:601 724Used by:771 786 801 815 834 847 861
Symbol 726 GraphicUsed by:771 786 801 815 834 847 861
Symbol 727 GraphicUsed by:771
Symbol 728 MovieClipUses:321 323 324Used by:771
Symbol 729 GraphicUsed by:771 786 801 815 834 847 861
Symbol 730 GraphicUsed by:771 786 801 815 834 847 861
Symbol 731 GraphicUsed by:732
Symbol 732 MovieClipUses:731Used by:771 786 801 815 834 847 861
Symbol 733 MovieClipUses:311Used by:771 786 801 815 834 847 861
Symbol 734 GraphicUsed by:743 771 786 801 815 834 847 861
Symbol 735 MovieClipUses:177Used by:743 771 786 801 815 834 847 861
Symbol 736 GraphicUsed by:743
Symbol 737 GraphicUsed by:743 771 786 801 815 834 847 861
Symbol 738 GraphicUsed by:743 771 786 801 815 834 847 861
Symbol 739 GraphicUsed by:743
Symbol 740 GraphicUsed by:743
Symbol 741 GraphicUsed by:743
Symbol 742 GraphicUsed by:743
Symbol 743 MovieClipUses:605 734 735 608 609 736 611 612 737 738 739 740 741 742Used by:771 786 801 815 834 847 861
Symbol 744 GraphicUsed by:771 786 801 815 834 847 861
Symbol 745 GraphicUsed by:771
Symbol 746 GraphicUsed by:771
Symbol 747 GraphicUsed by:771
Symbol 748 GraphicUsed by:771
Symbol 749 GraphicUsed by:750
Symbol 750 MovieClipUses:749Used by:771
Symbol 751 GraphicUsed by:752
Symbol 752 MovieClipUses:751Used by:771
Symbol 753 GraphicUsed by:771
Symbol 754 GraphicUsed by:771
Symbol 755 GraphicUsed by:771
Symbol 756 GraphicUsed by:771
Symbol 757 GraphicUsed by:771
Symbol 758 GraphicUsed by:771
Symbol 759 GraphicUsed by:771
Symbol 760 GraphicUsed by:771
Symbol 761 GraphicUsed by:771
Symbol 762 GraphicUsed by:771
Symbol 763 GraphicUsed by:771
Symbol 764 GraphicUsed by:771
Symbol 765 GraphicUsed by:771
Symbol 766 GraphicUsed by:771
Symbol 767 GraphicUsed by:771
Symbol 768 GraphicUsed by:771
Symbol 769 GraphicUsed by:771
Symbol 770 GraphicUsed by:771
Symbol 771 MovieClip {popcorn_fla.xvxcc1_314}Uses:719 720 721 597 722 725 726 592 727 728 599 729 730 732 733 743 744 745 746 747 605 734 735 608 609 737 611 612 748 750 752 753 754 755 756 757 738 758 759 760 761 762 763 764 765 766 767 768 769 770Used by:862
Symbol 772 MovieClipUses:698 700Used by:786
Symbol 773 GraphicUsed by:786 801 815 834
Symbol 774 GraphicUsed by:786 801 815 834 847 861
Symbol 775 GraphicUsed by:776
Symbol 776 MovieClipUses:775Used by:786 801 815 834 847 861
Symbol 777 GraphicUsed by:786 801 815 834 847 861
Symbol 778 GraphicUsed by:786 801 815 834 847 861
Symbol 779 GraphicUsed by:786 801 815 834 847 861
Symbol 780 GraphicUsed by:786 801 815 834 847 861
Symbol 781 GraphicUsed by:782
Symbol 782 MovieClipUses:781Used by:786 801 815 834 847 861
Symbol 783 GraphicUsed by:786 801 815 834 847 861
Symbol 784 GraphicUsed by:786 801 815 834 847 861
Symbol 785 GraphicUsed by:786 801 815 834 847 861
Symbol 786 MovieClip {popcorn_fla.xvxcc1cozxczxccopzxczxcy_324}Uses:720 721 597 722 725 719 592 599 730 732 733 743 744 726 772 729 773 774 605 734 735 608 609 737 611 612 776 777 778 738 779 780 782 783 784 785Used by:862
Symbol 787 GraphicUsed by:801
Symbol 788 MovieClipUses:321 323 324Used by:801
Symbol 789 GraphicUsed by:801
Symbol 790 GraphicUsed by:801
Symbol 791 GraphicUsed by:801
Symbol 792 GraphicUsed by:801
Symbol 793 GraphicUsed by:801
Symbol 794 GraphicUsed by:801
Symbol 795 GraphicUsed by:801
Symbol 796 GraphicUsed by:801
Symbol 797 GraphicUsed by:801
Symbol 798 GraphicUsed by:801
Symbol 799 GraphicUsed by:801
Symbol 800 GraphicUsed by:801
Symbol 801 MovieClip {popcorn_fla.xvxcc1cozxczxccopz_328}Uses:720 721 597 722 725 719 592 599 730 732 733 743 744 726 787 652 788 729 773 789 790 774 605 734 735 608 609 737 611 612 776 777 791 778 738 779 792 793 794 795 796 797 798 799 800 780 782 783 784 785Used by:862
Symbol 802 GraphicUsed by:803 903
Symbol 803 MovieClipUses:802Used by:815
Symbol 804 GraphicUsed by:805
Symbol 805 MovieClipUses:804Used by:815
Symbol 806 MovieClipUses:360Used by:815
Symbol 807 MovieClipUses:358Used by:815
Symbol 808 GraphicUsed by:815
Symbol 809 GraphicUsed by:815
Symbol 810 GraphicUsed by:815
Symbol 811 GraphicUsed by:815
Symbol 812 GraphicUsed by:815
Symbol 813 GraphicUsed by:815
Symbol 814 GraphicUsed by:815
Symbol 815 MovieClip {popcorn_fla.xvxcc1cozxxzxzx_330}Uses:720 721 597 722 725 719 592 599 730 732 733 743 744 726 803 662 805 806 807 729 808 809 773 810 811 778 605 734 735 608 609 738 611 612 776 779 812 813 814 780 782 783 784 785 774 737 777Used by:862
Symbol 816 MovieClipUses:660Used by:834
Symbol 817 GraphicUsed by:818
Symbol 818 MovieClipUses:817Used by:834
Symbol 819 MovieClipUses:678Used by:834
Symbol 820 MovieClipUses:685Used by:834
Symbol 821 GraphicUsed by:834
Symbol 822 GraphicUsed by:823
Symbol 823 MovieClipUses:822Used by:834
Symbol 824 GraphicUsed by:825
Symbol 825 MovieClipUses:824Used by:834
Symbol 826 GraphicUsed by:827
Symbol 827 MovieClipUses:826Used by:834
Symbol 828 GraphicUsed by:834
Symbol 829 GraphicUsed by:834
Symbol 830 GraphicUsed by:834
Symbol 831 GraphicUsed by:834
Symbol 832 GraphicUsed by:834
Symbol 833 GraphicUsed by:834
Symbol 834 MovieClip {popcorn_fla.xvxcc1cozxxzfghfghfxc_335}Uses:720 721 597 722 725 719 592 599 730 732 733 743 744 726 816 662 818 819 820 729 821 823 825 827 828 773 829 830 778 605 734 735 608 609 738 611 612 776 779 831 832 833 780 782 783 784 785 774 737 777Used by:862
Symbol 835 ShapeTweeningUsed by:847
Symbol 836 ShapeTweeningUsed by:847
Symbol 837 ShapeTweeningUsed by:847
Symbol 838 ShapeTweeningUsed by:847
Symbol 839 ShapeTweeningUsed by:847
Symbol 840 GraphicUsed by:847
Symbol 841 GraphicUsed by:847
Symbol 842 ShapeTweeningUsed by:847
Symbol 843 ShapeTweeningUsed by:847
Symbol 844 ShapeTweeningUsed by:847
Symbol 845 GraphicUsed by:847
Symbol 846 GraphicUsed by:847
Symbol 847 MovieClip {popcorn_fla.xvxcc1cozxcxcxc_343}Uses:720 721 597 722 725 719 592 599 730 732 733 743 744 726 492 493 494 495 729 774 605 734 735 608 609 737 611 612 776 777 778 738 779 835 836 837 838 839 840 841 842 843 844 780 782 783 845 846 784 785Used by:862
Symbol 848 GraphicUsed by:861
Symbol 849 ShapeTweeningUsed by:861
Symbol 850 ShapeTweeningUsed by:861
Symbol 851 ShapeTweeningUsed by:861
Symbol 852 ShapeTweeningUsed by:861
Symbol 853 ShapeTweeningUsed by:861
Symbol 854 GraphicUsed by:861
Symbol 855 GraphicUsed by:861
Symbol 856 ShapeTweeningUsed by:861
Symbol 857 ShapeTweeningUsed by:861
Symbol 858 ShapeTweeningUsed by:861
Symbol 859 GraphicUsed by:861
Symbol 860 GraphicUsed by:861
Symbol 861 MovieClip {popcorn_fla.xvxcc1cozxcxcxxc_344}Uses:720 721 597 722 725 719 592 599 730 732 733 743 744 726 492 493 848 495 729 774 605 734 735 608 609 737 611 612 776 777 778 738 779 849 850 851 852 853 854 855 856 857 858 780 782 783 859 860 784 785Used by:862
Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270}Uses:621 632 648 659 663 675 687 688 692 695 703 704 705 711 712 718 771 786 801 815 834 847 861Used by:1025
Symbol 863 GraphicUsed by:864
Symbol 864 MovieClipUses:863Used by:867
Symbol 865 GraphicUsed by:866
Symbol 866 MovieClipUses:865Used by:867
Symbol 867 MovieClipUses:864 866Used by:1025
Symbol 868 GraphicUsed by:869
Symbol 869 MovieClipUses:868Used by:1025
Symbol 870 MovieClip {popcorn_fla.LHLJLJLcopy2_349}Uses:698 700 701Used by:1025
Symbol 871 MovieClip {popcorn_fla.LHLJLJLcopy3_350}Uses:698 700 701Used by:1025
Symbol 872 GraphicUsed by:873
Symbol 873 MovieClipUses:872Used by:1025
Symbol 874 GraphicUsed by:875
Symbol 875 MovieClipUses:874Used by:876 883
Symbol 876 MovieClipUses:875 325Used by:1025
Symbol 877 GraphicUsed by:878
Symbol 878 MovieClipUses:877Used by:880 885
Symbol 879 MovieClipUses:492Used by:880
Symbol 880 MovieClipUses:878 879 495Used by:1025
Symbol 881 GraphicUsed by:882
Symbol 882 MovieClipUses:881Used by:883
Symbol 883 MovieClipUses:882 875 325Used by:1025
Symbol 884 GraphicUsed by:885
Symbol 885 MovieClipUses:878 661 884Used by:1025
Symbol 886 GraphicUsed by:888 941
Symbol 887 MovieClipUses:624 325 640 641 642 643 644 645 646 647Used by:888
Symbol 888 MovieClipUses:886 887Used by:1025
Symbol 889 GraphicUsed by:892
Symbol 890 MovieClipUses:321 323 324Used by:892 897
Symbol 891 GraphicUsed by:892
Symbol 892 MovieClipUses:889 890 891Used by:893 943
Symbol 893 MovieClip {popcorn_fla.Scvbcvbcvb_362}Uses:892Used by:1025
Symbol 894 GraphicUsed by:897
Symbol 895 GraphicUsed by:896
Symbol 896 MovieClipUses:895Used by:897
Symbol 897 MovieClipUses:894 890 896Used by:898 943
Symbol 898 MovieClip {popcorn_fla.Scvbcx_365}Uses:897Used by:1025
Symbol 899 MovieClipUses:492 496 497 495Used by:900 943
Symbol 900 MovieClip {popcorn_fla.Scvbcghghgh_368}Uses:899Used by:1025
Symbol 901 MovieClipUses:492 493 494 495Used by:902 943
Symbol 902 MovieClip {popcorn_fla.Scvbcgh_370}Uses:901Used by:1025
Symbol 903 MovieClipUses:802Used by:908 914
Symbol 904 GraphicUsed by:905
Symbol 905 MovieClipUses:904Used by:908
Symbol 906 MovieClipUses:360Used by:908
Symbol 907 MovieClipUses:358Used by:908
Symbol 908 MovieClipUses:903 662 905 906 907Used by:909 943
Symbol 909 MovieClip {popcorn_fla.Scvbcghb_372}Uses:908Used by:1025
Symbol 910 GraphicUsed by:911
Symbol 911 MovieClipUses:910Used by:914
Symbol 912 MovieClipUses:678Used by:914
Symbol 913 MovieClipUses:685Used by:914
Symbol 914 MovieClipUses:903 662 911 912 913Used by:915 943
Symbol 915 MovieClip {popcorn_fla.Scvbcb_378}Uses:914Used by:1025
Symbol 916 MovieClipUses:697Used by:920
Symbol 917 GraphicUsed by:918
Symbol 918 MovieClipUses:917Used by:920
Symbol 919 GraphicUsed by:920
Symbol 920 MovieClipUses:916 918 919Used by:921 943
Symbol 921 MovieClip {popcorn_fla.Scvbcbcvb_383}Uses:920Used by:1025
Symbol 922 GraphicUsed by:923
Symbol 923 MovieClipUses:922Used by:932
Symbol 924 GraphicUsed by:927
Symbol 925 GraphicUsed by:926
Symbol 926 MovieClipUses:925Used by:927
Symbol 927 MovieClipUses:924 926Used by:932
Symbol 928 GraphicUsed by:931
Symbol 929 GraphicUsed by:930
Symbol 930 MovieClipUses:929Used by:931
Symbol 931 MovieClipUses:928 930Used by:932
Symbol 932 MovieClipUses:923 927 931Used by:973 974
Symbol 933 GraphicUsed by:937 938 939 940
Symbol 934 GraphicUsed by:937 938 939 940
Symbol 935 GraphicUsed by:937 938 939 940
Symbol 936 GraphicUsed by:937 938 939 940
Symbol 937 MovieClip {popcorn_fla.level12bar_394}Uses:933 934 935 936Used by:973
Symbol 938 MovieClip {popcorn_fla.level4bar_395}Uses:933 934 935 936Used by:973
Symbol 939 MovieClip {popcorn_fla.level5bar_396}Uses:933 934 935 936Used by:973
Symbol 940 MovieClip {popcorn_fla.level3bar_397}Uses:933 934 935 936Used by:973
Symbol 941 MovieClipUses:886Used by:942
Symbol 942 MovieClip {popcorn_fla.cvb_399}Uses:941 710Used by:943
Symbol 943 MovieClip {popcorn_fla.foods_398}Uses:942 892 897 899 901 908 914 920Used by:973
Symbol 944 GraphicUsed by:945
Symbol 945 MovieClipUses:944Used by:952
Symbol 946 GraphicUsed by:951
Symbol 947 GraphicUsed by:948
Symbol 948 MovieClipUses:947Used by:951
Symbol 949 GraphicUsed by:950
Symbol 950 MovieClipUses:949Used by:951
Symbol 951 MovieClipUses:946 948 950Used by:952
Symbol 952 MovieClipUses:945 951Used by:961
Symbol 953 GraphicUsed by:958
Symbol 954 GraphicUsed by:955
Symbol 955 MovieClipUses:954Used by:958
Symbol 956 GraphicUsed by:957
Symbol 957 MovieClipUses:956Used by:958
Symbol 958 MovieClipUses:953 955 957Used by:961
Symbol 959 GraphicUsed by:960
Symbol 960 MovieClipUses:959Used by:961
Symbol 961 MovieClipUses:952 958 960Used by:973 974
Symbol 962 GraphicUsed by:968
Symbol 963 GraphicUsed by:964
Symbol 964 MovieClipUses:963Used by:968 972
Symbol 965 GraphicUsed by:968
Symbol 966 GraphicUsed by:967
Symbol 967 MovieClipUses:966Used by:968
Symbol 968 MovieClipUses:962 964 965 967Used by:973 974
Symbol 969 GraphicUsed by:972
Symbol 970 GraphicUsed by:971
Symbol 971 MovieClipUses:970Used by:972
Symbol 972 MovieClipUses:969 964 971Used by:973 974
Symbol 973 MovieClip {popcorn_fla.cust_387}Uses:932 937 938 939 940 943 961 968 972Used by:1025
Symbol 974 MovieClip {popcorn_fla.custcxvzxcv_416}Uses:932 961 968 972Used by:1025
Symbol 975 GraphicUsed by:984
Symbol 976 GraphicUsed by:977
Symbol 977 MovieClipUses:976Used by:984
Symbol 978 FontUsed by:979 981 982 983
Symbol 979 TextUses:978Used by:984
Symbol 980 GraphicUsed by:984
Symbol 981 TextUses:978Used by:984
Symbol 982 TextUses:978Used by:984
Symbol 983 TextUses:978Used by:984
Symbol 984 MovieClipUses:975 977 979 980 981 982 983Used by:1025
Symbol 985 EditableTextUses:380Used by:1025
Symbol 986 EditableTextUses:380Used by:1025
Symbol 987 EditableTextUses:380Used by:1025
Symbol 988 EditableTextUses:380Used by:1025
Symbol 989 GraphicUsed by:990
Symbol 990 MovieClipUses:989Used by:1025
Symbol 991 GraphicUsed by:1025
Symbol 992 GraphicUsed by:995
Symbol 993 FontUsed by:994
Symbol 994 TextUses:993Used by:995
Symbol 995 MovieClipUses:992 994Used by:1025
Symbol 996 GraphicUsed by:998 1001
Symbol 997 GraphicUsed by:998 1001
Symbol 998 MovieClipUses:996 997Used by:1001 1004
Symbol 999 GraphicUsed by:1000 1001
Symbol 1000 MovieClipUses:999Used by:1001 1004
Symbol 1001 ButtonUses:998 1000 996 997 999Used by:1005
Symbol 1002 GraphicUsed by:1003
Symbol 1003 MovieClipUses:1002Used by:1004
Symbol 1004 MovieClip {popcorn_fla.asDSsound_but_village_425}Uses:998 1000 1003Used by:1005
Symbol 1005 MovieClip {popcorn_fla.asDSsndButtoncopy_421}Uses:1001 1004Used by:1025
Symbol 1006 GraphicUsed by:1009
Symbol 1007 GraphicUsed by:1008
Symbol 1008 MovieClipUses:1007Used by:1009
Symbol 1009 MovieClipUses:1006 1008Used by:1010
Symbol 1010 MovieClipUses:1009Used by:1025
Symbol 1011 TextUses:322Used by:1016 1041 1059
Symbol 1012 TextUses:322Used by:1016 1041 1059
Symbol 1013 GraphicUsed by:1014
Symbol 1014 MovieClipUses:1013Used by:1016 1041 1059
Symbol 1015 TextUses:322Used by:1016
Symbol 1016 MovieClipUses:371 303 373 1011 1012 1014 1015Used by:1025
Symbol 1017 TextUses:322Used by:1022
Symbol 1018 TextUses:322Used by:1022
Symbol 1019 TextUses:322Used by:1022
Symbol 1020 GraphicUsed by:1022
Symbol 1021 TextUses:322Used by:1022
Symbol 1022 ButtonUses:1017 1018 1019 1020 1021Used by:1025
Symbol 1023 EditableTextUses:322Used by:1025
Symbol 1024 EditableTextUses:322Used by:1025
Symbol 1025 MovieClip {popcorn_fla.gamemc_175}Uses:399 418 431 446 453 454 306 456 459 466 472 491 498 500 503 515 550 559 569 575 587 589 862 867 869 702 870 871 873 876 880 883 885 888 893 898 900 902 909 915 921 973 974 984 985 986 987 988 990 991 995 1005 1010 1016 1022 1023 1024Used by:Timeline
Symbol 1026 TextUses:322Used by:1041 1059
Symbol 1027 TextUses:322Used by:1041 1059
Symbol 1028 TextUses:322Used by:1033
Symbol 1029 TextUses:322Used by:1033
Symbol 1030 TextUses:322Used by:1033
Symbol 1031 GraphicUsed by:1033
Symbol 1032 TextUses:322Used by:1033
Symbol 1033 ButtonUses:1028 1029 1030 1031 1032Used by:1041 1059
Symbol 1034 TextUses:322Used by:1036 1056
Symbol 1035 GraphicUsed by:1036 1040 1056 1058
Symbol 1036 ButtonUses:1034 1035Used by:1041
Symbol 1037 TextUses:322Used by:1041
Symbol 1038 TextUses:322Used by:1040 1058
Symbol 1039 TextUses:322Used by:1040 1058
Symbol 1040 ButtonUses:1038 1039 1035Used by:1041
Symbol 1041 MovieClip {popcorn_fla.BKU8copy_433}Uses:371 303 373 1026 1011 1027 1012 1014 1033 1036 1037 1040Used by:Timeline
Symbol 1042 EditableTextUses:322Used by:Timeline
Symbol 1043 EditableTextUses:322Used by:Timeline
Symbol 1044 EditableTextUses:322Used by:Timeline
Symbol 1045 GraphicUsed by:1046
Symbol 1046 ButtonUses:1045Used by:1047
Symbol 1047 MovieClipUses:1046Used by:1049
Symbol 1048 GraphicUsed by:1049
Symbol 1049 MovieClipUses:1047 1048Used by:1055
Symbol 1050 EditableTextUses:322Used by:1055
Symbol 1051 GraphicUsed by:1052
Symbol 1052 ButtonUses:1051Used by:1055
Symbol 1053 FontUsed by:1054
Symbol 1054 TextUses:1053Used by:1055
Symbol 1055 MovieClip {popcorn_fla.insaSymbol1_437}Uses:1049 1050 1052 1054Used by:Timeline
Symbol 1056 ButtonUses:1034 1035Used by:1059
Symbol 1057 TextUses:322Used by:1059
Symbol 1058 ButtonUses:1038 1039 1035Used by:1059
Symbol 1059 MovieClip {popcorn_fla.BKU8copy4_442}Uses:371 303 373 1026 1011 1027 1012 1014 1033 1056 1057 1058Used by:Timeline
Symbol 1060 EditableTextUses:322Used by:Timeline
Symbol 1061 EditableTextUses:322Used by:Timeline
Symbol 1062 EditableTextUses:322Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 296 MovieClip {popcorn_fla.preloSymbol74_1}
"plbt"Frame 10Symbol 346 Button
"instbt"Frame 10Symbol 351 Button
"gamehome"Frame 30Symbol 1025 MovieClip {popcorn_fla.gamemc_175}
"gomc"Frame 40Symbol 1041 MovieClip {popcorn_fla.BKU8copy_433}
"gamelsc"Frame 40Symbol 1042 EditableText
"gamegsc"Frame 40Symbol 1043 EditableText
"nameText"Frame 40Symbol 1044 EditableText
"msg"Frame 40Symbol 1055 MovieClip {popcorn_fla.insaSymbol1_437}
"conmc"Frame 50Symbol 1059 MovieClip {popcorn_fla.BKU8copy4_442}
"conlsc"Frame 50Symbol 1060 EditableText
"congsc"Frame 50Symbol 1061 EditableText
"nameText"Frame 50Symbol 1062 EditableText
"per"Symbol 279 MovieClip {popcorn_fla.prelo_121} Frame 1Symbol 278 EditableText
"per"Symbol 290 MovieClip {popcorn_fla.prelo_124} Frame 1Symbol 281 EditableText
"per"Symbol 293 MovieClip {popcorn_fla.prelo_129} Frame 1Symbol 292 EditableText
"innercooker"Symbol 294 MovieClip {popcorn_fla.prelocooker_120} Frame 1Symbol 279 MovieClip {popcorn_fla.prelo_121}
"innercooker"Symbol 294 MovieClip {popcorn_fla.prelocooker_120} Frame 2Symbol 290 MovieClip {popcorn_fla.prelo_124}
"innercooker"Symbol 294 MovieClip {popcorn_fla.prelocooker_120} Frame 3Symbol 293 MovieClip {popcorn_fla.prelo_129}
"preloadMc"Symbol 296 MovieClip {popcorn_fla.preloSymbol74_1} Frame 1Symbol 100 MovieClip {popcorn_fla.prelolodergddfhh_7}
"cooker"Symbol 296 MovieClip {popcorn_fla.preloSymbol74_1} Frame 1Symbol 294 MovieClip {popcorn_fla.prelocooker_120}
"backbt"Symbol 379 MovieClip {popcorn_fla.BKU8copy3_170} Frame 1Symbol 377 Button
"grillcorn"Symbol 472 MovieClip {popcorn_fla.L_219} Frame 1Symbol 469 MovieClip
"grillcorn"Symbol 472 MovieClip {popcorn_fla.L_219} Frame 1Symbol 469 MovieClip
"grillcorn"Symbol 472 MovieClip {popcorn_fla.L_219} Frame 1Symbol 469 MovieClip
"grillcorn"Symbol 472 MovieClip {popcorn_fla.L_219} Frame 1Symbol 469 MovieClip
"grillcorn"Symbol 472 MovieClip {popcorn_fla.L_219} Frame 1Symbol 469 MovieClip
"grillcorn"Symbol 472 MovieClip {popcorn_fla.L_219} Frame 1Symbol 469 MovieClip
"grillcorn"Symbol 472 MovieClip {popcorn_fla.L_219} Frame 1Symbol 469 MovieClip
"grillcorn"Symbol 472 MovieClip {popcorn_fla.L_219} Frame 1Symbol 469 MovieClip
"grillcorn"Symbol 472 MovieClip {popcorn_fla.L_219} Frame 1Symbol 469 MovieClip
"grapebt"Symbol 491 MovieClip {popcorn_fla.Timeline_222} Frame 1Symbol 487 MovieClip {popcorn_fla.K_228}
"orangebt"Symbol 491 MovieClip {popcorn_fla.Timeline_222} Frame 1Symbol 490 MovieClip {popcorn_fla.K_231}
"sweetPull"Symbol 550 MovieClip {popcorn_fla.OLJK_238} Frame 1Symbol 517 MovieClip {popcorn_fla.KHJKHLcopy2_239}
"spicyPull"Symbol 559 MovieClip {popcorn_fla.OLJK_249} Frame 1Symbol 551 MovieClip {popcorn_fla.KHJKHLcopy3_250}
"sweetRollPull"Symbol 575 MovieClip {popcorn_fla.gfhmcopy4_257} Frame 1Symbol 571 MovieClip {popcorn_fla.HKLJcopy_258}
"chocomc"Symbol 585 MovieClip {popcorn_fla.OLJK_263} Frame 1Symbol 583 MovieClip
"chocoPull"Symbol 587 MovieClip {popcorn_fla.gfhmcopy3_261} Frame 1Symbol 576 MovieClip {popcorn_fla.HKLJ_262}
"throwfood"Symbol 711 MovieClip {popcorn_fla.zzxzz_307} Frame 1Symbol 710 MovieClip {popcorn_fla.vb_308}
"throwfood2"Symbol 718 MovieClip {popcorn_fla.zzxzzcopy_311} Frame 1Symbol 715 MovieClip {popcorn_fla.vbcopy1_312}
"throwfood2"Symbol 718 MovieClip {popcorn_fla.zzxzzcopy_311} Frame 13Symbol 717 MovieClip {popcorn_fla.vbcopy2_313}
"pouchtakeAni"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 2Symbol 632 MovieClip {popcorn_fla.BOYAXcopX_276}
"pullSpicyCorn"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 3Symbol 648 MovieClip {popcorn_fla.BOYAXcXcopyZ_279}
"pullSweetCorn"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 4Symbol 659 MovieClip {popcorn_fla.BOYAXcX_282}
"bowltakeAni"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 5Symbol 663 MovieClip {popcorn_fla.BOYAXcopXZZZFGFGcZXZXcopyCV_284}
"pullSweetRollCorn"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 6Symbol 675 MovieClip {popcorn_fla.BOYAXcopXZZZFGFGcC_286}
"pullChocoCorn"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 7Symbol 687 MovieClip {popcorn_fla.BOYAXcopXZZZz_291}
"juicetakeAni"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 8Symbol 688 MovieClip {popcorn_fla.BOYAXcopXZZZFGFGcZXZc_298}
"orangeAni"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 9Symbol 692 MovieClip {popcorn_fla.BOYAXcXcopzy_299}
"grapeAni"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 10Symbol 695 MovieClip {popcorn_fla.BOYAXcXcz_300}
"grillcornAni"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 11Symbol 703 MovieClip {popcorn_fla.zzxzx_301}
"throwtoDustBin"Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270} Frame 14Symbol 711 MovieClip {popcorn_fla.zzxzz_307}
"foodsall"Symbol 893 MovieClip {popcorn_fla.Scvbcvbcvb_362} Frame 1Symbol 892 MovieClip
"foodsall"Symbol 898 MovieClip {popcorn_fla.Scvbcx_365} Frame 1Symbol 897 MovieClip
"foodsall"Symbol 909 MovieClip {popcorn_fla.Scvbcghb_372} Frame 1Symbol 908 MovieClip
"foodAni"Symbol 943 MovieClip {popcorn_fla.foods_398} Frame 1Symbol 942 MovieClip {popcorn_fla.cvb_399}
"foodsall"Symbol 943 MovieClip {popcorn_fla.foods_398} Frame 1Symbol 892 MovieClip
"foodsall"Symbol 943 MovieClip {popcorn_fla.foods_398} Frame 2Symbol 897 MovieClip
"foodsall"Symbol 943 MovieClip {popcorn_fla.foods_398} Frame 5Symbol 908 MovieClip
"custAll"Symbol 973 MovieClip {popcorn_fla.cust_387} Frame 1Symbol 932 MovieClip
"bar1"Symbol 973 MovieClip {popcorn_fla.cust_387} Frame 1Symbol 937 MovieClip {popcorn_fla.level12bar_394}
"bar4"Symbol 973 MovieClip {popcorn_fla.cust_387} Frame 1Symbol 938 MovieClip {popcorn_fla.level4bar_395}
"bar5"Symbol 973 MovieClip {popcorn_fla.cust_387} Frame 1Symbol 939 MovieClip {popcorn_fla.level5bar_396}
"bar3"Symbol 973 MovieClip {popcorn_fla.cust_387} Frame 1Symbol 940 MovieClip {popcorn_fla.level3bar_397}
"food"Symbol 973 MovieClip {popcorn_fla.cust_387} Frame 1Symbol 943 MovieClip {popcorn_fla.foods_398}
"custAll"Symbol 973 MovieClip {popcorn_fla.cust_387} Frame 2Symbol 961 MovieClip
"custAll"Symbol 973 MovieClip {popcorn_fla.cust_387} Frame 3Symbol 968 MovieClip
"custAll"Symbol 973 MovieClip {popcorn_fla.cust_387} Frame 4Symbol 972 MovieClip
"Line"Symbol 1004 MovieClip {popcorn_fla.asDSsound_but_village_425} Frame 1Symbol 1003 MovieClip
"sndon"Symbol 1005 MovieClip {popcorn_fla.asDSsndButtoncopy_421} Frame 1Symbol 1001 Button
"sndoff"Symbol 1005 MovieClip {popcorn_fla.asDSsndButtoncopy_421} Frame 2Symbol 1004 MovieClip {popcorn_fla.asDSsound_but_village_425}
"wb2"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 446 MovieClip
"pb2"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 453 MovieClip
"dustBin"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 459 MovieClip {popcorn_fla.OKL_214}
"grillshow"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 472 MovieClip {popcorn_fla.L_219}
"juiceMachine"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 491 MovieClip {popcorn_fla.Timeline_222}
"cup"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 498 MovieClip
"grillmc"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 500 MovieClip
"sweetcornMachine"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 550 MovieClip {popcorn_fla.OLJK_238}
"spicycornMachine"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 559 MovieClip {popcorn_fla.OLJK_249}
"sweetMachine"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 575 MovieClip {popcorn_fla.gfhmcopy4_257}
"chocoRollMachine"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 587 MovieClip {popcorn_fla.gfhmcopy3_261}
"server"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 862 MovieClip {popcorn_fla.Symbol2BB_270}
"grillCorn1"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 702 MovieClip {popcorn_fla.LHLJLJLcopy_302}
"grillCorn2"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 870 MovieClip {popcorn_fla.LHLJLJLcopy2_349}
"grillCorn3"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 871 MovieClip {popcorn_fla.LHLJLJLcopy3_350}
"cornPouch3"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 876 MovieClip
"juiceCup1"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 880 MovieClip
"cornPouch2"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 876 MovieClip
"cornPouch1"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 883 MovieClip
"bowl"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 885 MovieClip
"spicyPopShow"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 893 MovieClip {popcorn_fla.Scvbcvbcvb_362}
"sweetPopShow"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 898 MovieClip {popcorn_fla.Scvbcx_365}
"grapeShow"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 900 MovieClip {popcorn_fla.Scvbcghghgh_368}
"orangeShow"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 902 MovieClip {popcorn_fla.Scvbcgh_370}
"sweetShow"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 909 MovieClip {popcorn_fla.Scvbcghb_372}
"chocoShow"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 915 MovieClip {popcorn_fla.Scvbcb_378}
"grillShow"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 921 MovieClip {popcorn_fla.Scvbcbcvb_383}
"customer"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 973 MovieClip {popcorn_fla.cust_387}
"customer1"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 974 MovieClip {popcorn_fla.custcxvzxcv_416}
"timetxt"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 985 EditableText
"scoretxt"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 986 EditableText
"lvtxt"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 987 EditableText
"targetxt"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 988 EditableText
"bee2"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 990 MovieClip
"pausebt"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 995 MovieClip
"sndBtn"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 1Symbol 1005 MovieClip {popcorn_fla.asDSsndButtoncopy_421}
"levelupmc"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 5Symbol 1016 MovieClip
"pabt"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 5Symbol 1022 Button
"lsctxt"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 5Symbol 1023 EditableText
"gsctxt"Symbol 1025 MovieClip {popcorn_fla.gamemc_175} Frame 5Symbol 1024 EditableText
"submitScore"Symbol 1041 MovieClip {popcorn_fla.BKU8copy_433} Frame 1Symbol 1033 Button
"playAgainbt"Symbol 1041 MovieClip {popcorn_fla.BKU8copy_433} Frame 1Symbol 1036 Button
"gomoreGames"Symbol 1041 MovieClip {popcorn_fla.BKU8copy_433} Frame 1Symbol 1040 Button
"tex"Symbol 1055 MovieClip {popcorn_fla.insaSymbol1_437} Frame 1Symbol 1050 EditableText
"okBtn"Symbol 1055 MovieClip {popcorn_fla.insaSymbol1_437} Frame 1Symbol 1052 Button
"submitScore"Symbol 1059 MovieClip {popcorn_fla.BKU8copy4_442} Frame 1Symbol 1033 Button
"conplayAgainbt"Symbol 1059 MovieClip {popcorn_fla.BKU8copy4_442} Frame 1Symbol 1056 Button
"conmgbt"Symbol 1059 MovieClip {popcorn_fla.BKU8copy4_442} Frame 1Symbol 1058 Button

Special Tags

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

Labels

"preload"Frame 1
"start"Frame 10
"instruction"Frame 20
"game"Frame 30
"gameover"Frame 40
"congrats"Frame 50
"loop"Symbol 290 MovieClip {popcorn_fla.prelo_124} Frame 11




http://swfchan.com/22/109369/info.shtml
Created: 28/4 -2021 15:09:54 Last modified: 28/4 -2021 15:09:54 Server time: 25/04 -2024 23:03:30