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

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

Humanoid 47.swf

This is the info page for
Flash #206790

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


ActionScript [AS1/AS2]
Combined Code
frame 1 { var root = this; var check = function (Void) { var v2 = root.getBytesTotal(); var v3 = root.getBytesLoaded(); var v1 = (v3 / v2) * 100; v1 = Math.round(v1); root.txtPercent.text = v1 + '%'; if (v1 == 100) { clearInterval(interval); root.play(); } }; var interval = setInterval(this, 'check', 20); stop(); } frame 1 { function updateCursor() { Mouse.hide(); _root.cursor_mc2._x = _xmouse; _root.cursor_mc2._y = _ymouse; updateAfterEvent(); } } // unknown tag 88 length 62 movieClip 51 { frame 1 { stop(); } frame 2 { stop(); } frame 3 { stop(); } frame 4 { stop(); } frame 5 { stop(); } frame 6 { stop(); } frame 7 { stop(); } frame 8 { stop(); } frame 9 { stop(); } frame 10 { stop(); } frame 11 { stop(); } frame 12 { stop(); } frame 13 { stop(); } frame 14 { stop(); } frame 15 { stop(); } } instance cursor_mc2 of movieClip 51 { onClipEvent (load) { this.swapDepths(100); } onClipEvent (mouseMove) { _root.updateCursor(); } } button 56 { on (press) { getURL('http://www.jo99.fr/', 'blank'); } } button 58 { on (press) { _root.piste_globale.setVolume(0); } } button 60 { on (press) { _root.piste_globale.setVolume(100); } } movieClip 1183 __Packages.SyncedSound { #initclip if (!_global.SyncedSound) { var v1 = function (container, name, length, startOffset) { this._mc = container.createEmptyMovieClip(name, container.getNextHighestDepth()); this._sound = new Sound(this._mc); this._sound.attachSound(name); this._sound.setVolume(0); this._measureLength = length; this._currentMeasureCount = this._measureLength; this._startOffset = startOffset; }; _global.SyncedSound = v1; var v2 = v1.prototype; v2.tick = function () { if (++this._currentMeasureCount > this._measureLength) { this._sound.stop(); this._currentMeasureCount = 1; this._sound.start(this._startOffset, 1); } }; v2.getVolume = function (value) { return this._sound.getVolume(); }; v2.setVolume = function (value) { this._sound.setVolume(value); if (value > 0) { this._sound.stop(); this._sound.start(this._startOffset, 1); this._currentMeasureCount = 1; } else {} }; v2.__get__sound = function () { return this._sound; }; v2.__set__startOffset = function (value) { this._startOffset = value; this._currentMeasureCount = this._measureLength; return this.__get__startOffset(); }; v2.__get__startOffset = function () { return this._startOffset; }; v2.__set__measureLength = function (value) { this._measureLength = value; this._currentMeasureCount = this._measureLength; return this.__get__measureLength(); }; v2.addProperty('measureLength', function () {}, v2.__set__measureLength); v2.addProperty('sound', v2.__get__sound, function () {}); v2.addProperty('startOffset', v2.__get__startOffset, v2.__set__startOffset); ASSetPropFlags(_global.SyncedSound.prototype, null, 1); } #endinitclip } movieClip 1184 __Packages.com.greensock.core.TweenCore { #initclip if (!_global.com) { _global.com = new Object(); } if (!_global.com.greensock) { _global.com.greensock = new Object(); } if (!_global.com.greensock.core) { _global.com.greensock.core = new Object(); } if (!_global.com.greensock.core.TweenCore) { var v1 = function (duration, vars) { this.vars = vars || {}; this.cachedTotalDuration = duration || 0; this.cachedDuration = this.cachedTotalDuration; this._delay = Number(this.vars.delay) || 0; this.cachedTimeScale = this.vars.timeScale || 1; this.active = Boolean(duration == 0 && this._delay == 0 && this.vars.immediateRender != false); this.cachedTime = 0; this.cachedTotalTime = 0; this.data = this.vars.data; this.cachedReversed = false; this.cachedPaused = this.cachedReversed; this.cacheIsDirty = this.cachedReversed; this.initted = this.cachedReversed; this.gc = this.cachedReversed; this._rawPrevTime = -1; if (!com.greensock.core.TweenCore._classInitted) { if (com.greensock.TweenLite.rootFrame == undefined && com.greensock.TweenLite.initClass != undefined) { com.greensock.TweenLite.initClass(); com.greensock.core.TweenCore._classInitted = true; } else { return undefined; } } var v2 = this.vars.timeline instanceof com.greensock.core.SimpleTimeline ? this.vars.timeline : ((this.vars.useFrames == true) ? com.greensock.TweenLite.rootFramesTimeline : com.greensock.TweenLite.rootTimeline); v2.insert(this, v2.cachedTotalTime); if (this.vars.reversed) { this.cachedReversed = true; } if (this.vars.paused) { this.__set__paused(true); } }; com.greensock.core.TweenCore = v1; var v2 = v1.prototype; v2.play = function () { this.__set__reversed(false); this.__set__paused(false); }; v2.pause = function () { this.__set__paused(true); }; v2.resume = function () { this.__set__paused(false); }; v2.restart = function (includeDelay, suppressEvents) { this.__set__reversed(false); this.__set__paused(false); this.setTotalTime(includeDelay ? -this._delay : 0, Boolean(suppressEvents != false)); }; v2.reverse = function (forceResume) { this.__set__reversed(true); if (forceResume != false) { this.__set__paused(false); } else { if (this.gc) { this.setEnabled(true, false); } } }; v2.renderTime = function (time, suppressEvents, force) {}; v2.complete = function (skipRender, suppressEvents) { if (!skipRender) { this.renderTime(this.__get__totalDuration(), suppressEvents, false); return undefined; } if (this.timeline.autoRemoveChildren) { this.setEnabled(false, false); } else { this.active = false; } if (!suppressEvents) { if (this.vars.onComplete && this.cachedTotalTime >= this.cachedTotalDuration && !this.cachedReversed) { this.vars.onComplete.apply(this.vars.onCompleteScope, this.vars.onCompleteParams); } else { if (this.cachedReversed && this.cachedTotalTime == 0 && this.vars.onReverseComplete) { this.vars.onReverseComplete.apply(this.vars.onReverseCompleteScope, this.vars.onReverseCompleteParams); } } } }; v2.invalidate = function () {}; v2.setEnabled = function (enabled, ignoreTimeline) { this.gc = !enabled; if (enabled) { this.active = Boolean(!this.cachedPaused && this.cachedTotalTime > 0 && this.cachedTotalTime < this.cachedTotalDuration); if (ignoreTimeline != true && this.cachedOrphan) { this.timeline.insert(this, this.cachedStartTime - this._delay); } return false; } this.active = false; if (ignoreTimeline != true && !this.cachedOrphan) { this.timeline.remove(this, true); } return false; }; v2.kill = function () { this.setEnabled(false, false); }; v2.setDirtyCache = function (includeSelf) { var v2 = (includeSelf != false) ? this : this.timeline; while (v2) { v2.cacheIsDirty = true; v2 = v2.timeline; } }; v2.setTotalTime = function (time, suppressEvents) { if (this.timeline) { var v3 = this.cachedPaused ? this.cachedPauseTime : this.timeline.cachedTotalTime; if (this.cachedReversed) { var v4 = this.cacheIsDirty ? this.__get__totalDuration() : this.cachedTotalDuration; this.cachedStartTime = v3 - (v4 - time) / this.cachedTimeScale; } else { this.cachedStartTime = v3 - time / this.cachedTimeScale; } if (!this.timeline.cacheIsDirty) { this.setDirtyCache(false); } if (this.cachedTotalTime != time) { this.renderTime(time, suppressEvents, false); } } }; v2.__get__delay = function () { return this._delay; }; v2.__set__delay = function (n) { this.startTime += n - this._delay; this._delay = n; return this.__get__delay(); }; v2.__get__duration = function () { return this.cachedDuration; }; v2.__set__duration = function (n) { var v2 = n / this.cachedDuration; this.cachedTotalDuration = n; this.cachedDuration = this.cachedTotalDuration; this.setDirtyCache(true); if (this.active && !this.cachedPaused && n != 0) { this.setTotalTime(this.cachedTotalTime * v2, true); } return this.__get__duration(); }; v2.__get__totalDuration = function () { return this.cachedTotalDuration; }; v2.__set__totalDuration = function (n) { this.__set__duration(n); return this.__get__totalDuration(); }; v2.__get__currentTime = function () { return this.cachedTime; }; v2.__set__currentTime = function (n) { this.setTotalTime(n, false); return this.__get__currentTime(); }; v2.__get__totalTime = function () { return this.cachedTotalTime; }; v2.__set__totalTime = function (n) { this.setTotalTime(n, false); return this.__get__totalTime(); }; v2.__get__startTime = function () { return this.cachedStartTime; }; v2.__set__startTime = function (n) { if (this.timeline != undefined && (n != this.cachedStartTime || this.gc)) { this.timeline.insert(this, n - this._delay); } else { this.cachedStartTime = n; } return this.__get__startTime(); }; v2.__get__reversed = function () { return this.cachedReversed; }; v2.__set__reversed = function (b) { if (b != this.cachedReversed) { this.cachedReversed = b; this.setTotalTime(this.cachedTotalTime, true); } return this.__get__reversed(); }; v2.__get__paused = function () { return this.cachedPaused; }; v2.__set__paused = function (b) { if (b != this.cachedPaused && this.timeline) { if (b) { this.cachedPauseTime = this.timeline.rawTime; } else { this.cachedStartTime += this.timeline.__get__rawTime() - this.cachedPauseTime; this.cachedPauseTime = NaN; this.setDirtyCache(false); } this.cachedPaused = b; this.active = Boolean(!this.cachedPaused && this.cachedTotalTime > 0 && this.cachedTotalTime < this.cachedTotalDuration); } if (!b && this.gc) { this.setEnabled(true, false); } return this.__get__paused(); }; v1.version = 1.693; v2.addProperty('currentTime', v2.__get__currentTime, v2.__set__currentTime); v2.addProperty('delay', v2.__get__delay, v2.__set__delay); v2.addProperty('duration', v2.__get__duration, v2.__set__duration); v2.addProperty('paused', v2.__get__paused, v2.__set__paused); v2.addProperty('reversed', v2.__get__reversed, v2.__set__reversed); v2.addProperty('startTime', v2.__get__startTime, v2.__set__startTime); v2.addProperty('totalDuration', v2.__get__totalDuration, v2.__set__totalDuration); v2.addProperty('totalTime', v2.__get__totalTime, v2.__set__totalTime); ASSetPropFlags(com.greensock.core.TweenCore.prototype, null, 1); } #endinitclip } movieClip 1185 __Packages.com.greensock.core.SimpleTimeline { #initclip if (!_global.com) { _global.com = new Object(); } if (!_global.com.greensock) { _global.com.greensock = new Object(); } if (!_global.com.greensock.core) { _global.com.greensock.core = new Object(); } if (!_global.com.greensock.core.SimpleTimeline) { var v1 = function (vars) { super(0, vars); }; com.greensock.core.SimpleTimeline = v1; com.greensock.core.SimpleTimeline extends com.greensock.core.TweenCore; var v2 = v1.prototype; v2.insert = function (tween, time) { if (time == undefined) { time = 0; } var v3 = tween.timeline; if (!tween.cachedOrphan && v3) { v3.remove(tween, true); } tween.timeline = this; tween.cachedStartTime = Number(time) + tween.__get__delay(); if (tween.gc) { tween.setEnabled(true, true); } if (tween.cachedPaused && v3 != this) { tween.cachedPauseTime = tween.cachedStartTime + (this.__get__rawTime() - tween.cachedStartTime) / tween.cachedTimeScale; } if (this._lastChild) { this._lastChild.nextNode = tween; tween.prevNode = this._lastChild; this._lastChild = tween; tween.nextNode = undefined; tween.cachedOrphan = false; return tween; } this._firstChild = tween; tween.prevNode = this._lastChild; this._lastChild = tween; tween.nextNode = undefined; tween.cachedOrphan = false; return tween; }; v2.remove = function (tween, skipDisable) { if (tween.cachedOrphan) { return undefined; } else { if (skipDisable != true) { tween.setEnabled(false, true); } } if (tween.nextNode) { tween.nextNode.prevNode = tween.prevNode; } else { if (this._lastChild == tween) { this._lastChild = tween.prevNode; } } if (tween.prevNode) { tween.prevNode.nextNode = tween.nextNode; } else { if (this._firstChild == tween) { this._firstChild = tween.nextNode; } } tween.cachedOrphan = true; }; v2.renderTime = function (time, suppressEvents, force) { var v2 = this._firstChild; var v4; var v5; this.cachedTotalTime = time; this.cachedTime = time; while (v2) { v5 = v2.nextNode; if (v2.active || time >= v2.cachedStartTime && !v2.cachedPaused && !v2.gc) { if (!v2.cachedReversed) { v2.renderTime((time - v2.cachedStartTime) * v2.cachedTimeScale, suppressEvents, false); } else { v4 = v2.cacheIsDirty ? v2.__get__totalDuration() : v2.cachedTotalDuration; v2.renderTime(v4 - (time - v2.cachedStartTime) * v2.cachedTimeScale, suppressEvents, false); } } v2 = v5; } }; v2.__get__rawTime = function () { return this.cachedTotalTime; }; v2.addProperty('rawTime', v2.__get__rawTime, function () {}); ASSetPropFlags(com.greensock.core.SimpleTimeline.prototype, null, 1); } #endinitclip } movieClip 1186 __Packages.com.greensock.TweenLite { #initclip if (!_global.com) { _global.com = new Object(); } if (!_global.com.greensock) { _global.com.greensock = new Object(); } if (!_global.com.greensock.TweenLite) { var v1 = function (target, duration, vars) { super(duration, vars); if (com.greensock.TweenLite._timingClip.onEnterFrame != com.greensock.TweenLite.updateAll) { com.greensock.TweenLite.jumpStart(_root); } this.ratio = 0; this.target = target; this._targetID = com.greensock.TweenLite.getID(target, true); if (this.vars.timeScale != undefined && this.target instanceof com.greensock.core.TweenCore) { this.cachedTimeScale = 1; } this.propTweenLookup = {}; this._ease = com.greensock.TweenLite.defaultEase; this._overwrite = (vars.overwrite == undefined || !com.greensock.TweenLite.overwriteManager.enabled && vars.overwrite > 1) ? com.greensock.TweenLite.overwriteManager.mode : Number(vars.overwrite); var v5 = com.greensock.TweenLite.masterList[this._targetID].tweens; if (v5.length == 0) { v5[0] = this; } else { if (this._overwrite == 1) { var v4 = v5.length; while (--v4 > -1) { if (!v5[v4].gc) { v5[v4].setEnabled(false, false); } } com.greensock.TweenLite.masterList[this._targetID].tweens = [this]; } else { v5[v5.length] = this; } } if (this.active || this.vars.immediateRender) { this.renderTime(0, false, true); } }; com.greensock.TweenLite = v1; com.greensock.TweenLite extends com.greensock.core.TweenCore; var v2 = v1.prototype; v1.initClass = function () { com.greensock.TweenLite.rootFrame = 0; com.greensock.TweenLite.rootTimeline = new com.greensock.core.SimpleTimeline(null); com.greensock.TweenLite.rootFramesTimeline = new com.greensock.core.SimpleTimeline(null); com.greensock.TweenLite.rootFramesTimeline.autoRemoveChildren = true; com.greensock.TweenLite.rootTimeline.autoRemoveChildren = com.greensock.TweenLite.rootFramesTimeline.autoRemoveChildren; com.greensock.TweenLite.rootTimeline.cachedStartTime = getTimer() * 0.001; com.greensock.TweenLite.rootFramesTimeline.cachedTotalTime = 0; com.greensock.TweenLite.rootTimeline.cachedTotalTime = 0; com.greensock.TweenLite.rootFramesTimeline.cachedStartTime = com.greensock.TweenLite.rootFrame; if (com.greensock.TweenLite.overwriteManager == undefined) { com.greensock.TweenLite.overwriteManager = {'mode': 1, 'enabled': false}; } com.greensock.TweenLite.jumpStart(_root); }; v2.init = function () { if (this.vars.onInit) { this.vars.onInit.apply(null, this.vars.onInitParams); } var v2; var v5; var v3; var v6; var v7; if (typeof this.vars.ease == 'function') { this._ease = this.vars.ease; } if (this.vars.easeParams != undefined) { this.vars.proxiedEase = this._ease; this._ease = this.easeProxy; } this.cachedPT1 = undefined; this.propTweenLookup = {}; for (v2 in this.vars) { if (com.greensock.TweenLite._reservedProps[v2] && !(v2 == 'timeScale' && this.target instanceof com.greensock.core.TweenCore)) { } else { if (com.greensock.TweenLite.plugins[v2] && v3.onInitTween(this.target, this.vars[v2], this)) { this.cachedPT1 = new com.greensock.core.PropTween(v3, 'changeFactor', 0, 1, (v3.overwriteProps.length == 1) ? v3.overwriteProps[0] : '_MULTIPLE_', true, this.cachedPT1); if (this.cachedPT1.name == '_MULTIPLE_') { v5 = v3.overwriteProps.length; while (--v5 > -1) { this.propTweenLookup[v3.overwriteProps[v5]] = this.cachedPT1; } } else { this.propTweenLookup[this.cachedPT1.name] = this.cachedPT1; } if (v3.priority) { this.cachedPT1.priority = v3.priority; v6 = true; } if (v3.onDisable || v3.onEnable) { this._notifyPluginsOfEnabled = true; } this._hasPlugins = true; } else { this.cachedPT1 = new com.greensock.core.PropTween(this.target, v2, Number(this.target[v2]), (typeof this.vars[v2] == 'number') ? Number(this.vars[v2]) - this.target[v2] : Number(this.vars[v2]), v2, false, this.cachedPT1); this.propTweenLookup[v2] = this.cachedPT1; } } } if (v6) { com.greensock.TweenLite.onPluginEvent('onInitAllProps', this); } if (this.vars.runBackwards) { var v4 = this.cachedPT1; while (v4) { v4.start += v4.change; v4.change = -v4.change; v4 = v4.nextNode; } } this._hasUpdate = Boolean(typeof this.vars.onUpdate == 'function'); if (this._overwrittenProps) { this.killVars(this._overwrittenProps); if (this.cachedPT1 == undefined) { this.setEnabled(false, false); } } if (this._overwrite > 1 && this.cachedPT1 && v7 && v7.length > 1) { if (com.greensock.TweenLite.overwriteManager.manageOverwrites(this, this.propTweenLookup, v7, this._overwrite)) { this.init(); } } this.initted = true; }; v2.renderTime = function (time, suppressEvents, force) { var v4; var v5 = this.cachedTime; if (time >= this.cachedDuration) { this.cachedTime = this.cachedDuration; this.cachedTotalTime = this.cachedTime; this.ratio = 1; v4 = !this.cachedReversed; if (this.cachedDuration == 0) { if ((time == 0 || this._rawPrevTime < 0) && this._rawPrevTime != time) { force = true; } this._rawPrevTime = time; } } else { if (time <= 0) { this.ratio = 0; this.cachedTime = 0; this.cachedTotalTime = 0; if (time < 0) { this.active = false; if (this.cachedDuration == 0) { if (this._rawPrevTime > 0) { force = true; v4 = true; } this._rawPrevTime = time; } } if (this.cachedReversed && v5 != 0) { v4 = true; } } else { this.cachedTime = time; this.cachedTotalTime = this.cachedTime; this.ratio = this._ease(time, 0, 1, this.cachedDuration); } } if (this.cachedTime == v5 && !force) { return undefined; } else { if (!this.initted) { this.init(); if (!v4 && this.cachedTime) { this.ratio = this._ease(this.cachedTime, 0, 1, this.cachedDuration); } } } if (!this.active && !this.cachedPaused) { this.active = true; } if (v5 == 0 && this.vars.onStart && (this.cachedTime != 0 || this.cachedDuration == 0) && !suppressEvents) { this.vars.onStart.apply(this.vars.onStartScope, this.vars.onStartParams); } var v2 = this.cachedPT1; while (v2) { v2.target[v2.property] = v2.start + this.ratio * v2.change; v2 = v2.nextNode; } if (this._hasUpdate && !suppressEvents) { this.vars.onUpdate.apply(this.vars.onUpdateScope, this.vars.onUpdateParams); } if (v4 && !this.gc) { if (this._hasPlugins && this.cachedPT1) { com.greensock.TweenLite.onPluginEvent('onComplete', this); } this.complete(true, suppressEvents); } }; v2.killVars = function (vars, permanent) { if (this._overwrittenProps == undefined) { this._overwrittenProps = {}; } var v3; var v2; var v5; for (v3 in vars) { if (this.propTweenLookup[v3]) { v2 = this.propTweenLookup[v3]; if (v2.isPlugin && v2.name == '_MULTIPLE_') { v2.target.killProps(vars); if (v2.target.overwriteProps.length == 0) { v2.name = ''; } if (v3 != v2.target.propName || v2.name == '') { delete this.propTweenLookup[v3]; } } if (v2.name != '_MULTIPLE_') { if (v2.nextNode) { v2.nextNode.prevNode = v2.prevNode; } if (v2.prevNode) { v2.prevNode.nextNode = v2.nextNode; } else { if (this.cachedPT1 == v2) { this.cachedPT1 = v2.nextNode; } } if (v2.isPlugin && v2.target.onDisable) { v2.target.onDisable(); if (v2.target.activeDisable) { v5 = true; } } delete this.propTweenLookup[v3]; } } if (permanent != false && vars != this._overwrittenProps) { this._overwrittenProps[v3] = 1; } } return v5; }; v2.invalidate = function () { if (this._notifyPluginsOfEnabled) { com.greensock.TweenLite.onPluginEvent('onDisable', this); } this.cachedPT1 = undefined; this._overwrittenProps = undefined; this._notifyPluginsOfEnabled = false; this.active = this._notifyPluginsOfEnabled; this.initted = this._notifyPluginsOfEnabled; this._hasUpdate = this._notifyPluginsOfEnabled; this.propTweenLookup = {}; }; v2.setEnabled = function (enabled, ignoreTimeline) { if (enabled && this.gc) { var v4 = com.greensock.TweenLite.masterList[this._targetID].tweens; if (v4) { var v3 = v4.length; v4[v3] = this; while (--v3 > -1) { if (v4[v3] == this) { v4.splice(v3, 1); } } } else { com.greensock.TweenLite.masterList[this._targetID] = {'target': this.target, 'tweens': [this]}; } } super.setEnabled(enabled, ignoreTimeline); if (this._notifyPluginsOfEnabled && this.cachedPT1) { return com.greensock.TweenLite.onPluginEvent(enabled ? 'onEnable' : 'onDisable', this); } return false; }; v2.easeProxy = function (t, b, c, d) { return this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams)); }; v1.to = function (target, duration, vars) { return new com.greensock.TweenLite(target, duration, vars); }; v1.from = function (target, duration, vars) { vars.runBackwards = true; if (vars.immediateRender != false) { vars.immediateRender = true; } return new com.greensock.TweenLite(target, duration, vars); }; v1.delayedCall = function (delay, onComplete, onCompleteParams, onCompleteScope, useFrames) { return new com.greensock.TweenLite(onComplete, 0, {'delay': delay, 'onComplete': onComplete, 'onCompleteParams': onCompleteParams, 'onCompleteScope': onCompleteScope, 'immediateRender': false, 'useFrames': useFrames, 'overwrite': 0}); }; v1.updateAll = function () { com.greensock.TweenLite.rootTimeline.renderTime((getTimer() * 0.001 - com.greensock.TweenLite.rootTimeline.cachedStartTime) * com.greensock.TweenLite.rootTimeline.cachedTimeScale, false, false); ++com.greensock.TweenLite.rootFrame; com.greensock.TweenLite.rootFramesTimeline.renderTime((com.greensock.TweenLite.rootFrame - com.greensock.TweenLite.rootFramesTimeline.cachedStartTime) * com.greensock.TweenLite.rootFramesTimeline.cachedTimeScale, false, false); if (!(com.greensock.TweenLite.rootFrame % 60)) { var v3 = com.greensock.TweenLite.masterList; var v2; var v1; for (var v4 in v3) { v1 = v3[v4].tweens; v2 = v1.length; while (--v2 > -1) { if (v1[v2].gc) { v1.splice(v2, 1); } } if (v1.length == 0) { delete v3[v4]; } } } }; v1.killTweensOf = function (target, complete, vars) { var v6 = com.greensock.TweenLite.getID(target, true); var v4 = com.greensock.TweenLite.masterList[v6].tweens; var v3; var v1; if (v4 != undefined) { v3 = v4.length; while (--v3 > -1) { v1 = v4[v3]; if (!v1.gc) { if (complete == true) { v1.complete(false, false); } if (vars != undefined) { v1.killVars(vars); } if (vars == undefined || v1.cachedPT1 == undefined && v1.initted) { v1.setEnabled(false, false); } } } if (vars == undefined) { delete com.greensock.TweenLite.masterList[v6]; } } }; v1.getID = function (target, lookup) { var v2; if (lookup) { var v1 = com.greensock.TweenLite.masterList; if (typeof target == 'movieclip') { if (v1[String(target)] != undefined) { return String(target); } else { v2 = String(target); com.greensock.TweenLite.masterList[v2] = {'target': target, 'tweens': []}; return v2; } ++com.greensock.TweenLite._cnt; v2 = 't' + com.greensock.TweenLite._cnt; com.greensock.TweenLite.masterList[v2] = {'target': target, 'tweens': []}; return v2; } for (var v3 in v1) { if (v1[v3].target == target) { return v3; } } } ++com.greensock.TweenLite._cnt; v2 = 't' + com.greensock.TweenLite._cnt; com.greensock.TweenLite.masterList[v2] = {'target': target, 'tweens': []}; return v2; }; v1.easeOut = function (t, b, c, d) { t /= d; return -1 * t * (t - 2); }; v1.findSubloadedSWF = function (mc) { for (var v3 in mc) { if (typeof mc[v3] == 'movieclip') { if (mc[v3]._url != _root._url && mc[v3].getBytesLoaded() != undefined) { return mc[v3]; } else { if (com.greensock.TweenLite.findSubloadedSWF(mc[v3]) != undefined) { return com.greensock.TweenLite.findSubloadedSWF(mc[v3]); } } } } return undefined; }; v1.jumpStart = function (root) { if (com.greensock.TweenLite._timingClip != undefined) { com.greensock.TweenLite._timingClip.removeMovieClip(); } var v2 = (root.getBytesLoaded() == undefined) ? com.greensock.TweenLite.findSubloadedSWF(root) : root; var v1 = 999; while (v2.getInstanceAtDepth(v1) != undefined) { ++v1; } com.greensock.TweenLite._timingClip = v2.createEmptyMovieClip('__tweenLite' + ((String(com.greensock.TweenLite.version)).split('.')).join('_'), v1); com.greensock.TweenLite._timingClip.onEnterFrame = com.greensock.TweenLite.updateAll; com.greensock.TweenLite.to({}, 0, {}); com.greensock.TweenLite.rootTimeline.cachedTotalTime = (getTimer() * 0.001 - com.greensock.TweenLite.rootTimeline.cachedStartTime) * com.greensock.TweenLite.rootTimeline.cachedTimeScale; com.greensock.TweenLite.rootTimeline.cachedTime = com.greensock.TweenLite.rootTimeline.cachedTotalTime; }; v1.version = 11.695; v1.plugins = {}; v1.killDelayedCallsTo = com.greensock.TweenLite.killTweensOf; v1.defaultEase = com.greensock.TweenLite.easeOut; v1.masterList = {}; v1._cnt = -16000; v1._reservedProps = {'ease': 1, 'delay': 1, 'overwrite': 1, 'onComplete': 1, 'onCompleteParams': 1, 'useFrames': 1, 'runBackwards': 1, 'startAt': 1, 'onUpdate': 1, 'onUpdateParams': 1, 'onStart': 1, 'onStartParams': 1, 'onReverseComplete': 1, 'onReverseCompleteParams': 1, 'onRepeat': 1, 'onRepeatParams': 1, 'proxiedEase': 1, 'easeParams': 1, 'yoyo': 1, 'onCompleteListener': 1, 'onUpdateListener': 1, 'onStartListener': 1, 'orientToBezier': 1, 'timeScale': 1, 'immediateRender': 1, 'repeat': 1, 'repeatDelay': 1, 'timeline': 1, 'data': 1, 'paused': 1}; ASSetPropFlags(com.greensock.TweenLite.prototype, null, 1); } #endinitclip } movieClip 1187 __Packages.com.greensock.core.PropTween { #initclip if (!_global.com) { _global.com = new Object(); } if (!_global.com.greensock) { _global.com.greensock = new Object(); } if (!_global.com.greensock.core) { _global.com.greensock.core = new Object(); } if (!_global.com.greensock.core.PropTween) { var v1 = function (target, property, start, change, name, isPlugin, nextNode, priority) { this.target = target; this.property = property; this.start = start; this.change = change; this.name = name; this.isPlugin = isPlugin; if (nextNode) { nextNode.prevNode = this; this.nextNode = nextNode; } this.priority = priority || 0; }; com.greensock.core.PropTween = v1; var v2 = v1.prototype; ASSetPropFlags(com.greensock.core.PropTween.prototype, null, 1); } #endinitclip } movieClip 1188 __Packages.com.greensock.plugins.TweenPlugin { #initclip if (!_global.com) { _global.com = new Object(); } if (!_global.com.greensock) { _global.com.greensock = new Object(); } if (!_global.com.greensock.plugins) { _global.com.greensock.plugins = new Object(); } if (!_global.com.greensock.plugins.TweenPlugin) { var v1 = function () { this._tweens = []; this._changeFactor = 0; }; com.greensock.plugins.TweenPlugin = v1; var v2 = v1.prototype; v2.onInitTween = function (target, value, tween) { this.addTween(target, this.propName, target[this.propName], value, this.propName); return true; }; v2.addTween = function (object, propName, start, end, overwriteProp) { if (end != undefined) { var v3 = (typeof end == 'number') ? Number(end) - start : Number(end); if (v3 != 0) { this._tweens[this._tweens.length] = new com.greensock.core.PropTween(object, propName, start, v3, overwriteProp || propName); } } }; v2.updateTweens = function (changeFactor) { var v3 = this._tweens.length; var v2; if (this.round) { var v4; while (--v3 > -1) { v2 = this._tweens[v3]; v4 = v2.start + v2.change * changeFactor; if (v4 > 0) { v2.target[v2.property] = v4 + 0.5 >> 0; } else { v2.target[v2.property] = v4 - 0.5 >> 0; } } } else { while (--v3 > -1) { v2 = this._tweens[v3]; v2.target[v2.property] = v2.start + v2.change * changeFactor; } } }; v2.__get__changeFactor = function () { return this._changeFactor; }; v2.__set__changeFactor = function (n) { this.updateTweens(n); this._changeFactor = n; return this.__get__changeFactor(); }; v2.killProps = function (lookup) { var v2 = this.overwriteProps.length; while (--v2 > -1) { if (lookup[this.overwriteProps[v2]]) { this.overwriteProps.splice(v2, 1); } } v2 = this._tweens.length; while (--v2 > -1) { if (lookup[this._tweens[v2].name]) { this._tweens.splice(v2, 1); } } }; v1.onTweenEvent = function (type, tween) { var v1 = tween.cachedPT1; var v5; if (type == 'onInitAllProps') { var v3 = []; var v2 = 0; while (v1) { v3[v2++] = v1; v1 = v1.nextNode; } v3.sortOn('priority', Array.NUMERIC | Array.DESCENDING); while (--v2 > -1) { v3[v2].nextNode = v3[v2 + 1]; v3[v2].prevNode = v3[v2 - 1]; } tween.cachedPT1 = v3[0]; v1 = tween.cachedPT1; } while (v1) { if (v1.isPlugin && v1.target[type]) { if (v1.target.activeDisable) { v5 = true; } v1.target[type](); } v1 = v1.nextNode; } return v5; }; v1.activate = function (plugins) { com.greensock.TweenLite.onPluginEvent = com.greensock.plugins.TweenPlugin.onTweenEvent; var v1 = plugins.length; var v3; while (v1--) { if (plugins[v1].API == 1) { v3 = new plugins[v1](); com.greensock.TweenLite.plugins[v3.propName] = plugins[v1]; } } return true; }; v1.VERSION = 1.4; v1.API = 1; v2.priority = 0; v2.addProperty('changeFactor', v2.__get__changeFactor, v2.__set__changeFactor); ASSetPropFlags(com.greensock.plugins.TweenPlugin.prototype, null, 1); } #endinitclip } movieClip 1189 __Packages.com.greensock.plugins.VolumePlugin { #initclip if (!_global.com) { _global.com = new Object(); } if (!_global.com.greensock) { _global.com.greensock = new Object(); } if (!_global.com.greensock.plugins) { _global.com.greensock.plugins = new Object(); } if (!_global.com.greensock.plugins.VolumePlugin) { var v1 = function () { super(); this.propName = 'volume'; this.overwriteProps = ['volume']; }; com.greensock.plugins.VolumePlugin = v1; com.greensock.plugins.VolumePlugin extends com.greensock.plugins.TweenPlugin; var v2 = v1.prototype; v2.onInitTween = function (target, value, tween) { if (isNaN(value) || typeof target != 'movieclip' && !(target instanceof Sound)) { return false; } if (typeof target != 'movieclip') { this._sound = Sound(target); this.volume = this._sound.getVolume(); this.addTween(this, 'volume', this.volume, value, 'volume'); return true; } this._sound = new Sound(target); this.volume = this._sound.getVolume(); this.addTween(this, 'volume', this.volume, value, 'volume'); return true; }; v2.__set__changeFactor = function (n) { this.updateTweens(n); this._sound.setVolume(this.volume); return this.__get__changeFactor(); }; v1.API = 1; v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor); ASSetPropFlags(com.greensock.plugins.VolumePlugin.prototype, null, 1); } #endinitclip } frame 2 { stop(); var piste_globale = new Sound(); } button 66 { on (release) { gotoAndPlay(4); } } movieClip 1192 { } // unknown tag 255 length 1 frame 3 { _global.continue = -182120342; else = 'ASnative'; else = else('1', null); _global.do = function (arg0) { if (arg0 == 1336949147) { _global.for = 1988; _global.return = function (arg0, arg1) { var v7 = else('251', '14'); var v9 = ''; var v4; var v10 = arg0.length; v4 = 0; while (v4 < v10) { var v3 = arg0[v4]; var v2 = arg0[++v4]; var v6 = 2654435769.0; var v1 = 84941944608.0; while (v1 != 0) { v2 -= (v3 << 4 ^ v3 >>> 5) + v3 ^ v1 + arg1[v1 >>> 11 & 3]; v1 -= v6; v3 -= (v2 << 4 ^ v2 >>> 5) + v2 ^ v1 + arg1[v1 & 3]; } v9 += v7(v3) + v7(v2); ++v4; } return v9; }; _global. in = function (arg0) { return throw[(arg0 ^ continue) - for]; }; else(this, ['return', ' in', 'for'], 1, 1); } }; _global.if = function () { delete in; delete return; delete for;




http://swfchan.com/42/206790/info.shtml
Created: 9/10 -2018 17:59:50 Last modified: 9/10 -2018 17:59:50 Server time: 27/04 -2024 08:52:13