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

swfchan turned sixteen years old yesterday! (5may2024)

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

Chicks N Dicks 2 - hicks Loves Dicks for Sure!.swf

This is the info page for
Flash #89088

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


Text
PLEASE WAIT

EASY

IF YOU LIKE FINISH FAST

NORMAL

RIGHT CHOICE !

ACHIEVEMENTS

BACK

START GAME

HENTAI COLLECTIONS

PLAY MORE GAMES

GAME CHICKS in XXX

COMPLETE GAME FIRST

DONE!

CLICK HERE TO CONTINUE !

THANK YOU FOR PLAYING OUR GAME !

Please support us if you enjoed this
game by paying attention to our
sponsor deal !

CLICK HERE TO PROCEED

ActionScript [AS3]

Section 1
//Back (gs.easing.Back) package gs.easing { public class Back { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = ((_arg1 / _arg4) - 1); return (((_arg3 * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 1)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = (_arg1 / _arg4); return (((((_arg3 * _arg1) * _arg1) * (((_arg5 + 1) * _arg1) - _arg5)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * ((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) - _arg5))) + _arg2)); }; _arg1 = (_arg1 - 2); _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 2)) + _arg2)); } } }//package gs.easing
Section 2
//AutoAlphaPlugin (gs.plugins.AutoAlphaPlugin) package gs.plugins { import gs.*; import flash.display.*; public class AutoAlphaPlugin extends TweenPlugin { protected var _tweenVisible:Boolean; protected var _target:Object; protected var _visible:Boolean; protected var _tween:TweenLite; 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 killProps(_arg1:Object):void{ super.killProps(_arg1); _tweenVisible = !(Boolean(("visible" in _arg1))); } 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 set changeFactor(_arg1:Number):void{ updateTweens(_arg1); if (((!((_target.visible == true))) && (_tweenVisible))){ _target.visible = true; }; } } }//package gs.plugins
Section 3
//EndArrayPlugin (gs.plugins.EndArrayPlugin) package gs.plugins { import gs.*; import flash.display.*; import gs.utils.tween.*; public class EndArrayPlugin extends TweenPlugin { protected var _a:Array; protected var _info: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"]; } public function init(_arg1:Array, _arg2:Array):void{ _a = _arg1; var _local3:int = (_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); } 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--; }; }; } } }//package gs.plugins
Section 4
//FramePlugin (gs.plugins.FramePlugin) package gs.plugins { import gs.*; import flash.display.*; public class FramePlugin extends TweenPlugin { protected var _target:MovieClip; public var frame:int; 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 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); } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.gotoAndStop(this.frame); } } }//package gs.plugins
Section 5
//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 6
//TintPlugin (gs.plugins.TintPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.geom.*; import gs.utils.tween.*; public class TintPlugin extends TweenPlugin { protected var _target:DisplayObject; protected var _ct:ColorTransform; protected var _ignoreAlpha:Boolean; 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"]; } 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{ if (!(_arg1 is DisplayObject)){ return (false); }; var _local4:ColorTransform = new ColorTransform(); if (((!((_arg2 == null))) && (!((_arg3.exposedVars.removeTint == true))))){ _local4.color = uint(_arg2); }; _ignoreAlpha = true; init((_arg1 as DisplayObject), _local4); return (true); } 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; } } }//package gs.plugins
Section 7
//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 propName:String; public var onComplete:Function; public var round:Boolean; protected var _changeFactor:Number;// = 0 public static const VERSION:Number = 1.03; public static const API:Number = 1; public function TweenPlugin(){ _tweens = []; 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 8
//VisiblePlugin (gs.plugins.VisiblePlugin) package gs.plugins { import gs.*; import flash.display.*; public class VisiblePlugin extends TweenPlugin { protected var _target:Object; protected var _visible:Boolean; protected var _tween:TweenLite; public static const VERSION:Number = 1; public static const API:Number = 1; public function VisiblePlugin(){ this.propName = "visible"; this.overwriteProps = ["visible"]; this.onComplete = onCompleteTween; } 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); } override public function set changeFactor(_arg1:Number):void{ if (_target.visible != true){ _target.visible = true; }; } } }//package gs.plugins
Section 9
//VolumePlugin (gs.plugins.VolumePlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.media.*; public class VolumePlugin extends TweenPlugin { protected var _target:Object; protected var _st:SoundTransform; 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 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); } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.soundTransform = _st; } } }//package gs.plugins
Section 10
//ArrayTweenInfo (gs.utils.tween.ArrayTweenInfo) package gs.utils.tween { public class ArrayTweenInfo { public var change:Number; public var start:Number; public var index:uint; public function ArrayTweenInfo(_arg1:uint, _arg2:Number, _arg3:Number){ this.index = _arg1; this.start = _arg2; this.change = _arg3; } } }//package gs.utils.tween
Section 11
//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 12
//TweenLite (gs.TweenLite) package gs { import flash.events.*; import flash.display.*; import gs.utils.tween.*; import gs.plugins.*; import flash.utils.*; public class TweenLite { public var started:Boolean; public var delay:Number; protected var _hasUpdate:Boolean; protected var _hasPlugins: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 tweens:Array; public var vars:Object; public var ease:Function; public var exposedVars:Object; public var initTime:Number; public var combinedTimeScale:Number; public static const version:Number = 10.091; 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){ 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)); var _local4:int = ((((_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 get enabled():Boolean{ return ((this.gc) ? false : true); } 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 _local3:Number; var _local4:TweenInfo; var _local5:int; var _local2:Number = ((_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 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 _local4:Array; var _local5:int; var _local6:TweenLite; var _local2:uint = (currentTime = getTimer()); var _local3:Dictionary = 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 _local3:Object; var _local2:Dictionary = 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 13
//btn_33 (puzzle_fla.btn_33) package puzzle_fla { import flash.display.*; public dynamic class btn_33 extends MovieClip { public function btn_33(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package puzzle_fla
Section 14
//Splash_NON_NG2_28 (puzzle_fla.Splash_NON_NG2_28) package puzzle_fla { import flash.display.*; public dynamic class Splash_NON_NG2_28 extends MovieClip { public function Splash_NON_NG2_28(){ addFrameScript(64, frame65); } function frame65(){ stop(); } } }//package puzzle_fla
Section 15
//title_m_6 (puzzle_fla.title_m_6) package puzzle_fla { import flash.display.*; public dynamic class title_m_6 extends MovieClip { public var loops:MovieClip; public function title_m_6(){ addFrameScript(0, frame1); } function frame1(){ stop(); loops.gotoAndStop((1 + int((Math.random() * 5)))); } } }//package puzzle_fla
Section 16
//click_snd (click_snd) package { import flash.media.*; public dynamic class click_snd extends Sound { } }//package
Section 17
//configManager (configManager) package { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.net.*; import flash.system.*; public class configManager extends MovieClip { var showonload:String;// = null var popupurl:String;// = "" var areas:Dictionary; public var values:Array; var gid:String; var ver:uint; var areacontent:Dictionary; var configXML:XML; public function configManager(_arg1:String, _arg2:uint, _arg3:Stage):void{ var ioErrorHandler:Function; var loadXML:Function; var gameid = _arg1; var version = _arg2; var st = _arg3; configXML = <config></config> ; areas = new Dictionary(true); areacontent = new Dictionary(true); values = []; super(); ioErrorHandler = function (_arg1:Event):void{ trace("config fail"); }; loadXML = function (_arg1:Event):void{ var k:uint; var tmpfn:Function; var e = _arg1; configXML = new XML(e.target.data); var i:uint; while (i < configXML.stages.stage.length()) { k = 0; while (k < configXML.stages.stage[i].banners.banner.length()) { if (configXML.stages.stage[i].banners.banner[k].@autoload == "true"){ trace(((("get content " + configXML.stages.stage[i].@name) + " loc:") + configXML.stages.stage[i].banners.banner[k].@location)); getContent(configXML.stages.stage[i].@name, k, configXML.stages.stage[i].banners.banner[k].@location, configXML.stages.stage[i].banners.banner[k].@x, configXML.stages.stage[i].banners.banner[k].@y, configXML.stages.stage[i].banners.banner[k].@href); }; if (configXML.stages.stage[i].@name == "popup"){ tmpfn = function (_arg1:Event):void{ if (popupurl != ""){ navigateToURL(new URLRequest(popupurl), "_blank"); }; st.removeEventListener(MouseEvent.CLICK, tmpfn); }; st.addEventListener(MouseEvent.CLICK, tmpfn); popupurl = configXML.stages.stage[i].banners.banner[k].@href; }; k = (k + 1); }; i = (i + 1); }; i = 0; while (i < configXML.values.value.length()) { if (String(configXML.values.value[i].@stagename).length > 0){ values[configXML.values.value[i].@name] = [configXML.values.value[i].@stagename, configXML.values.value[i].@text]; } else { values[String(configXML.values.value[i].@name)] = String(configXML.values.value[i].@value); }; i = (i + 1); }; dispatchEvent(new Event("CONFIGLOADED")); trace("config loaded\n\n"); }; gid = gameid; ver = version; var loader:URLLoader = new URLLoader(); loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, ioErrorHandler); loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler); loader.addEventListener(Event.COMPLETE, loadXML); loader.load(new URLRequest(((((("http://config.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&player=") + Capabilities.version))); } public function addArea(_arg1:String, _arg2:MovieClip):void{ var bannerid:uint; var i:uint; var k:uint; var id = _arg1; var area = _arg2; if (areas[id] == undefined){ areas[id] = area; if (areacontent[id] == undefined){ areacontent[id] = []; i = 0; while (i < configXML.stages.stage.length()) { if (String(configXML.stages.stage[i].@name) == id){ k = 0; while (k < configXML.stages.stage[i].banners.banner.length()) { getContent(configXML.stages.stage[i].@name, k, configXML.stages.stage[i].banners.banner[k].@location, configXML.stages.stage[i].banners.banner[k].@x, configXML.stages.stage[i].banners.banner[k].@y, configXML.stages.stage[i].banners.banner[k].@href); k = (k + 1); }; }; i = (i + 1); }; }; }; bannerid = int((Math.random() * areacontent[id].length)); if (((((!((areacontent[id][bannerid] == null))) && (!((areacontent[id][bannerid] == undefined))))) && (!(area.contains(areacontent[id][bannerid]))))){ area.addChild(areacontent[id][bannerid]); dispatchEvent(new Event(("LOADED_" + id))); if (areacontent[id][bannerid].href != ""){ areacontent[id][bannerid].addEventListener(MouseEvent.CLICK, function (_arg1:Event):void{ navigateToURL(new URLRequest(areacontent[id][bannerid].href), "_blank"); }); }; } else { showonload = id; }; trace((("start " + id) + " area")); } function getContent(_arg1:String, _arg2:uint, _arg3:String, _arg4:Number, _arg5:Number, _arg6:String):void{ var loadcontent:Function; var id = _arg1; var arrid = _arg2; var loc = _arg3; var x = _arg4; var y = _arg5; var href = _arg6; loadcontent = function (_arg1:Event):void{ var bannerid:uint; var e = _arg1; if (areacontent[id] == undefined){ areacontent[id] = []; }; e.target.content.x = x; e.target.content.y = y; e.target.content.href = href; e.target.content.gameid = gid; e.target.content.version = ver; areacontent[id][arrid] = e.target.content; if (showonload == id){ bannerid = int((Math.random() * areacontent[id].length)); areas[id].addChild(areacontent[id][bannerid]); if (areacontent[id][bannerid].href != ""){ areacontent[id][bannerid].addEventListener(MouseEvent.CLICK, function (_arg1:Event):void{ navigateToURL(new URLRequest(areacontent[id][bannerid].href), "_blank"); }); }; }; trace("content loaded"); trace(("LOADED_" + id)); dispatchEvent(new Event(("LOADED_" + id))); }; var loader:Loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadcontent); loader.load(new URLRequest(loc)); } } }//package
Section 18
//FX1 (FX1) package { import flash.events.*; import flash.display.*; public dynamic class FX1 extends MovieClip { public var b:MovieClip; public var t:MovieClip; public var r:MovieClip; public var l:MovieClip; public function FX1(){ addFrameScript(14, frame15); } function frame15(){ dispatchEvent(new Event("DONE")); } } }//package
Section 19
//game_snd (game_snd) package { import flash.media.*; public dynamic class game_snd extends Sound { } }//package
Section 20
//grid_easy (grid_easy) package { import flash.display.*; public dynamic class grid_easy extends MovieClip { } }//package
Section 21
//grid_normal (grid_normal) package { import flash.display.*; public dynamic class grid_normal extends MovieClip { } }//package
Section 22
//item (item) package { import flash.display.*; public class item extends MovieClip { public var goodPlace:Boolean;// = false public var pmask:MovieClip; public var bg:MovieClip; public var goodi; public var goodk:uint; } }//package
Section 23
//menu_snd (menu_snd) package { import flash.media.*; public dynamic class menu_snd extends Sound { } }//package
Section 24
//puzzleGame (puzzleGame) package { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import gs.easing.*; import flash.media.*; import flash.filters.*; import flash.net.*; public class puzzleGame extends MovieClip { public var easyBtn:MovieClip; public var easy:Boolean; public var achBtn2:MovieClip; var activePeace:MovieClip; public var backBtn:MovieClip; var rotatingMc:MovieClip; var bgid:uint;// = 1 var rotateCounter:uint;// = 0 public var achBtn5:MovieClip; public var movie:MovieClip; var puzzle:Array; public var zz:uint; public var config:configManager; var grid:MovieClip; var clickCounter:uint;// = 0 public var btn1:MovieClip; public var btn2:MovieClip; public var btn3:MovieClip; public var btn4:MovieClip; public var btn5:MovieClip; public var btn:MovieClip; public var spl1:MovieClip; public var spl2:MovieClip; public var closebtn:MovieClip; public var preloader:MovieClip; public var done:MovieClip; var cellSize:uint;// = 110 public var gameid:String; var mcs:Array; public var bonusAvalible; public var adv:MovieClip; public var ng:Boolean; public var defaultValues:Array; public var bgSound:SoundChannel; public var btn2d:MovieClip; var gridSizeX; var gridSizeY:uint; public var defaultKeys:Array; public var nglist:Array; public var version:uint; public var normalBtn:MovieClip; public var achBtn1:MovieClip; public var select:MovieClip; public var achBtn3:MovieClip; public var achBtn4:MovieClip; public function puzzleGame():void{ puzzle = []; mcs = []; super(); addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9); addEventListener(MouseEvent.CLICK, function (_arg1:Event){ new click_snd().play(); }); } public function btnMO(_arg1:Event):void{ select.visible = true; select.y = (_arg1.target.y + 7); if (btn2d){ btn2d.visible = false; }; } public function comp(_arg1:Event):void{ gotoAndStop(1, "Menu"); } public function btnMOU(_arg1:Event):void{ if (select){ select.visible = false; }; } public function makebtn1(_arg1:MovieClip):void{ _arg1.useHandCursor = true; _arg1.buttonMode = true; _arg1.addEventListener(MouseEvent.CLICK, achBtnCL); } function chkDone():void{ var _local2:*; var _local3:uint; var _local1:Boolean; _local2 = 0; while (_local2 < mcs.length) { _local3 = 0; while (_local3 < mcs[_local2].length) { if ((((((mcs[_local2][_local3].rotation == 0)) && ((Math.floor((mcs[_local2][_local3].x / cellSize)) == mcs[_local2][_local3].goodk)))) && ((Math.floor((mcs[_local2][_local3].y / cellSize)) == mcs[_local2][_local3].goodi)))){ } else { _local1 = false; }; _local3++; }; _local2++; }; if (_local1){ trace("done!!!"); done.alpha = 0; done.visible = true; TweenLite.to(done, 1, {alpha:1, ease:Back.easeInOut}); }; } function Play():void{ bgid = 1; done.visible = false; done.useHandCursor = true; done.buttonMode = true; done.addEventListener(MouseEvent.CLICK, doneFNC); if (easy){ grid = new grid_easy(); grid.x = 27.5; gridSizeX = 3; gridSizeY = 2; cellSize = 165; } else { grid = new grid_normal(); gridSizeX = 5; gridSizeY = 3; cellSize = 110; }; addChild(grid); makePuzzle(gridSizeX, gridSizeY); stage.addEventListener(Event.ENTER_FRAME, EF); stage.addEventListener(MouseEvent.MOUSE_MOVE, MM); stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler); } function frame2(){ preloader.stop(); stop(); loaderInfo.addEventListener(ProgressEvent.PROGRESS, update); config.addArea("preloader", adv); } function frame4(){ config.addArea("ach", adv); makebtn1(achBtn1); makebtn1(achBtn2); makebtn1(achBtn3); makebtn1(achBtn4); makebtn1(achBtn5); movie.gotoAndStop(6); movie.visible = false; backBtn.useHandCursor = true; backBtn.buttonMode = true; backBtn.addEventListener(MouseEvent.CLICK, bBtnCL); } function frame5(){ stop(); if (bgSound){ bgSound.stop(); }; bgSound = new menu_snd().play(0, int.MAX_VALUE); config.addArea("menu", adv); select.visible = false; btn2d.visible = false; makebtn(btn1); makebtn(btn2); makebtn(btn3); makebtn(btn4); makebtn(btn5); } function magnet(_arg1:MovieClip):void{ var fx:MovieClip; var m = _arg1; var deltaPix:uint = 15; var deltaPix21:uint = 55; var deltaPix22:uint = 55; var deltaPix3:uint = 5; if (easy){ deltaPix = 80; deltaPix21 = (82.5 + 27.5); deltaPix22 = 82.5; deltaPix3 = 12; }; var nx:uint = ((Math.floor((m.x / cellSize)) * cellSize) + deltaPix21); var ny:uint = ((Math.floor((m.y / cellSize)) * cellSize) + deltaPix22); if ((((Math.floor((m.x / cellSize)) == m.goodk)) && ((Math.floor((m.y / cellSize)) == m.goodi)))){ if ((((m.rotation == 0)) && ((((Math.abs((nx - m.x)) < deltaPix)) || ((Math.abs((ny - m.y)) < deltaPix)))))){ var re:Function = function (_arg1:Event):void{ if (((fx) && (contains(fx)))){ removeChild(fx); }; if (fx){ fx = null; }; }; m.x = nx; m.y = ny; new set_snd().play(); fx = new FX1(); fx.x = (nx - (cellSize / 2)); fx.y = (ny - (cellSize / 2)); fx.width = cellSize; fx.height = cellSize; addChild(fx); fx.addEventListener("DONE", re); chkDone(); }; } else { if ((((Math.abs((nx - m.x)) < deltaPix3)) || ((Math.abs((ny - m.y)) < deltaPix3)))){ m.x = nx; m.y = ny; }; }; } function frame1(){ gameid = "cndp-2"; version = 1; bonusAvalible = false; easy = false; config = new configManager(gameid, version, stage); config.addEventListener("CONFIGLOADED", cfgLoaded); defaultKeys = ["vote", "pills"]; defaultValues = []; defaultValues["vote"] = 0; defaultValues["pills"] = 0; stage.scaleMode = StageScaleMode.NO_SCALE; ng = false; nglist = ["ungrounded.net", "newgrounds.com"]; zz = 0; while (zz < nglist.length) { if (loaderInfo.loaderURL.indexOf(nglist[zz]) > 0){ ng = true; }; zz++; }; stage.showDefaultContextMenu = false; loaderInfo.addEventListener(Event.COMPLETE, comp); } function frame9(){ closebtn.useHandCursor = true; closebtn.buttonMode = true; closebtn.addEventListener(MouseEvent.CLICK, function (_arg1:Event){ gotoAndStop(1, "Menu"); }); btn.useHandCursor = true; btn.buttonMode = true; btn.addEventListener(MouseEvent.CLICK, function (_arg1:Event){ if (btn.currentFrame == 1){ btn.gotoAndStop(2); } else { navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=bonus")), "_blank"); gotoAndStop(1, "Menu"); }; }); } function frame3(){ easyBtn.alpha = 0; normalBtn.alpha = 0; TweenLite.to(easyBtn, 0.35, {alpha:1, ease:Back.easeInOut}); TweenLite.to(normalBtn, 0.35, {alpha:1, ease:Back.easeInOut}); easyBtn.useHandCursor = true; easyBtn.buttonMode = true; easyBtn.addEventListener(MouseEvent.CLICK, function (_arg1:Event){ easy = true; gotoAndStop(1, "Game"); }); normalBtn.useHandCursor = true; normalBtn.buttonMode = true; normalBtn.addEventListener(MouseEvent.CLICK, function (_arg1:Event){ easy = false; gotoAndStop(1, "Game"); }); } private function keyDownHandler(_arg1:KeyboardEvent):void{ if ((((_arg1.keyCode == 32)) && (done.visible))){ doneFNC(null); }; } function frame7(){ stop(); spl1.useHandCursor = true; spl1.buttonMode = true; spl1.addEventListener(MouseEvent.CLICK, voteCL1); } function frame6(){ config.addArea("game", adv); if (bgSound){ bgSound.stop(); }; bgSound = new game_snd().play(0, int.MAX_VALUE); Play(); } function frame8(){ stop(); spl2.useHandCursor = true; spl2.buttonMode = true; spl2.addEventListener(MouseEvent.CLICK, voteCL2); } public function bBtnCL(_arg1:Event):void{ if (movie.visible){ movie.gotoAndStop(6); movie.visible = false; } else { gotoAndStop(1, "Menu"); }; } public function cfgLoaded(_arg1:Event):void{ var _local2:uint; while (_local2 < defaultKeys.length) { if (config.values[defaultKeys[_local2]]){ defaultValues[defaultKeys[_local2]] = config.values[defaultKeys[_local2]]; }; _local2++; }; } function MD(_arg1:Event):void{ var i:*; var k:uint; var e = _arg1; if (((rotatingMc) || (done.visible))){ return; }; clickCounter = 0; i = 0; while (i < mcs.length) { k = 0; while (k < mcs[i].length) { mcs[i][k].filters = []; k = (k + 1); }; i = (i + 1); }; var m:MovieClip = (e.target.parent.parent as MovieClip); if (!(((m is puzzleItem)) || ((m is puzzleItem2)))){ return; }; if (m == null){ return; }; if (!contains(m)){ return; }; try { setChildIndex(m, (numChildren - 1)); setChildIndex(adv, (numChildren - 1)); } catch(e:Error) { }; activePeace = m; m.startDrag(false, new Rectangle(0, 0, 550, 400)); m.filters = [new GlowFilter(0, 1, 5, 5, 1, BitmapFilterQuality.LOW, false, false)]; } function MM(_arg1:Event){ var onFinishTween:Function; var e = _arg1; onFinishTween = function ():void{ if (activePeace){ activePeace.filters = []; }; }; if (activePeace == null){ return; }; if ((((activePeace.y > 330)) && ((activePeace.scaleX == 1)))){ activePeace.filters = [new BlurFilter(1.25, 1.25, BitmapFilterQuality.HIGH)]; TweenLite.to(activePeace, 0.35, {scaleX:0.5, scaleY:0.5, ease:Back.easeInOut, onComplete:onFinishTween}); }; if ((((activePeace.y < 330)) && ((activePeace.scaleX == 0.5)))){ activePeace.filters = [new BlurFilter(1.25, 1.25, BitmapFilterQuality.HIGH)]; TweenLite.to(activePeace, 0.35, {scaleX:1, scaleY:1, ease:Back.easeInOut, onComplete:onFinishTween}); }; } function EF(_arg1:Event){ clickCounter++; if (rotatingMc){ rotatingMc.filters = [new BlurFilter(((2 * Math.abs((3 - rotateCounter))) + 1), ((2 * Math.abs((3 - rotateCounter))) + 1), BitmapFilterQuality.LOW)]; rotateCounter++; rotatingMc.rotation = (rotatingMc.rotation + 18); if (rotateCounter == 5){ rotatingMc.filters = []; magnet(rotatingMc); chkDone(); rotatingMc = null; }; }; } function MU(_arg1:Event):void{ var _local2:*; var _local3:uint; if (activePeace == null){ return; }; _arg1.target.parent.parent.stopDrag(); _local2 = 0; while (_local2 < mcs.length) { _local3 = 0; while (_local3 < mcs[_local2].length) { mcs[_local2][_local3].filters = []; _local3++; }; _local2++; }; if (clickCounter < 6){ rotatingMc = _arg1.target.parent.parent; rotateCounter = 0; activePeace = null; return; }; if ((((activePeace.x < 550)) && ((activePeace.y < 330)))){ magnet(activePeace); }; activePeace = null; } public function makebtn(_arg1:MovieClip):void{ _arg1.useHandCursor = true; _arg1.buttonMode = true; _arg1.addEventListener(MouseEvent.MOUSE_OVER, btnMO); _arg1.addEventListener(MouseEvent.MOUSE_OUT, btnMOU); _arg1.addEventListener(MouseEvent.CLICK, btnCL); } public function voteCL1(_arg1:Event):void{ spl1.removeEventListener(MouseEvent.CLICK, voteCL1); navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=splash")), "_blank"); gotoAndStop(1, "PROCEED"); } public function voteCL2(_arg1:Event):void{ spl2.removeEventListener(MouseEvent.CLICK, voteCL2); navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=proceed")), "_blank"); gotoAndStop(1, "Menu"); } public function btnCL(_arg1:Event):void{ switch (_arg1.target.name){ case "btn1": gotoAndStop(1, "Menu1"); break; case "btn2": if (bonusAvalible){ gotoAndStop(1, "Menu2"); } else { btn2d.visible = true; }; break; case "btn3": navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=hentai-collection")), "_blank"); break; case "btn4": navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=play-more-games")), "_blank"); break; case "btn5": gotoAndStop(1, "GameChiks"); break; }; } public function update(_arg1:ProgressEvent):void{ preloader.gotoAndStop((1 + int((Math.floor(((_arg1.bytesLoaded * 100) / _arg1.bytesTotal)) / 4)))); } function makePuzzle(_arg1, _arg2:uint):void{ var _local5:uint; var _local6:Object; var _local7:MovieClip; var _local3:Array = [0, 3, 4, 1, 2]; var _local4:uint; while (_local4 < _arg2) { _local5 = 0; while (_local5 < _arg1) { if (_local5 == 0){ puzzle[_local4] = []; }; _local6 = {}; _local6.top = null; _local6.bottom = null; _local6.left = null; _local6.right = null; if (_local5 == 0){ _local6.left = 0; }; if (_local5 == (_arg1 - 1)){ _local6.right = 0; }; if (_local4 == 0){ _local6.top = 0; }; if (_local4 == (_arg2 - 1)){ _local6.bottom = 0; }; puzzle[_local4][_local5] = _local6; _local5++; }; _local4++; }; if (!easy){ _local4 = 0; while (_local4 < _arg2) { _local5 = 0; while (_local5 < _arg1) { if (puzzle[_local4][_local5].right == null){ puzzle[_local4][_local5].right = (int((Math.random() * 4)) + 1); puzzle[_local4][(_local5 + 1)].left = _local3[puzzle[_local4][_local5].right]; }; if (puzzle[_local4][_local5].bottom == null){ puzzle[_local4][_local5].bottom = (int((Math.random() * 4)) + 1); puzzle[(_local4 + 1)][_local5].top = _local3[puzzle[_local4][_local5].bottom]; }; _local5++; }; _local4++; }; }; _local4 = 0; while (_local4 < _arg2) { _local5 = 0; while (_local5 < _arg1) { if (easy){ _local7 = new puzzleItem2(); } else { _local7 = new puzzleItem(); }; _local7.pmask.t.gotoAndStop((puzzle[_local4][_local5].top + 1)); _local7.pmask.r.gotoAndStop((puzzle[_local4][_local5].right + 1)); _local7.pmask.l.gotoAndStop((puzzle[_local4][_local5].left + 1)); _local7.pmask.bo.gotoAndStop((puzzle[_local4][_local5].bottom + 1)); _local7.pmask.cacheAsBitmap = true; _local7.pmask.l.cacheAsBitmap = true; _local7.pmask.r.cacheAsBitmap = true; _local7.pmask.t.cacheAsBitmap = true; _local7.pmask.bo.cacheAsBitmap = true; _local7.pmask.cacheAsBitmap = true; _local7.pmask.x = -((25 + (cellSize / 2))); _local7.pmask.y = -((25 + (cellSize / 2))); _local7.x = (((_local5 * cellSize) - 25) + (25 + (cellSize / 2))); _local7.y = (((_local4 * cellSize) - 25) + (25 + (cellSize / 2))); _local7.bg.gotoAndStop(bgid); _local7.bg.x = -((((_local5 * cellSize) - 25) + (25 + (cellSize / 2)))); _local7.bg.y = -((((_local4 * cellSize) - 25) + (25 + (cellSize / 2)))); addChild(_local7); if (_local5 == 0){ mcs[_local4] = []; }; mcs[_local4][_local5] = _local7; _local7.useHandCUrsor = true; _local7.buttonMode = true; _local7.addEventListener(MouseEvent.MOUSE_DOWN, MD); _local7.addEventListener(MouseEvent.MOUSE_UP, MU); _local7.x = (Math.random() * 500); _local7.y = ((Math.random() * 50) + 330); _local7.rotation = (int((Math.random() * 3)) * 90); _local7.goodk = _local5; _local7.goodi = _local4; _local7.scaleX = 0.5; _local7.scaleY = 0.5; _local5++; }; _local4++; }; } function doneFNC(_arg1:Event):void{ var _local2:*; var _local3:uint; bgid++; _local2 = 0; while (_local2 < mcs.length) { _local3 = 0; while (_local3 < mcs[_local2].length) { removeChild(mcs[_local2][_local3]); mcs[_local2][_local3] = null; _local3++; }; _local2++; }; done.visible = false; if (bgid == 6){ bonusAvalible = true; removeChild(grid); gotoAndStop(1, "NNG"); return; }; makePuzzle(gridSizeX, gridSizeY); } public function achBtnCL(_arg1:Event):void{ movie.visible = true; movie.gotoAndStop(_arg1.target.name.substr(6, 1)); } } }//package
Section 25
//puzzleItem (puzzleItem) package { public dynamic class puzzleItem extends item { } }//package
Section 26
//puzzleItem2 (puzzleItem2) package { import flash.display.*; public dynamic class puzzleItem2 extends MovieClip { public var pmask:MovieClip; public var bg:MovieClip; } }//package
Section 27
//set_snd (set_snd) package { import flash.media.*; public dynamic class set_snd extends Sound { } }//package

