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

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

that_kei_guy.swf

This is the info page for
Flash #207418

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


ActionScript [AS3]
Section 1
//PropTween (com.greensock.core.PropTween) package com.greensock.core { public final class PropTween { public var start:Number; public var name:String; public var prevNode:PropTween; public var change:Number; public var target:Object; public var priority:int; public var property:String; public var nextNode:PropTween; public var isPlugin:Boolean; public function PropTween(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number, _arg5:String, _arg6:Boolean, _arg7:PropTween=null, _arg8:int=0){ this.target = _arg1; this.property = _arg2; this.start = _arg3; this.change = _arg4; this.name = _arg5; this.isPlugin = _arg6; if (_arg7){ _arg7.prevNode = this; this.nextNode = _arg7; }; this.priority = _arg8; } } }//package com.greensock.core
Section 2
//SimpleTimeline (com.greensock.core.SimpleTimeline) package com.greensock.core { public class SimpleTimeline extends TweenCore { public var autoRemoveChildren:Boolean; protected var _lastChild:TweenCore; protected var _firstChild:TweenCore; public function SimpleTimeline(_arg1:Object=null){ super(0, _arg1); } override public function renderTime(_arg1:Number, _arg2:Boolean=false, _arg3:Boolean=false):void{ var _local4:TweenCore; var _local5:Number; var _local6:TweenCore; _local4 = _firstChild; this.cachedTotalTime = _arg1; this.cachedTime = _arg1; while (_local4) { _local6 = _local4.nextNode; if (((_local4.active) || ((((((_arg1 >= _local4.cachedStartTime)) && (!(_local4.cachedPaused)))) && (!(_local4.gc)))))){ if (!_local4.cachedReversed){ _local4.renderTime(((_arg1 - _local4.cachedStartTime) * _local4.cachedTimeScale), _arg2, false); } else { _local5 = (_local4.cacheIsDirty) ? _local4.totalDuration : _local4.cachedTotalDuration; _local4.renderTime((_local5 - ((_arg1 - _local4.cachedStartTime) * _local4.cachedTimeScale)), _arg2, false); }; }; _local4 = _local6; }; } public function get rawTime():Number{ return (this.cachedTotalTime); } public function remove(_arg1:TweenCore, _arg2:Boolean=false):void{ if (_arg1.cachedOrphan){ return; }; if (!_arg2){ _arg1.setEnabled(false, true); }; if (_arg1.nextNode){ _arg1.nextNode.prevNode = _arg1.prevNode; } else { if (_lastChild == _arg1){ _lastChild = _arg1.prevNode; }; }; if (_arg1.prevNode){ _arg1.prevNode.nextNode = _arg1.nextNode; } else { if (_firstChild == _arg1){ _firstChild = _arg1.nextNode; }; }; _arg1.cachedOrphan = true; } public function insert(_arg1:TweenCore, _arg2=0):TweenCore{ var _local3:SimpleTimeline; _local3 = _arg1.timeline; if (((!(_arg1.cachedOrphan)) && (_local3))){ _local3.remove(_arg1, true); }; _arg1.timeline = this; _arg1.cachedStartTime = (Number(_arg2) + _arg1.delay); if (_arg1.gc){ _arg1.setEnabled(true, true); }; if (((_arg1.cachedPaused) && (!((_local3 == this))))){ _arg1.cachedPauseTime = (_arg1.cachedStartTime + ((this.rawTime - _arg1.cachedStartTime) / _arg1.cachedTimeScale)); }; if (_lastChild){ _lastChild.nextNode = _arg1; } else { _firstChild = _arg1; }; _arg1.prevNode = _lastChild; _lastChild = _arg1; _arg1.nextNode = null; _arg1.cachedOrphan = false; return (_arg1); } } }//package com.greensock.core
Section 3
//TweenCore (com.greensock.core.TweenCore) package com.greensock.core { import com.greensock.*; public class TweenCore { public var initted:Boolean; protected var _hasUpdate:Boolean; public var active:Boolean; protected var _delay:Number; public var cachedReversed:Boolean; public var nextNode:TweenCore; public var cachedTime:Number; protected var _rawPrevTime:Number;// = -1 public var vars:Object; public var cachedTotalTime:Number; public var data; public var timeline:SimpleTimeline; public var cachedOrphan:Boolean; public var cachedStartTime:Number; public var prevNode:TweenCore; public var cachedDuration:Number; public var gc:Boolean; public var cachedPauseTime:Number; public var cacheIsDirty:Boolean; public var cachedPaused:Boolean; public var cachedTimeScale:Number; public var cachedTotalDuration:Number; public static const version:Number = 1.693; protected static var _classInitted:Boolean; public function TweenCore(_arg1:Number=0, _arg2:Object=null){ var _local3:SimpleTimeline; _rawPrevTime = -1; super(); this.vars = ((_arg2)!=null) ? _arg2 : {}; if (this.vars.isGSVars){ this.vars = this.vars.vars; }; this.cachedDuration = (this.cachedTotalDuration = _arg1); _delay = (this.vars.delay) ? Number(this.vars.delay) : 0; this.cachedTimeScale = (this.vars.timeScale) ? Number(this.vars.timeScale) : 1; this.active = Boolean((((((_arg1 == 0)) && ((_delay == 0)))) && (!((this.vars.immediateRender == false))))); this.cachedTotalTime = (this.cachedTime = 0); this.data = this.vars.data; if (!_classInitted){ if (isNaN(TweenLite.rootFrame)){ TweenLite.initClass(); _classInitted = true; } else { return; }; }; _local3 = ((this.vars.timeline is SimpleTimeline)) ? this.vars.timeline : (this.vars.useFrames) ? TweenLite.rootFramesTimeline : TweenLite.rootTimeline; _local3.insert(this, _local3.cachedTotalTime); if (this.vars.reversed){ this.cachedReversed = true; }; if (this.vars.paused){ this.paused = true; }; } public function renderTime(_arg1:Number, _arg2:Boolean=false, _arg3:Boolean=false):void{ } public function get delay():Number{ return (_delay); } public function get duration():Number{ return (this.cachedDuration); } public function set reversed(_arg1:Boolean):void{ if (_arg1 != this.cachedReversed){ this.cachedReversed = _arg1; setTotalTime(this.cachedTotalTime, true); }; } public function set startTime(_arg1:Number):void{ if (((!((this.timeline == null))) && (((!((_arg1 == this.cachedStartTime))) || (this.gc))))){ this.timeline.insert(this, (_arg1 - _delay)); } else { this.cachedStartTime = _arg1; }; } public function set delay(_arg1:Number):void{ this.startTime = (this.startTime + (_arg1 - _delay)); _delay = _arg1; } public function resume():void{ this.paused = false; } public function get paused():Boolean{ return (this.cachedPaused); } public function play():void{ this.reversed = false; this.paused = false; } public function set duration(_arg1:Number):void{ var _local2:Number; _local2 = (_arg1 / this.cachedDuration); this.cachedDuration = (this.cachedTotalDuration = _arg1); setDirtyCache(true); if (((((this.active) && (!(this.cachedPaused)))) && (!((_arg1 == 0))))){ this.setTotalTime((this.cachedTotalTime * _local2), true); }; } public function invalidate():void{ } public function restart(_arg1:Boolean=false, _arg2:Boolean=true):void{ this.reversed = false; this.paused = false; this.setTotalTime((_arg1) ? -(_delay) : 0, _arg2); } public function complete(_arg1:Boolean=false, _arg2:Boolean=false):void{ if (!_arg1){ renderTime(this.totalDuration, _arg2, false); return; }; if (this.timeline.autoRemoveChildren){ this.setEnabled(false, false); } else { this.active = false; }; if (!_arg2){ if (((((this.vars.onComplete) && ((this.cachedTotalTime >= this.cachedTotalDuration)))) && (!(this.cachedReversed)))){ this.vars.onComplete.apply(null, this.vars.onCompleteParams); } else { if (((((this.cachedReversed) && ((this.cachedTotalTime == 0)))) && (this.vars.onReverseComplete))){ this.vars.onReverseComplete.apply(null, this.vars.onReverseCompleteParams); }; }; }; } public function get totalTime():Number{ return (this.cachedTotalTime); } public function get startTime():Number{ return (this.cachedStartTime); } public function get reversed():Boolean{ return (this.cachedReversed); } public function set currentTime(_arg1:Number):void{ setTotalTime(_arg1, false); } protected function setDirtyCache(_arg1:Boolean=true):void{ var _local2:TweenCore; _local2 = (_arg1) ? this : this.timeline; while (_local2) { _local2.cacheIsDirty = true; _local2 = _local2.timeline; }; } public function reverse(_arg1:Boolean=true):void{ this.reversed = true; if (_arg1){ this.paused = false; } else { if (this.gc){ this.setEnabled(true, false); }; }; } public function set paused(_arg1:Boolean):void{ if (((!((_arg1 == this.cachedPaused))) && (this.timeline))){ if (_arg1){ this.cachedPauseTime = this.timeline.rawTime; } else { this.cachedStartTime = (this.cachedStartTime + (this.timeline.rawTime - this.cachedPauseTime)); this.cachedPauseTime = NaN; setDirtyCache(false); }; this.cachedPaused = _arg1; this.active = Boolean(((((!(this.cachedPaused)) && ((this.cachedTotalTime > 0)))) && ((this.cachedTotalTime < this.cachedTotalDuration)))); }; if (((!(_arg1)) && (this.gc))){ this.setEnabled(true, false); }; } public function kill():void{ setEnabled(false, false); } public function set totalTime(_arg1:Number):void{ setTotalTime(_arg1, false); } public function get currentTime():Number{ return (this.cachedTime); } protected function setTotalTime(_arg1:Number, _arg2:Boolean=false):void{ var _local3:Number; var _local4:Number; if (this.timeline){ _local3 = (this.cachedPaused) ? this.cachedPauseTime : this.timeline.cachedTotalTime; if (this.cachedReversed){ _local4 = (this.cacheIsDirty) ? this.totalDuration : this.cachedTotalDuration; this.cachedStartTime = (_local3 - ((_local4 - _arg1) / this.cachedTimeScale)); } else { this.cachedStartTime = (_local3 - (_arg1 / this.cachedTimeScale)); }; if (!this.timeline.cacheIsDirty){ setDirtyCache(false); }; if (this.cachedTotalTime != _arg1){ renderTime(_arg1, _arg2, false); }; }; } public function pause():void{ this.paused = true; } public function set totalDuration(_arg1:Number):void{ this.duration = _arg1; } public function get totalDuration():Number{ return (this.cachedTotalDuration); } public function setEnabled(_arg1:Boolean, _arg2:Boolean=false):Boolean{ this.gc = !(_arg1); if (_arg1){ this.active = Boolean(((((!(this.cachedPaused)) && ((this.cachedTotalTime > 0)))) && ((this.cachedTotalTime < this.cachedTotalDuration)))); if (((!(_arg2)) && (this.cachedOrphan))){ this.timeline.insert(this, (this.cachedStartTime - _delay)); }; } else { this.active = false; if (((!(_arg2)) && (!(this.cachedOrphan)))){ this.timeline.remove(this, true); }; }; return (false); } } }//package com.greensock.core
Section 4
//Elastic (com.greensock.easing.Elastic) package com.greensock.easing { public class Elastic { private static const _2PI:Number = 6.28318530717959; public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0, _arg6:Number=0):Number{ var _local7:Number; if (_arg1 == 0){ return (_arg2); }; _arg1 = (_arg1 / _arg4); if (_arg1 == 1){ return ((_arg2 + _arg3)); }; if (!_arg6){ _arg6 = (_arg4 * 0.3); }; if (((((!(_arg5)) || ((((_arg3 > 0)) && ((_arg5 < _arg3)))))) || ((((_arg3 < 0)) && ((_arg5 < -(_arg3))))))){ _arg5 = _arg3; _local7 = (_arg6 / 4); } else { _local7 = ((_arg6 / _2PI) * Math.asin((_arg3 / _arg5))); }; --_arg1; return ((-(((_arg5 * Math.pow(2, (10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * _2PI) / _arg6)))) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0, _arg6:Number=0):Number{ var _local7:Number; if (_arg1 == 0){ return (_arg2); }; _arg1 = (_arg1 / (_arg4 * 0.5)); if (_arg1 == 2){ return ((_arg2 + _arg3)); }; if (!_arg6){ _arg6 = (_arg4 * (0.3 * 1.5)); }; if (((((!(_arg5)) || ((((_arg3 > 0)) && ((_arg5 < _arg3)))))) || ((((_arg3 < 0)) && ((_arg5 < -(_arg3))))))){ _arg5 = _arg3; _local7 = (_arg6 / 4); } else { _local7 = ((_arg6 / _2PI) * Math.asin((_arg3 / _arg5))); }; if (_arg1 < 1){ --_arg1; return (((-0.5 * ((_arg5 * Math.pow(2, (10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * _2PI) / _arg6)))) + _arg2)); }; --_arg1; return ((((((_arg5 * Math.pow(2, (-10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * _2PI) / _arg6))) * 0.5) + _arg3) + _arg2)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0, _arg6:Number=0):Number{ var _local7:Number; if (_arg1 == 0){ return (_arg2); }; _arg1 = (_arg1 / _arg4); if (_arg1 == 1){ return ((_arg2 + _arg3)); }; if (!_arg6){ _arg6 = (_arg4 * 0.3); }; if (((((!(_arg5)) || ((((_arg3 > 0)) && ((_arg5 < _arg3)))))) || ((((_arg3 < 0)) && ((_arg5 < -(_arg3))))))){ _arg5 = _arg3; _local7 = (_arg6 / 4); } else { _local7 = ((_arg6 / _2PI) * Math.asin((_arg3 / _arg5))); }; return (((((_arg5 * Math.pow(2, (-10 * _arg1))) * Math.sin(((((_arg1 * _arg4) - _local7) * _2PI) / _arg6))) + _arg3) + _arg2)); } } }//package com.greensock.easing
Section 5
//Quad (com.greensock.easing.Quad) package com.greensock.easing { public class Quad { public static const power:uint = 1; public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((_arg3 * _arg1) * _arg1) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / (_arg4 * 0.5)); if (_arg1 < 1){ return (((((_arg3 * 0.5) * _arg1) * _arg1) + _arg2)); }; --_arg1; return ((((-(_arg3) * 0.5) * ((_arg1 * (_arg1 - 2)) - 1)) + _arg2)); } } }//package com.greensock.easing
Section 6
//TweenLite (com.greensock.TweenLite) package com.greensock { import com.greensock.core.*; import flash.events.*; import flash.display.*; import flash.utils.*; import com.greensock.plugins.*; public class TweenLite extends TweenCore { public var target:Object; public var ratio:Number;// = 0 protected var _overwrite:int; protected var _notifyPluginsOfEnabled:Boolean; protected var _hasPlugins:Boolean; public var cachedPT1:PropTween; protected var _overwrittenProps:Object; public var propTweenLookup:Object; protected var _ease:Function; public static const version:Number = 11.698; public static var rootTimeline:SimpleTimeline; public static var fastEaseLookup:Dictionary = new Dictionary(false); public static var onPluginEvent:Function; public static var rootFramesTimeline:SimpleTimeline; public static var defaultEase:Function = TweenLite.easeOut; public static var plugins:Object = {}; public static var masterList:Dictionary = new Dictionary(false); public static var overwriteManager:Object; public static var rootFrame:Number; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; private static var _shape:Shape = new Shape(); protected static var _reservedProps:Object = {ease:1, delay:1, overwrite:1, onComplete:1, onCompleteParams:1, useFrames:1, runBackwards:1, startAt:1, onUpdate:1, onUpdateParams:1, onStart:1, onStartParams:1, onInit:1, onInitParams:1, onReverseComplete:1, onReverseCompleteParams:1, onRepeat:1, onRepeatParams:1, proxiedEase:1, easeParams:1, yoyo:1, onCompleteListener:1, onUpdateListener:1, onStartListener:1, onReverseCompleteListener:1, onRepeatListener:1, orientToBezier:1, timeScale:1, immediateRender:1, repeat:1, repeatDelay:1, timeline:1, data:1, paused:1, reversed:1}; public function TweenLite(_arg1:Object, _arg2:Number, _arg3:Object){ var _local4:Array; var _local5:TweenLite; ratio = 0; super(_arg2, _arg3); if (_arg1 == null){ throw (new Error("Cannot tween a null object.")); }; this.target = _arg1; if ((((this.target is TweenCore)) && (this.vars.timeScale))){ this.cachedTimeScale = 1; }; propTweenLookup = {}; _ease = defaultEase; _overwrite = (((!((Number(_arg3.overwrite) > -1))) || (((!(overwriteManager.enabled)) && ((_arg3.overwrite > 1)))))) ? overwriteManager.mode : int(_arg3.overwrite); _local4 = masterList[_arg1]; if (!_local4){ masterList[_arg1] = [this]; } else { if (_overwrite == 1){ for each (_local5 in _local4) { if (!_local5.gc){ _local5.setEnabled(false, false); }; }; masterList[_arg1] = [this]; } else { _local4[_local4.length] = this; }; }; if (((this.active) || (this.vars.immediateRender))){ renderTime(0, false, true); }; } override public function renderTime(_arg1:Number, _arg2:Boolean=false, _arg3:Boolean=false):void{ var _local4:Boolean; var _local5:Number; var _local6:PropTween; _local5 = this.cachedTime; if (_arg1 >= this.cachedDuration){ this.cachedTotalTime = (this.cachedTime = this.cachedDuration); this.ratio = 1; _local4 = !(this.cachedReversed); if (this.cachedDuration == 0){ if ((((((_arg1 == 0)) || ((_rawPrevTime < 0)))) && (!((_rawPrevTime == _arg1))))){ _arg3 = true; }; _rawPrevTime = _arg1; }; } else { if (_arg1 <= 0){ this.cachedTotalTime = (this.cachedTime = (this.ratio = 0)); if (_arg1 < 0){ this.active = false; if (this.cachedDuration == 0){ if (_rawPrevTime >= 0){ _arg3 = true; _local4 = (_rawPrevTime > 0); }; _rawPrevTime = _arg1; }; }; if (((this.cachedReversed) && (!((_local5 == 0))))){ _local4 = true; }; } else { this.cachedTotalTime = (this.cachedTime = _arg1); this.ratio = _ease(_arg1, 0, 1, this.cachedDuration); }; }; if ((((this.cachedTime == _local5)) && (!(_arg3)))){ return; }; if (!this.initted){ init(); if (((!(_local4)) && (this.cachedTime))){ this.ratio = _ease(this.cachedTime, 0, 1, this.cachedDuration); }; }; if (((!(this.active)) && (!(this.cachedPaused)))){ this.active = true; }; if ((((((((_local5 == 0)) && (this.vars.onStart))) && (((!((this.cachedTime == 0))) || ((this.cachedDuration == 0)))))) && (!(_arg2)))){ this.vars.onStart.apply(null, this.vars.onStartParams); }; _local6 = this.cachedPT1; while (_local6) { _local6.target[_local6.property] = (_local6.start + (this.ratio * _local6.change)); _local6 = _local6.nextNode; }; if (((_hasUpdate) && (!(_arg2)))){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (((_local4) && (!(this.gc)))){ if (((_hasPlugins) && (this.cachedPT1))){ onPluginEvent("onComplete", this); }; complete(true, _arg2); }; } protected function init():void{ var _local1:String; var _local2:int; var _local3:*; var _local4:Boolean; var _local5:Array; var _local6:PropTween; if (this.vars.onInit){ this.vars.onInit.apply(null, this.vars.onInitParams); }; if (typeof(this.vars.ease) == "function"){ _ease = this.vars.ease; }; if (this.vars.easeParams){ this.vars.proxiedEase = _ease; _ease = easeProxy; }; this.cachedPT1 = null; this.propTweenLookup = {}; for (_local1 in this.vars) { if ((((_local1 in _reservedProps)) && (!((((_local1 == "timeScale")) && ((this.target is TweenCore))))))){ } else { if ((((_local1 in plugins)) && (new ((plugins[_local1] as Class)).onInitTween(this.target, this.vars[_local1], this)))){ this.cachedPT1 = new PropTween(_local3, "changeFactor", 0, 1, ((_local3.overwriteProps.length)==1) ? _local3.overwriteProps[0] : "_MULTIPLE_", true, this.cachedPT1); if (this.cachedPT1.name == "_MULTIPLE_"){ _local2 = _local3.overwriteProps.length; while (--_local2 > -1) { this.propTweenLookup[_local3.overwriteProps[_local2]] = this.cachedPT1; }; } else { this.propTweenLookup[this.cachedPT1.name] = this.cachedPT1; }; if (_local3.priority){ this.cachedPT1.priority = _local3.priority; _local4 = true; }; if (((_local3.onDisable) || (_local3.onEnable))){ _notifyPluginsOfEnabled = true; }; _hasPlugins = true; } else { this.cachedPT1 = new PropTween(this.target, _local1, Number(this.target[_local1]), ((typeof(this.vars[_local1]))=="number") ? (Number(this.vars[_local1]) - this.target[_local1]) : Number(this.vars[_local1]), _local1, false, this.cachedPT1); this.propTweenLookup[_local1] = this.cachedPT1; }; }; }; if (_local4){ onPluginEvent("onInitAllProps", this); }; if (this.vars.runBackwards){ _local6 = this.cachedPT1; while (_local6) { _local6.start = (_local6.start + _local6.change); _local6.change = -(_local6.change); _local6 = _local6.nextNode; }; }; _hasUpdate = Boolean(!((this.vars.onUpdate == null))); if (_overwrittenProps){ killVars(_overwrittenProps); if (this.cachedPT1 == null){ this.setEnabled(false, false); }; }; if ((((((((_overwrite > 1)) && (this.cachedPT1))) && (masterList[this.target]))) && ((_local5.length > 1)))){ if (overwriteManager.manageOverwrites(this, this.propTweenLookup, _local5, _overwrite)){ init(); }; }; 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))); } override public function invalidate():void{ if (((_notifyPluginsOfEnabled) && (this.cachedPT1))){ onPluginEvent("onDisable", this); }; this.cachedPT1 = null; _overwrittenProps = null; _hasUpdate = (this.initted = (this.active = (_notifyPluginsOfEnabled = false))); this.propTweenLookup = {}; } public function killVars(_arg1:Object, _arg2:Boolean=true):Boolean{ var _local3:String; var _local4:PropTween; var _local5:Boolean; if (_overwrittenProps == null){ _overwrittenProps = {}; }; for (_local3 in _arg1) { if ((_local3 in propTweenLookup)){ _local4 = propTweenLookup[_local3]; if (((_local4.isPlugin) && ((_local4.name == "_MULTIPLE_")))){ _local4.target.killProps(_arg1); if (_local4.target.overwriteProps.length == 0){ _local4.name = ""; }; if (((!((_local3 == _local4.target.propName))) || ((_local4.name == "")))){ delete propTweenLookup[_local3]; }; }; if (_local4.name != "_MULTIPLE_"){ if (_local4.nextNode){ _local4.nextNode.prevNode = _local4.prevNode; }; if (_local4.prevNode){ _local4.prevNode.nextNode = _local4.nextNode; } else { if (this.cachedPT1 == _local4){ this.cachedPT1 = _local4.nextNode; }; }; if (((_local4.isPlugin) && (_local4.target.onDisable))){ _local4.target.onDisable(); if (_local4.target.activeDisable){ _local5 = true; }; }; delete propTweenLookup[_local3]; }; }; if (((_arg2) && (!((_arg1 == _overwrittenProps))))){ _overwrittenProps[_local3] = 1; }; }; return (_local5); } override public function setEnabled(_arg1:Boolean, _arg2:Boolean=false):Boolean{ var _local3:Array; if (_arg1){ _local3 = TweenLite.masterList[this.target]; if (!_local3){ TweenLite.masterList[this.target] = [this]; } else { if (_local3.indexOf(this) == -1){ _local3[_local3.length] = this; }; }; }; super.setEnabled(_arg1, _arg2); if (((_notifyPluginsOfEnabled) && (this.cachedPT1))){ return (onPluginEvent((_arg1) ? "onEnable" : "onDisable", this)); }; return (false); } public static function initClass():void{ rootFrame = 0; rootTimeline = new SimpleTimeline(null); rootFramesTimeline = new SimpleTimeline(null); rootTimeline.cachedStartTime = (getTimer() * 0.001); rootFramesTimeline.cachedStartTime = rootFrame; rootTimeline.autoRemoveChildren = true; rootFramesTimeline.autoRemoveChildren = true; _shape.addEventListener(Event.ENTER_FRAME, updateAll, false, 0, true); if (overwriteManager == null){ overwriteManager = {mode:1, enabled:false}; }; } public static function killTweensOf(_arg1:Object, _arg2:Boolean=false, _arg3:Object=null):void{ var _local4:Array; var _local5:int; var _local6:TweenLite; if ((_arg1 in masterList)){ _local4 = masterList[_arg1]; _local5 = _local4.length; while (--_local5 > -1) { _local6 = _local4[_local5]; if (!_local6.gc){ if (_arg2){ _local6.complete(false, false); }; if (_arg3 != null){ _local6.killVars(_arg3); }; if ((((_arg3 == null)) || ((((_local6.cachedPT1 == null)) && (_local6.initted))))){ _local6.setEnabled(false, false); }; }; }; if (_arg3 == null){ delete masterList[_arg1]; }; }; } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ if (_arg3.isGSVars){ _arg3 = _arg3.vars; }; _arg3.runBackwards = true; if (!("immediateRender" in _arg3)){ _arg3.immediateRender = true; }; return (new TweenLite(_arg1, _arg2, _arg3)); } protected static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (1 - (_arg1 / _arg4)); return ((1 - (_arg1 * _arg1))); } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null, _arg4:Boolean=false):TweenLite{ return (new TweenLite(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, immediateRender:false, useFrames:_arg4, overwrite:0})); } protected static function updateAll(_arg1:Event=null):void{ var _local2:Dictionary; var _local3:Object; var _local4:Array; var _local5:int; rootTimeline.renderTime((((getTimer() * 0.001) - rootTimeline.cachedStartTime) * rootTimeline.cachedTimeScale), false, false); rootFrame = (rootFrame + 1); rootFramesTimeline.renderTime(((rootFrame - rootFramesTimeline.cachedStartTime) * rootFramesTimeline.cachedTimeScale), false, false); if (!(rootFrame % 60)){ _local2 = masterList; for (_local3 in _local2) { _local4 = _local2[_local3]; _local5 = _local4.length; while (--_local5 > -1) { if (TweenLite(_local4[_local5]).gc){ _local4.splice(_local5, 1); }; }; if (_local4.length == 0){ delete _local2[_local3]; }; }; }; } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ return (new TweenLite(_arg1, _arg2, _arg3)); } } }//package com.greensock
Section 7
//_LOADER_head_12 (manlgecreep_fla._LOADER_head_12) package manlgecreep_fla { import flash.display.*; public dynamic class _LOADER_head_12 extends MovieClip { public function _LOADER_head_12(){ addFrameScript(0, frame1, 11, frame12, 21, frame22); } function frame12(){ gotoAndStop(1); } function frame1(){ stop(); } function frame22(){ stop(); } } }//package manlgecreep_fla
Section 8
//_LOADER_main_2 (manlgecreep_fla._LOADER_main_2) package manlgecreep_fla { import flash.display.*; public dynamic class _LOADER_main_2 extends MovieClip { public var chest:MovieClip; public var leg1:MovieClip; public var leg2:MovieClip; public var tail:MovieClip; public var arm2:MovieClip; public var arm1:MovieClip; public var playbut:MovieClip; public var belly:MovieClip; public var head:MovieClip; } }//package manlgecreep_fla
Section 9
//_LOADER_playbut_3 (manlgecreep_fla._LOADER_playbut_3) package manlgecreep_fla { import flash.display.*; public dynamic class _LOADER_playbut_3 extends MovieClip { public var light:MovieClip; } }//package manlgecreep_fla
Section 10
//MainTimeline (manlgecreep_fla.MainTimeline) package manlgecreep_fla { import com.greensock.*; import flash.events.*; import com.greensock.easing.*; import flash.display.*; import flash.ui.*; import flash.utils.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.geom.*; import flash.media.*; import flash.net.*; import flash.printing.*; import flash.system.*; import flash.text.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var customHeight:int; public var loadermain:MovieClip; public var option4:ContextMenuItem; public var option1:ContextMenuItem; public var food:MovieClip; public var option2:ContextMenuItem; public var option3:ContextMenuItem; public var customContextMenu:ContextMenu; public var centerH:Number; public var centerW:Number; public var loadbg:MovieClip; public var loadperc:Number; public var bellyperc:Number; public var customWidth:int; public var loadto:Number; public var quality:Boolean; public function MainTimeline(){ addFrameScript(0, frame1, 539, frame540); } public function option3down(_arg1:ContextMenuEvent):void{ stage.quality = "MEDIUM"; } function frame540(){ gotoAndPlay(455); } public function option1down(_arg1:ContextMenuEvent):void{ navigateToURL(new URLRequest("http://www.furaffinity.net/user/thatkeiguy/")); } public function playover(_arg1:MouseEvent):void{ loadermain.playbut.light.gotoAndStop(1); } public function resetfood():void{ var _local1:int; if (loadperc > 1){ loadperc = 1; }; if (loadperc > 0){ if (loadperc < 1){ loadermain.head.gotoAndPlay(2); }; if (loadperc == 1){ food.visible = false; loadermain.head.gotoAndPlay(13); TweenLite.to(loadermain.playbut, 1.5, {x:215, scaleX:1, ease:Elastic.easeOut, delay:0.5}); }; }; TweenLite.to(loadermain.belly, 1, {scaleX:(1 + loadperc), ease:Elastic.easeOut}); food.gotoAndStop(Math.ceil((Math.random() * food.totalFrames))); food.rotation = (Math.random() * 360); _local1 = (Math.random() * 1.9); if (_local1){ food.x = (customWidth + 100); } else { food.x = -100; }; food.y = (Math.random() * customHeight); if (loadperc < 1){ TweenLite.to(food, 0.5, {x:loadermain.x, y:(loadermain.y + ((-60 * bellyperc) * loadermain.scaleX)), ease:Quad.easeIn, onComplete:resetfood}); }; } function frame1(){ stop(); quality = false; customWidth = 750; customHeight = 700; loadermain.scaleX = 1; loadermain.scaleY = loadermain.scaleX; loadperc = 0; loadto = this.stage.loaderInfo.bytesTotal; loadto = 100; centerW = (customWidth / 2); centerH = (customHeight / 2); loadermain.x = centerW; loadermain.y = centerH; loadbg.scaleX = (customWidth / 100); loadbg.scaleY = (customHeight / 100); bellyperc = 0; food.scaleX = loadermain.scaleX; food.scaleY = loadermain.scaleX; loadermain.addEventListener(Event.ENTER_FRAME, loaderupdate); if (loadto == 0){ loadperc = 1; }; resetfood(); loadermain.playbut.buttonMode = true; loadermain.playbut.addEventListener(MouseEvent.MOUSE_OVER, playover); loadermain.playbut.addEventListener(MouseEvent.MOUSE_OUT, playout); loadermain.playbut.addEventListener(MouseEvent.CLICK, playclick); stage.scaleMode = StageScaleMode.NO_SCALE; stage.align = StageAlign.TOP; option1 = new ContextMenuItem("Made by Kei"); option2 = new ContextMenuItem("Quality = Low"); option3 = new ContextMenuItem("Quality = Medium"); option4 = new ContextMenuItem("Quality = High"); option1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, option1down); option2.separatorBefore = true; option2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, option2down); option3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, option3down); option4.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, option4down); customContextMenu = new ContextMenu(); customContextMenu.hideBuiltInItems(); customContextMenu.customItems.push(option1, option2, option3, option4); this.contextMenu = customContextMenu; if (!quality){ option2.enabled = false; option3.enabled = false; option4.enabled = false; }; } public function option4down(_arg1:ContextMenuEvent):void{ stage.quality = "HIGH"; } public function option2down(_arg1:ContextMenuEvent):void{ stage.quality = "LOW"; } public function playout(_arg1:MouseEvent):void{ loadermain.playbut.light.gotoAndPlay(15); } public function loaderupdate(_arg1:Event):void{ loadperc = (this.stage.loaderInfo.bytesLoaded / loadto); loadermain.belly.scaleY = loadermain.belly.scaleX; bellyperc = (loadermain.belly.scaleX - 1); loadermain.head.y = (-54 + (-60 * bellyperc)); loadermain.chest.x = (-9 + (-5 * bellyperc)); loadermain.chest.y = (46 + (-85 * bellyperc)); loadermain.chest.scaleX = (1 + (1 * bellyperc)); loadermain.arm1.x = (-41 + (-35 * bellyperc)); loadermain.arm1.y = (47 + (-70 * bellyperc)); loadermain.arm1.rotation = (0 + (10 * bellyperc)); loadermain.arm2.x = (15 + (20 * bellyperc)); loadermain.arm2.y = (30 + (-75 * bellyperc)); loadermain.arm2.rotation = (0 + (-15 * bellyperc)); loadermain.leg1.x = (-30 + (-20 * bellyperc)); loadermain.leg2.x = (28 + (20 * bellyperc)); loadermain.tail.x = (-31 + (-50 * bellyperc)); } public function playclick(_arg1:MouseEvent):void{ loadermain.removeEventListener(Event.ENTER_FRAME, loaderupdate); loadermain.playbut.removeEventListener(MouseEvent.MOUSE_OVER, playover); loadermain.playbut.removeEventListener(MouseEvent.MOUSE_OUT, playout); loadermain.playbut.removeEventListener(MouseEvent.CLICK, playclick); gotoAndPlay(2); } } }//package manlgecreep_fla
Section 11
//Symbol11_36 (manlgecreep_fla.Symbol11_36) package manlgecreep_fla { import flash.display.*; public dynamic class Symbol11_36 extends MovieClip { public function Symbol11_36(){ addFrameScript(1, frame2); } function frame2(){ if ((Math.random() * 30) < 1){ } else { gotoAndPlay(1); }; } } }//package manlgecreep_fla
Section 12
//Symbol13_34 (manlgecreep_fla.Symbol13_34) package manlgecreep_fla { import flash.display.*; public dynamic class Symbol13_34 extends MovieClip { public function Symbol13_34(){ addFrameScript(1, frame2); } function frame2(){ if ((Math.random() * 30) < 1){ } else { gotoAndPlay(1); }; } } }//package manlgecreep_fla
Section 13
//Symbol4_26 (manlgecreep_fla.Symbol4_26) package manlgecreep_fla { import flash.display.*; public dynamic class Symbol4_26 extends MovieClip { public function Symbol4_26(){ addFrameScript(22, frame23, 53, frame54); } function frame23(){ if ((Math.random() * 30) < 1){ } else { gotoAndPlay(1); }; } function frame54(){ if ((Math.random() * 30) < 1){ } else { gotoAndPlay(33); }; } } }//package manlgecreep_fla
Section 14
//Symbol8_39 (manlgecreep_fla.Symbol8_39) package manlgecreep_fla { import flash.display.*; public dynamic class Symbol8_39 extends MovieClip { public function Symbol8_39(){ addFrameScript(1, frame2); } function frame2(){ if ((Math.random() * 30) < 1){ } else { gotoAndPlay(1); }; } } }//package manlgecreep_fla

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:Timeline
Symbol 3 GraphicUsed by:6
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:6
Symbol 6 MovieClip {manlgecreep_fla._LOADER_playbut_3}Uses:3 5Used by:42
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:42
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:42
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:42
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:42
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:42
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:42
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:19Used by:42
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:21Used by:41
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:41
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:41
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:41
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:41
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:31Used by:41
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:41
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:41
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:41
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:41
Symbol 41 MovieClip {manlgecreep_fla._LOADER_head_12}Uses:22 24 26 28 30 32 34 36 38 40Used by:42
Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2}Uses:6 8 10 12 14 16 18 20 41Used by:Timeline
Symbol 43 GraphicUsed by:49
Symbol 44 GraphicUsed by:49
Symbol 45 GraphicUsed by:49
Symbol 46 GraphicUsed by:49
Symbol 47 GraphicUsed by:49
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:43 44 45 46 47 48Used by:Timeline
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:50Used by:Timeline
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:Timeline
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:67 91 92
Symbol 56 GraphicUsed by:62 66
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:62 66
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:59Used by:62 66
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:56 58 60 61Used by:67 91 92
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:67
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:56 58 60 65Used by:67
Symbol 67 MovieClip {manlgecreep_fla.Symbol4_26}Uses:55 62 64 66Used by:Timeline
Symbol 68 GraphicUsed by:75
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:71
Symbol 71 MovieClip {manlgecreep_fla.Symbol13_34}Uses:70Used by:75
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:74
Symbol 74 MovieClip {manlgecreep_fla.Symbol11_36}Uses:73Used by:75
Symbol 75 MovieClipUses:68 71 74Used by:Timeline
Symbol 76 GraphicUsed by:85
Symbol 77 GraphicUsed by:83
Symbol 78 GraphicUsed by:83
Symbol 79 GraphicUsed by:83
Symbol 80 GraphicUsed by:83
Symbol 81 GraphicUsed by:83
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClip {manlgecreep_fla.Symbol8_39}Uses:77 78 79 80 81 82Used by:85
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:76 83 84Used by:Timeline
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:90
Symbol 88 BitmapUsed by:89
Symbol 89 GraphicUses:88Used by:90
Symbol 90 MovieClipUses:87 89Used by:Timeline
Symbol 91 MovieClipUses:55 62Used by:Timeline
Symbol 92 MovieClipUses:55 62Used by:Timeline
Symbol 93 SoundUsed by:Timeline
Streaming Sound 1Used by:Timeline

Instance Names

"loadbg"Frame 1Symbol 2 MovieClip
"loadermain"Frame 1Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2}
"food"Frame 1Symbol 49 MovieClip
"light"Symbol 6 MovieClip {manlgecreep_fla._LOADER_playbut_3} Frame 1Symbol 5 MovieClip
"playbut"Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2} Frame 1Symbol 6 MovieClip {manlgecreep_fla._LOADER_playbut_3}
"tail"Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2} Frame 1Symbol 8 MovieClip
"arm2"Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2} Frame 1Symbol 10 MovieClip
"leg2"Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2} Frame 1Symbol 12 MovieClip
"chest"Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2} Frame 1Symbol 14 MovieClip
"belly"Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2} Frame 1Symbol 16 MovieClip
"leg1"Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2} Frame 1Symbol 18 MovieClip
"arm1"Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2} Frame 1Symbol 20 MovieClip
"head"Symbol 42 MovieClip {manlgecreep_fla._LOADER_main_2} Frame 1Symbol 41 MovieClip {manlgecreep_fla._LOADER_head_12}

Special Tags

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




http://swfchan.com/42/207418/info.shtml
Created: 9/10 -2018 12:31:11 Last modified: 9/10 -2018 12:31:11 Server time: 20/04 -2024 05:47:50