Library Items

Symbol 1 GraphicUsed by:9 24 611  Timeline
Symbol 2 FontUsed by:3
Symbol 3 TextUses:2Used by:Timeline
Symbol 4 BitmapUsed by:5
Symbol 5 GraphicUses:4Used by:6
Symbol 6 MovieClipUses:5Used by:564  Timeline
Symbol 7 BitmapUsed by:8
Symbol 8 GraphicUses:7Used by:9
Symbol 9 MovieClipUses:1 8Used by:Timeline
Symbol 10 BitmapUsed by:11
Symbol 11 GraphicUses:10Used by:14 509
Symbol 12 GraphicUsed by:14
Symbol 13 GraphicUsed by:14 509
Symbol 14 MovieClipUses:11 12 13Used by:Timeline
Symbol 15 MovieClipUsed by:Timeline
Symbol 16 GraphicUsed by:19
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:19
Symbol 19 MovieClipUses:16 18Used by:Timeline
Symbol 20 Sound {set_snd}
Symbol 21 Sound {menu_snd}
Symbol 22 Sound {game_snd}
Symbol 23 Sound {click_snd}
Symbol 24 MovieClipUses:1Used by:25
Symbol 25 MovieClipUses:24Used by:27
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClip {FX1}Uses:25 26
Symbol 28 GraphicUsed by:33 500
Symbol 29 GraphicUsed by:33
Symbol 30 GraphicUsed by:33
Symbol 31 GraphicUsed by:33
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:28 29 30 31 32Used by:36 502
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:36 502
Symbol 36 MovieClipUses:33 35Used by:501
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:109
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:109
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:109
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:109
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:109
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:109
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:109
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:109
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:109
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:109
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:109
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:109
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:109
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:109
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:109
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:109
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:109
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:109
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:109
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:109
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:109
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:109
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:109
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:109
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:109
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:109
Symbol 89 BitmapUsed by:90
Symbol 90 GraphicUses:89Used by:109
Symbol 91 BitmapUsed by:92
Symbol 92 GraphicUses:91Used by:109
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:109
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:109
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:109
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:109
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:109
Symbol 103 BitmapUsed by:104
Symbol 104 GraphicUses:103Used by:109
Symbol 105 BitmapUsed by:106
Symbol 106 GraphicUses:105Used by:109
Symbol 107 BitmapUsed by:108
Symbol 108 GraphicUses:107Used by:109
Symbol 109 MovieClipUses:38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98 100 102 104 106 108Used by:500
Symbol 110 BitmapUsed by:111
Symbol 111 GraphicUses:110Used by:270
Symbol 112 BitmapUsed by:113
Symbol 113 GraphicUses:112Used by:270
Symbol 114 BitmapUsed by:115
Symbol 115 GraphicUses:114Used by:270
Symbol 116 BitmapUsed by:117
Symbol 117 GraphicUses:116Used by:270
Symbol 118 BitmapUsed by:119
Symbol 119 GraphicUses:118Used by:270
Symbol 120 BitmapUsed by:121
Symbol 121 GraphicUses:120Used by:270
Symbol 122 BitmapUsed by:123
Symbol 123 GraphicUses:122Used by:270
Symbol 124 BitmapUsed by:125
Symbol 125 GraphicUses:124Used by:270
Symbol 126 BitmapUsed by:127
Symbol 127 GraphicUses:126Used by:270
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:270
Symbol 130 BitmapUsed by:131
Symbol 131 GraphicUses:130Used by:270
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:132Used by:270
Symbol 134 BitmapUsed by:135
Symbol 135 GraphicUses:134Used by:270
Symbol 136 BitmapUsed by:137
Symbol 137 GraphicUses:136Used by:270
Symbol 138 BitmapUsed by:139
Symbol 139 GraphicUses:138Used by:270
Symbol 140 BitmapUsed by:141
Symbol 141 GraphicUses:140Used by:270
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:142Used by:270
Symbol 144 BitmapUsed by:145
Symbol 145 GraphicUses:144Used by:270
Symbol 146 BitmapUsed by:147
Symbol 147 GraphicUses:146Used by:270
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:270
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:270
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:270
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:270
Symbol 156 BitmapUsed by:157
Symbol 157 GraphicUses:156Used by:270
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:270
Symbol 160 BitmapUsed by:161
Symbol 161 GraphicUses:160Used by:270
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:270
Symbol 164 BitmapUsed by:165
Symbol 165 GraphicUses:164Used by:270
Symbol 166 BitmapUsed by:167
Symbol 167 GraphicUses:166Used by:270
Symbol 168 BitmapUsed by:169
Symbol 169 GraphicUses:168Used by:270
Symbol 170 BitmapUsed by:171
Symbol 171 GraphicUses:170Used by:270
Symbol 172 BitmapUsed by:173
Symbol 173 GraphicUses:172Used by:270
Symbol 174 BitmapUsed by:175
Symbol 175 GraphicUses:174Used by:270
Symbol 176 BitmapUsed by:177
Symbol 177 GraphicUses:176Used by:270
Symbol 178 BitmapUsed by:179
Symbol 179 GraphicUses:178Used by:270
Symbol 180 BitmapUsed by:181
Symbol 181 GraphicUses:180Used by:270
Symbol 182 BitmapUsed by:183
Symbol 183 GraphicUses:182Used by:270
Symbol 184 BitmapUsed by:185
Symbol 185 GraphicUses:184Used by:270
Symbol 186 BitmapUsed by:187
Symbol 187 GraphicUses:186Used by:270
Symbol 188 BitmapUsed by:189
Symbol 189 GraphicUses:188Used by:270
Symbol 190 BitmapUsed by:191
Symbol 191 GraphicUses:190Used by:270
Symbol 192 BitmapUsed by:193
Symbol 193 GraphicUses:192Used by:270
Symbol 194 BitmapUsed by:195
Symbol 195 GraphicUses:194Used by:270
Symbol 196 BitmapUsed by:197
Symbol 197 GraphicUses:196Used by:270
Symbol 198 BitmapUsed by:199
Symbol 199 GraphicUses:198Used by:270
Symbol 200 BitmapUsed by:201
Symbol 201 GraphicUses:200Used by:270
Symbol 202 BitmapUsed by:203
Symbol 203 GraphicUses:202Used by:270
Symbol 204 BitmapUsed by:205
Symbol 205 GraphicUses:204Used by:270
Symbol 206 BitmapUsed by:207
Symbol 207 GraphicUses:206Used by:270
Symbol 208 BitmapUsed by:209
Symbol 209 GraphicUses:208Used by:270
Symbol 210 BitmapUsed by:211
Symbol 211 GraphicUses:210Used by:270
Symbol 212 BitmapUsed by:213
Symbol 213 GraphicUses:212Used by:270
Symbol 214 BitmapUsed by:215
Symbol 215 GraphicUses:214Used by:270
Symbol 216 BitmapUsed by:217
Symbol 217 GraphicUses:216Used by:270
Symbol 218 BitmapUsed by:219
Symbol 219 GraphicUses:218Used by:270
Symbol 220 BitmapUsed by:221
Symbol 221 GraphicUses:220Used by:270
Symbol 222 BitmapUsed by:223
Symbol 223 GraphicUses:222Used by:270
Symbol 224 BitmapUsed by:225
Symbol 225 GraphicUses:224Used by:270
Symbol 226 BitmapUsed by:227
Symbol 227 GraphicUses:226Used by:270
Symbol 228 BitmapUsed by:229
Symbol 229 GraphicUses:228Used by:270
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:270
Symbol 232 BitmapUsed by:233
Symbol 233 GraphicUses:232Used by:270
Symbol 234 BitmapUsed by:235
Symbol 235 GraphicUses:234Used by:270
Symbol 236 BitmapUsed by:237
Symbol 237 GraphicUses:236Used by:270
Symbol 238 BitmapUsed by:239
Symbol 239 GraphicUses:238Used by:270
Symbol 240 BitmapUsed by:241
Symbol 241 GraphicUses:240Used by:270
Symbol 242 BitmapUsed by:243
Symbol 243 GraphicUses:242Used by:270
Symbol 244 BitmapUsed by:245
Symbol 245 GraphicUses:244Used by:270
Symbol 246 BitmapUsed by:247
Symbol 247 GraphicUses:246Used by:270
Symbol 248 BitmapUsed by:249
Symbol 249 GraphicUses:248Used by:270
Symbol 250 BitmapUsed by:251
Symbol 251 GraphicUses:250Used by:270
Symbol 252 BitmapUsed by:253
Symbol 253 GraphicUses:252Used by:270
Symbol 254 BitmapUsed by:255
Symbol 255 GraphicUses:254Used by:270
Symbol 256 BitmapUsed by:257
Symbol 257 GraphicUses:256Used by:270
Symbol 258 BitmapUsed by:259
Symbol 259 GraphicUses:258Used by:270
Symbol 260 BitmapUsed by:261
Symbol 261 GraphicUses:260Used by:270
Symbol 262 BitmapUsed by:263
Symbol 263 GraphicUses:262Used by:270
Symbol 264 BitmapUsed by:265
Symbol 265 GraphicUses:264Used by:270
Symbol 266 BitmapUsed by:267
Symbol 267 GraphicUses:266Used by:270
Symbol 268 BitmapUsed by:269
Symbol 269 GraphicUses:268Used by:270
Symbol 270 MovieClipUses:111 113 115 117 119 121 123 125 127 129 131 133 135 137 139 141 143 145 147 149 151 153 155 157 159 161 163 165 167 169 171 173 175 177 179 181 183 185 187 189 191 193 195 197 199 201 203 205 207 209 211 213 215 217 219 221 223 225 227 229 231 233 235 237 239 241 243 245 247 249 251 253 255 257 259 261 263 265 267 269Used by:500
Symbol 271 BitmapUsed by:272
Symbol 272 GraphicUses:271Used by:347
Symbol 273 BitmapUsed by:274
Symbol 274 GraphicUses:273Used by:347
Symbol 275 BitmapUsed by:276
Symbol 276 GraphicUses:275Used by:347
Symbol 277 BitmapUsed by:278
Symbol 278 GraphicUses:277Used by:347
Symbol 279 BitmapUsed by:280
Symbol 280 GraphicUses:279Used by:347
Symbol 281 BitmapUsed by:282
Symbol 282 GraphicUses:281Used by:347
Symbol 283 BitmapUsed by:284
Symbol 284 GraphicUses:283Used by:347
Symbol 285 BitmapUsed by:286
Symbol 286 GraphicUses:285Used by:347
Symbol 287 BitmapUsed by:288
Symbol 288 GraphicUses:287Used by:347
Symbol 289 BitmapUsed by:290
Symbol 290 GraphicUses:289Used by:347
Symbol 291 BitmapUsed by:292
Symbol 292 GraphicUses:291Used by:347
Symbol 293 BitmapUsed by:294
Symbol 294 GraphicUses:293Used by:347
Symbol 295 BitmapUsed by:296
Symbol 296 GraphicUses:295Used by:347
Symbol 297 BitmapUsed by:298
Symbol 298 GraphicUses:297Used by:347
Symbol 299 BitmapUsed by:300
Symbol 300 GraphicUses:299Used by:347
Symbol 301 BitmapUsed by:302
Symbol 302 GraphicUses:301Used by:347
Symbol 303 BitmapUsed by:304
Symbol 304 GraphicUses:303Used by:347
Symbol 305 BitmapUsed by:306
Symbol 306 GraphicUses:305Used by:347
Symbol 307 BitmapUsed by:308
Symbol 308 GraphicUses:307Used by:347
Symbol 309 BitmapUsed by:310
Symbol 310 GraphicUses:309Used by:347
Symbol 311 BitmapUsed by:312
Symbol 312 GraphicUses:311Used by:347
Symbol 313 BitmapUsed by:314
Symbol 314 GraphicUses:313Used by:347
Symbol 315 BitmapUsed by:316
Symbol 316 GraphicUses:315Used by:347
Symbol 317 BitmapUsed by:318
Symbol 318 GraphicUses:317Used by:347
Symbol 319 BitmapUsed by:320
Symbol 320 GraphicUses:319Used by:347
Symbol 321 BitmapUsed by:322
Symbol 322 GraphicUses:321Used by:347
Symbol 323 BitmapUsed by:324
Symbol 324 GraphicUses:323Used by:347
Symbol 325 BitmapUsed by:326
Symbol 326 GraphicUses:325Used by:347
Symbol 327 BitmapUsed by:328
Symbol 328 GraphicUses:327Used by:347
Symbol 329 BitmapUsed by:330
Symbol 330 GraphicUses:329Used by:347
Symbol 331 BitmapUsed by:332
Symbol 332 GraphicUses:331Used by:347
Symbol 333 BitmapUsed by:334
Symbol 334 GraphicUses:333Used by:347
Symbol 335 BitmapUsed by:336
Symbol 336 GraphicUses:335Used by:347
Symbol 337 BitmapUsed by:338
Symbol 338 GraphicUses:337Used by:347
Symbol 339 BitmapUsed by:340
Symbol 340 GraphicUses:339Used by:347
Symbol 341 BitmapUsed by:342
Symbol 342 GraphicUses:341Used by:347
Symbol 343 BitmapUsed by:344
Symbol 344 GraphicUses:343Used by:347
Symbol 345 BitmapUsed by:346
Symbol 346 GraphicUses:345Used by:347
Symbol 347 MovieClipUses:272 274 276 278 280 282 284 286 288 290 292 294 296 298 300 302 304 306 308 310 312 314 316 318 320 322 324 326 328 330 332 334 336 338 340 342 344 346Used by:500
Symbol 348 BitmapUsed by:349
Symbol 349 GraphicUses:348Used by:446
Symbol 350 BitmapUsed by:351
Symbol 351 GraphicUses:350Used by:446
Symbol 352 BitmapUsed by:353
Symbol 353 GraphicUses:352Used by:446
Symbol 354 BitmapUsed by:355
Symbol 355 GraphicUses:354Used by:446
Symbol 356 BitmapUsed by:357
Symbol 357 GraphicUses:356Used by:446
Symbol 358 BitmapUsed by:359
Symbol 359 GraphicUses:358Used by:446
Symbol 360 BitmapUsed by:361
Symbol 361 GraphicUses:360Used by:446
Symbol 362 BitmapUsed by:363
Symbol 363 GraphicUses:362Used by:446
Symbol 364 BitmapUsed by:365
Symbol 365 GraphicUses:364Used by:446
Symbol 366 BitmapUsed by:367
Symbol 367 GraphicUses:366Used by:446
Symbol 368 BitmapUsed by:369
Symbol 369 GraphicUses:368Used by:446
Symbol 370 BitmapUsed by:371
Symbol 371 GraphicUses:370Used by:446
Symbol 372 BitmapUsed by:373
Symbol 373 GraphicUses:372Used by:446
Symbol 374 BitmapUsed by:375
Symbol 375 GraphicUses:374Used by:446
Symbol 376 BitmapUsed by:377
Symbol 377 GraphicUses:376Used by:446
Symbol 378 BitmapUsed by:379
Symbol 379 GraphicUses:378Used by:446
Symbol 380 BitmapUsed by:381
Symbol 381 GraphicUses:380Used by:446
Symbol 382 BitmapUsed by:383
Symbol 383 GraphicUses:382Used by:446
Symbol 384 BitmapUsed by:385
Symbol 385 GraphicUses:384Used by:446
Symbol 386 BitmapUsed by:387
Symbol 387 GraphicUses:386Used by:446
Symbol 388 BitmapUsed by:389
Symbol 389 GraphicUses:388Used by:446
Symbol 390 BitmapUsed by:391
Symbol 391 GraphicUses:390Used by:446
Symbol 392 BitmapUsed by:393
Symbol 393 GraphicUses:392Used by:446
Symbol 394 BitmapUsed by:395
Symbol 395 GraphicUses:394Used by:446
Symbol 396 BitmapUsed by:397
Symbol 397 GraphicUses:396Used by:446
Symbol 398 BitmapUsed by:399
Symbol 399 GraphicUses:398Used by:446
Symbol 400 BitmapUsed by:401
Symbol 401 GraphicUses:400Used by:446
Symbol 402 BitmapUsed by:403
Symbol 403 GraphicUses:402Used by:446
Symbol 404 BitmapUsed by:405
Symbol 405 GraphicUses:404Used by:446
Symbol 406 BitmapUsed by:407
Symbol 407 GraphicUses:406Used by:446
Symbol 408 BitmapUsed by:409
Symbol 409 GraphicUses:408Used by:446
Symbol 410 BitmapUsed by:411
Symbol 411 GraphicUses:410Used by:446
Symbol 412 BitmapUsed by:413
Symbol 413 GraphicUses:412Used by:446
Symbol 414 BitmapUsed by:415
Symbol 415 GraphicUses:414Used by:446
Symbol 416 BitmapUsed by:417
Symbol 417 GraphicUses:416Used by:446
Symbol 418 BitmapUsed by:419
Symbol 419 GraphicUses:418Used by:446
Symbol 420 BitmapUsed by:421
Symbol 421 GraphicUses:420Used by:446
Symbol 422 BitmapUsed by:423
Symbol 423 GraphicUses:422Used by:446
Symbol 424 BitmapUsed by:425
Symbol 425 GraphicUses:424Used by:446
Symbol 426 BitmapUsed by:427
Symbol 427 GraphicUses:426Used by:446
Symbol 428 BitmapUsed by:429
Symbol 429 GraphicUses:428Used by:446
Symbol 430 BitmapUsed by:431
Symbol 431 GraphicUses:430Used by:446
Symbol 432 BitmapUsed by:433
Symbol 433 GraphicUses:432Used by:446
Symbol 434 BitmapUsed by:435
Symbol 435 GraphicUses:434Used by:446
Symbol 436 BitmapUsed by:437
Symbol 437 GraphicUses:436Used by:446
Symbol 438 BitmapUsed by:439
Symbol 439 GraphicUses:438Used by:446
Symbol 440 BitmapUsed by:441
Symbol 441 GraphicUses:440Used by:446
Symbol 442 BitmapUsed by:443
Symbol 443 GraphicUses:442Used by:446
Symbol 444 BitmapUsed by:445
Symbol 445 GraphicUses:444Used by:446
Symbol 446 MovieClipUses:349 351 353 355 357 359 361 363 365 367 369 371 373 375 377 379 381 383 385 387 389 391 393 395 397 399 401 403 405 407 409 411 413 415 417 419 421 423 425 427 429 431 433 435 437 439 441 443 445Used by:500
Symbol 447 BitmapUsed by:448
Symbol 448 GraphicUses:447Used by:499
Symbol 449 BitmapUsed by:450
Symbol 450 GraphicUses:449Used by:499
Symbol 451 BitmapUsed by:452
Symbol 452 GraphicUses:451Used by:499
Symbol 453 BitmapUsed by:454
Symbol 454 GraphicUses:453Used by:499
Symbol 455 BitmapUsed by:456
Symbol 456 GraphicUses:455Used by:499
Symbol 457 BitmapUsed by:458
Symbol 458 GraphicUses:457Used by:499
Symbol 459 BitmapUsed by:460
Symbol 460 GraphicUses:459Used by:499
Symbol 461 BitmapUsed by:462
Symbol 462 GraphicUses:461Used by:499
Symbol 463 BitmapUsed by:464
Symbol 464 GraphicUses:463Used by:499
Symbol 465 BitmapUsed by:466
Symbol 466 GraphicUses:465Used by:499
Symbol 467 BitmapUsed by:468
Symbol 468 GraphicUses:467Used by:499
Symbol 469 BitmapUsed by:470
Symbol 470 GraphicUses:469Used by:499
Symbol 471 BitmapUsed by:472
Symbol 472 GraphicUses:471Used by:499
Symbol 473 BitmapUsed by:474
Symbol 474 GraphicUses:473Used by:499
Symbol 475 BitmapUsed by:476
Symbol 476 GraphicUses:475Used by:499
Symbol 477 BitmapUsed by:478
Symbol 478 GraphicUses:477Used by:499
Symbol 479 BitmapUsed by:480
Symbol 480 GraphicUses:479Used by:499
Symbol 481 BitmapUsed by:482
Symbol 482 GraphicUses:481Used by:499
Symbol 483 BitmapUsed by:484
Symbol 484 GraphicUses:483Used by:499
Symbol 485 BitmapUsed by:486
Symbol 486 GraphicUses:485Used by:499
Symbol 487 BitmapUsed by:488
Symbol 488 GraphicUses:487Used by:499
Symbol 489 BitmapUsed by:490
Symbol 490 GraphicUses:489Used by:499
Symbol 491 BitmapUsed by:492
Symbol 492 GraphicUses:491Used by:499
Symbol 493 BitmapUsed by:494
Symbol 494 GraphicUses:493Used by:499
Symbol 495 BitmapUsed by:496
Symbol 496 GraphicUses:495Used by:499
Symbol 497 BitmapUsed by:498
Symbol 498 GraphicUses:497Used by:499
Symbol 499 MovieClipUses:448 450 452 454 456 458 460 462 464 466 468 470 472 474 476 478 480 482 484 486 488 490 492 494 496 498Used by:500
Symbol 500 MovieClipUses:28 109 270 347 446 499Used by:501 503 509  Timeline
Symbol 501 MovieClip {puzzleItem2}Uses:36 500
Symbol 502 MovieClipUses:33 35Used by:503
Symbol 503 MovieClip {puzzleItem}Uses:502 500
Symbol 504 GraphicUsed by:505
Symbol 505 MovieClip {grid_easy}Uses:504
Symbol 506 GraphicUsed by:507
Symbol 507 MovieClip {grid_normal}Uses:506
Symbol 508 GraphicUsed by:509
Symbol 509 MovieClip {puzzle_fla.title_m_6}Uses:11 508 500 13Used by:Timeline
Symbol 510 GraphicUsed by:514
Symbol 511 FontUsed by:512 513 516 517 524 527 531 536 539 542 545 550 551 554 555 557
Symbol 512 TextUses:511Used by:514
Symbol 513 TextUses:511Used by:514
Symbol 514 MovieClipUses:510 512 513Used by:Timeline
Symbol 515 GraphicUsed by:518
Symbol 516 TextUses:511Used by:518
Symbol 517 TextUses:511Used by:518
Symbol 518 MovieClipUses:515 516 517Used by:Timeline
Symbol 519 BitmapUsed by:520
Symbol 520 GraphicUses:519Used by:Timeline
Symbol 521 GraphicUsed by:522
Symbol 522 MovieClipUses:521Used by:Timeline
Symbol 523 GraphicUsed by:525
Symbol 524 TextUses:511Used by:525 534
Symbol 525 MovieClipUses:523 524Used by:Timeline
Symbol 526 GraphicUsed by:528
Symbol 527 TextUses:511Used by:528
Symbol 528 MovieClipUses:526 527Used by:Timeline
Symbol 529 GraphicUsed by:Timeline
Symbol 530 GraphicUsed by:532
Symbol 531 TextUses:511Used by:532
Symbol 532 MovieClipUses:530 531Used by:Timeline
Symbol 533 GraphicUsed by:534
Symbol 534 MovieClipUses:533 524Used by:Timeline
Symbol 535 GraphicUsed by:537
Symbol 536 TextUses:511Used by:537
Symbol 537 MovieClipUses:535 536Used by:Timeline
Symbol 538 GraphicUsed by:540
Symbol 539 TextUses:511Used by:540
Symbol 540 MovieClipUses:538 539Used by:Timeline
Symbol 541 GraphicUsed by:543
Symbol 542 TextUses:511Used by:543
Symbol 543 MovieClipUses:541 542Used by:Timeline
Symbol 544 GraphicUsed by:546
Symbol 545 TextUses:511Used by:546
Symbol 546 MovieClipUses:544 545Used by:Timeline
Symbol 547 GraphicUsed by:548
Symbol 548 MovieClipUses:547Used by:Timeline
Symbol 549 GraphicUsed by:552
Symbol 550 TextUses:511Used by:552
Symbol 551 TextUses:511Used by:552
Symbol 552 MovieClipUses:549 550 551Used by:Timeline
Symbol 553 GraphicUsed by:564
Symbol 554 TextUses:511Used by:564
Symbol 555 TextUses:511Used by:564
Symbol 556 GraphicUsed by:558
Symbol 557 TextUses:511Used by:558
Symbol 558 MovieClipUses:556 557Used by:564
Symbol 559 BitmapUsed by:563
Symbol 560 BitmapUsed by:563
Symbol 561 BitmapUsed by:563
Symbol 562 BitmapUsed by:563
Symbol 563 GraphicUses:559 560 561 562Used by:564
Symbol 564 MovieClipUses:6 553 554 555 558 563Used by:Timeline
Symbol 565 GraphicUsed by:625
Symbol 566 BitmapUsed by:567
Symbol 567 GraphicUses:566Used by:611
Symbol 568 BitmapUsed by:569
Symbol 569 GraphicUses:568Used by:611
Symbol 570 BitmapUsed by:571
Symbol 571 GraphicUses:570Used by:572
Symbol 572 MovieClipUses:571Used by:611
Symbol 573 BitmapUsed by:574
Symbol 574 GraphicUses:573Used by:611
Symbol 575 BitmapUsed by:576
Symbol 576 GraphicUses:575Used by:611
Symbol 577 BitmapUsed by:578
Symbol 578 GraphicUses:577Used by:611
Symbol 579 BitmapUsed by:580
Symbol 580 GraphicUses:579Used by:611
Symbol 581 BitmapUsed by:582
Symbol 582 GraphicUses:581Used by:611
Symbol 583 BitmapUsed by:584
Symbol 584 GraphicUses:583Used by:611
Symbol 585 BitmapUsed by:586
Symbol 586 GraphicUses:585Used by:611
Symbol 587 BitmapUsed by:588
Symbol 588 GraphicUses:587Used by:611
Symbol 589 BitmapUsed by:590
Symbol 590 GraphicUses:589Used by:611
Symbol 591 BitmapUsed by:592
Symbol 592 GraphicUses:591Used by:611
Symbol 593 BitmapUsed by:594
Symbol 594 GraphicUses:593Used by:611
Symbol 595 BitmapUsed by:596
Symbol 596 GraphicUses:595Used by:611
Symbol 597 BitmapUsed by:598
Symbol 598 GraphicUses:597Used by:611
Symbol 599 BitmapUsed by:600
Symbol 600 GraphicUses:599Used by:611
Symbol 601 BitmapUsed by:602
Symbol 602 GraphicUses:601Used by:611
Symbol 603 BitmapUsed by:604
Symbol 604 GraphicUses:603Used by:611
Symbol 605 BitmapUsed by:606
Symbol 606 GraphicUses:605Used by:611
Symbol 607 BitmapUsed by:608
Symbol 608 GraphicUses:607Used by:611
Symbol 609 BitmapUsed by:610
Symbol 610 GraphicUses:609Used by:611
Symbol 611 MovieClipUses:567 1 569 572 574 576 578 580 582 584 586 588 590 592 594 596 598 600 602 604 606 608 610Used by:625
Symbol 612 BitmapUsed by:614
Symbol 613 BitmapUsed by:614
Symbol 614 GraphicUses:612 613Used by:625
Symbol 615 BitmapUsed by:616
Symbol 616 GraphicUses:615Used by:625
Symbol 617 BitmapUsed by:618
Symbol 618 GraphicUses:617Used by:619
Symbol 619 MovieClipUses:618Used by:620
Symbol 620 MovieClipUses:619Used by:625
Symbol 621 BitmapUsed by:622
Symbol 622 GraphicUses:621Used by:625
Symbol 623 BitmapUsed by:624
Symbol 624 GraphicUses:623Used by:625
Symbol 625 MovieClip {puzzle_fla.Splash_NON_NG2_28}Uses:565 611 614 616 620 622 624Used by:Timeline
Symbol 626 BitmapUsed by:627
Symbol 627 GraphicUses:626Used by:630
Symbol 628 BitmapUsed by:629
Symbol 629 GraphicUses:628Used by:630
Symbol 630 MovieClip {puzzle_fla.btn_33}Uses:627 629Used by:Timeline
Symbol 631 GraphicUsed by:632
Symbol 632 MovieClipUses:631Used by:Timeline

Instance Names

"preloader"Frame 2Symbol 9 MovieClip
"adv"Frame 2Symbol 15 MovieClip
"easyBtn"Frame 3Symbol 514 MovieClip
"normalBtn"Frame 3Symbol 518 MovieClip
"achBtn2"Frame 4Symbol 522 MovieClip
"achBtn3"Frame 4Symbol 522 MovieClip
"achBtn4"Frame 4Symbol 522 MovieClip
"achBtn5"Frame 4Symbol 522 MovieClip
"achBtn1"Frame 4Symbol 522 MovieClip
"backBtn"Frame 4Symbol 522 MovieClip
"movie"Frame 4Symbol 500 MovieClip
"adv"Frame 4Symbol 15 MovieClip
"btn1"Frame 5Symbol 532 MovieClip
"btn2"Frame 5Symbol 534 MovieClip
"btn3"Frame 5Symbol 537 MovieClip
"btn4"Frame 5Symbol 540 MovieClip
"btn5"Frame 5Symbol 543 MovieClip
"btn2d"Frame 5Symbol 546 MovieClip
"select"Frame 5Symbol 548 MovieClip
"adv"Frame 5Symbol 15 MovieClip
"done"Frame 6Symbol 552 MovieClip
"adv"Frame 6Symbol 15 MovieClip
"spl1"Frame 7Symbol 564 MovieClip
"spl2"Frame 8Symbol 625 MovieClip {puzzle_fla.Splash_NON_NG2_28}
"btn"Frame 9Symbol 630 MovieClip {puzzle_fla.btn_33}
"closebtn"Frame 9Symbol 632 MovieClip
"cubes"Symbol 25 MovieClip Frame 1Symbol 24 MovieClip
"t"Symbol 27 MovieClip {FX1} Frame 1Symbol 25 MovieClip
"b"Symbol 27 MovieClip {FX1} Frame 1Symbol 25 MovieClip
"l"Symbol 27 MovieClip {FX1} Frame 1Symbol 25 MovieClip
"r"Symbol 27 MovieClip {FX1} Frame 1Symbol 25 MovieClip
"t"Symbol 36 MovieClip Frame 1Symbol 33 MovieClip
"r"Symbol 36 MovieClip Frame 1Symbol 33 MovieClip
"bo"Symbol 36 MovieClip Frame 1Symbol 33 MovieClip
"l"Symbol 36 MovieClip Frame 1Symbol 33 MovieClip
"pmask"Symbol 501 MovieClip {puzzleItem2} Frame 1Symbol 36 MovieClip
"bg"Symbol 501 MovieClip {puzzleItem2} Frame 1Symbol 500 MovieClip
"t"Symbol 502 MovieClip Frame 1Symbol 33 MovieClip
"r"Symbol 502 MovieClip Frame 1Symbol 33 MovieClip
"bo"Symbol 502 MovieClip Frame 1Symbol 33 MovieClip
"l"Symbol 502 MovieClip Frame 1Symbol 33 MovieClip
"pmask"Symbol 503 MovieClip {puzzleItem} Frame 1Symbol 502 MovieClip
"bg"Symbol 503 MovieClip {puzzleItem} Frame 1Symbol 500 MovieClip
"loops"Symbol 509 MovieClip {puzzle_fla.title_m_6} Frame 1Symbol 500 MovieClip

Special Tags

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




http://swfchan.com/18/89088/info.shtml
Created: 29/3 -2019 04:51:05 Last modified: 29/3 -2019 04:51:05 Server time: 06/05 -2024 07:32:40