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

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

PREVIEW.ctrl-z_sacnic_transformed_3.swf

This is the info page for
Flash #202817

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


ActionScript [AS1/AS2]
Combined Code
frame 1 { stop(); stopAllSounds(); } // unknown tag 88 length 29 movieClip 6 { } movieClip 8 { } // unknown tag 88 length 283 // unknown tag 88 length 288 movieClip 14 { } button 18 { on (release) { _root.gotoAndPlay(2); } } movieClip 19 { frame 1 { aaaaa; } frame 1 { function slide() { var v1 = new mx.transitions.Tween(slide_mc, '_x', mx.transitions.easing.Elastic.easeOut, slide_mc._x, myDummy.procenat * (Stage.width / 88), 3, true); } stop(); myDummy._visible = false; myDummy.onEnterFrame = function () { myDummy.procenat = 100 * (_root.getBytesLoaded() / _root.getBytesTotal()); if (_root.getBytesTotal() > 0) { myDummy._x = myDummy.procenat * (Stage.width / 100); if (myDummy.procenat >= 1) { slide(); } if (myDummy.procenat >= 100) { play(); } } }; } frame 60 { stop(); } } movieClip 311 __Packages.mx.transitions.OnEnterFrameBeacon { #initclip if (!_global.mx) { _global.mx = new Object(); } if (!_global.mx.transitions) { _global.mx.transitions = new Object(); } if (!_global.mx.transitions.OnEnterFrameBeacon) { var v1 = function () {}; mx.transitions.OnEnterFrameBeacon = v1; var v2 = v1.prototype; v1.init = function () { var v4 = _global.MovieClip; if (!_root.__OnEnterFrameBeacon) { mx.transitions.BroadcasterMX.initialize(v4); var v3 = _root.createEmptyMovieClip('__OnEnterFrameBeacon', 9876); v3.onEnterFrame = function () { _global.MovieClip.broadcastMessage('onEnterFrame'); }; } }; v1.version = '1.1.0.52'; ASSetPropFlags(mx.transitions.OnEnterFrameBeacon.prototype, null, 1); } #endinitclip } movieClip 312 __Packages.mx.transitions.BroadcasterMX { #initclip if (!_global.mx) { _global.mx = new Object(); } if (!_global.mx.transitions) { _global.mx.transitions = new Object(); } if (!_global.mx.transitions.BroadcasterMX) { var v1 = function () {}; mx.transitions.BroadcasterMX = v1; var v2 = v1.prototype; v1.initialize = function (o, dontCreateArray) { if (o.broadcastMessage != undefined) { delete o.broadcastMessage; } o.addListener = mx.transitions.BroadcasterMX.prototype.addListener; o.removeListener = mx.transitions.BroadcasterMX.prototype.removeListener; if (!dontCreateArray) { o._listeners = new Array(); } }; v2.addListener = function (o) { this.removeListener(o); if (this.broadcastMessage == undefined) { this.broadcastMessage = mx.transitions.BroadcasterMX.prototype.broadcastMessage; } return this._listeners.push(o); }; v2.removeListener = function (o) { var v2 = this._listeners; var v3 = v2.length; while (v3--) { if (v2[v3] == o) { v2.splice(v3, 1); if (!v2.length) { this.broadcastMessage = undefined; } return true; } } return false; }; v2.broadcastMessage = function () { var v5 = String(arguments.shift()); var v4 = this._listeners.concat(); var v6 = v4.length; var v3 = 0; while (v3 < v6) { v4[v3][v5].apply(v4[v3], arguments); ++v3; } }; v1.version = '1.1.0.52'; ASSetPropFlags(mx.transitions.BroadcasterMX.prototype, null, 1); } #endinitclip } movieClip 313 __Packages.mx.transitions.Tween { #initclip if (!_global.mx) { _global.mx = new Object(); } if (!_global.mx.transitions) { _global.mx.transitions = new Object(); } if (!_global.mx.transitions.Tween) { var v1 = function (obj, prop, func, begin, finish, duration, useSeconds) { mx.transitions.OnEnterFrameBeacon.init(); if (!arguments.length) { return undefined; } this.obj = obj; this.prop = prop; this.begin = begin; this.__set__position(begin); this.__set__duration(duration); this.useSeconds = useSeconds; if (func) { this.func = func; } this.__set__finish(finish); this._listeners = []; this.addListener(this); this.start(); }; mx.transitions.Tween = v1; var v2 = v1.prototype; v2.__set__time = function (t) { this.prevTime = this._time; if (t > this.__get__duration()) { if (this.looping) { this.rewind(t - this._duration); this.update(); this.broadcastMessage('onMotionLooped', this); } else { if (this.useSeconds) { this._time = this._duration; this.update(); } this.stop(); this.broadcastMessage('onMotionFinished', this); } } else { if (t < 0) { this.rewind(); this.update(); } else { this._time = t; this.update(); } } return this.__get__time(); }; v2.__get__time = function () { return this._time; }; v2.__set__duration = function (d) { this._duration = (d == null || d <= 0) ? _global.Infinity : d; return this.__get__duration(); }; v2.__get__duration = function () { return this._duration; }; v2.__set__FPS = function (fps) { var v2 = this.isPlaying; this.stopEnterFrame(); this._fps = fps; if (v2) { this.startEnterFrame(); } return this.__get__FPS(); }; v2.__get__FPS = function () { return this._fps; }; v2.__set__position = function (p) { this.setPosition(p); return this.__get__position(); }; v2.setPosition = function (p) { this.prevPos = this._pos; this._pos = p; this.obj[this.prop] = this._pos; this.broadcastMessage('onMotionChanged', this, this._pos); updateAfterEvent(); }; v2.__get__position = function () { return this.getPosition(); }; v2.getPosition = function (t) { if (t == undefined) { t = this._time; } return this.func(t, this.begin, this.change, this._duration); }; v2.__set__finish = function (f) { this.change = f - this.begin; return this.__get__finish(); }; v2.__get__finish = function () { return this.begin + this.change; }; v2.continueTo = function (finish, duration) { this.begin = this.position; this.__set__finish(finish); if (duration != undefined) { this.__set__duration(duration); } this.start(); }; v2.yoyo = function () { this.continueTo(this.begin, this.__get__time()); }; v2.startEnterFrame = function () { if (this._fps == undefined) { _global.MovieClip.addListener(this); } else { this._intervalID = setInterval(this, 'onEnterFrame', 1000 / this._fps); } this.isPlaying = true; }; v2.stopEnterFrame = function () { if (this._fps == undefined) { _global.MovieClip.removeListener(this); } else { clearInterval(this._intervalID); } this.isPlaying = false; }; v2.start = function () { this.rewind(); this.startEnterFrame(); this.broadcastMessage('onMotionStarted', this); }; v2.stop = function () { this.stopEnterFrame(); this.broadcastMessage('onMotionStopped', this); }; v2.resume = function () { this.fixTime(); this.startEnterFrame(); this.broadcastMessage('onMotionResumed', this); }; v2.rewind = function (t) { this._time = (t == undefined) ? 0 : t; this.fixTime(); this.update(); }; v2.fforward = function () { this.__set__time(this._duration); this.fixTime(); }; v2.nextFrame = function () { if (this.useSeconds) { this.__set__time((getTimer() - this._startTime) / 1000); } else { this.__set__time(this._time + 1); } }; v2.onEnterFrame = function () { this.nextFrame(); }; v2.prevFrame = function () { if (!this.useSeconds) { this.__set__time(this._time - 1); } }; v2.toString = function () { return '[Tween]'; }; v2.fixTime = function () { if (this.useSeconds) { this._startTime = getTimer() - this._time * 1000; } }; v2.update = function () { this.__set__position(this.getPosition(this._time)); }; v1.version = '1.1.0.52'; v1.__initBeacon = mx.transitions.OnEnterFrameBeacon.init(); v1.__initBroadcaster = mx.transitions.BroadcasterMX.initialize(mx.transitions.Tween.prototype, true); v2.func = function (t, b, c, d) { return c * t / d + b; }; v2.addProperty('FPS', v2.__get__FPS, v2.__set__FPS); v2.addProperty('duration', v2.__get__duration, v2.__set__duration); v2.addProperty('finish', v2.__get__finish, v2.__set__finish); v2.addProperty('position', v2.__get__position, v2.__set__position); v2.addProperty('time', v2.__get__time, v2.__set__time); ASSetPropFlags(mx.transitions.Tween.prototype, null, 1); } #endinitclip } movieClip 314 __Packages.mx.transitions.easing.Elastic { #initclip if (!_global.mx) { _global.mx = new Object(); } if (!_global.mx.transitions) { _global.mx.transitions = new Object(); } if (!_global.mx.transitions.easing) { _global.mx.transitions.easing = new Object(); } if (!_global.mx.transitions.easing.Elastic) { var v1 = function () {}; mx.transitions.easing.Elastic = v1; var v2 = v1.prototype; v1.easeIn = function (t, b, c, d, a, p) { if (t == 0) { return b; } t /= d; if (t == 1) { return b + c; } if (!p) { p = d * 0.3; } if (!a || a < Math.abs(c)) { a = c; var v7 = p / 4; t -= 1; return -(a * Math.pow(2, 10 * t) * Math.sin((t * d - v7) * 6.283185307179586 / p)) + b; } v7 = (p / 6.283185307179586) * Math.asin(c / a); t -= 1; return -(a * Math.pow(2, 10 * t) * Math.sin((t * d - v7) * 6.283185307179586 / p)) + b; }; v1.easeOut = function (t, b, c, d, a, p) { if (t == 0) { return b; } t /= d; if (t == 1) { return b + c; } if (!p) { p = d * 0.3; } if (!a || a < Math.abs(c)) { a = c; var v7 = p / 4; return a * Math.pow(2, -10 * t) * Math.sin((t * d - v7) * 6.283185307179586 / p) + c + b; } v7 = (p / 6.283185307179586) * Math.asin(c / a); return a * Math.pow(2, -10 * t) * Math.sin((t * d - v7) * 6.283185307179586 / p) + c + b; }; v1.easeInOut = function (t, b, c, d, a, p) { if (t == 0) { return b; } t /= d / 2; if (t == 2) { return b + c; } if (!p) { p = d * 0.45; } if (!a || a < Math.abs(c)) { a = c; var v7 = p / 4; } else { var v7 = (p / 6.283185307179586) * Math.asin(c / a); } if (t < 1) { t -= 1; return -0.5 * (a * Math.pow(2, 10 * t) * Math.sin((t * d - v7) * 6.283185307179586 / p)) + b; } t -= 1; return a * Math.pow(2, -10 * t) * Math.sin((t * d - v7) * 6.283185307179586 / p) * 0.5 + c + b; }; v1.version = '1.1.0.52'; ASSetPropFlags(mx.transitions.easing.Elastic.prototype, null, 1); } #endinitclip } frame 2 { stopAllSounds(); } frame 3 { stop(); } movieClip 20 { } // unknown tag 88 length 52 // unknown tag 88 length 29 // unknown tag 88 length 105 movieClip 28 { } movieClip 29 { } movieClip 31 { frame 134 { stop(); } } movieClip 32 { frame 48 { stop(); } } movieClip 34 { } movieClip 35 { } movieClip 38 { } movieClip 39 { } movieClip 40 { frame 48 { stop(); } } movieClip 46 { } button 47 { on (release) { _root.gotoAndPlay(4); } } movieClip 49 { } movieClip 50 { frame 8 { stop(); } } movieClip 53 { } movieClip 54 { } movieClip 57 { } movieClip 60 { } movieClip 61 { } movieClip 65 { } movieClip 68 { } movieClip 70 { } movieClip 71 { } movieClip 73 { } movieClip 74 { } movieClip 76 { } movieClip 78 { } movieClip 79 { } movieClip 81 { } movieClip 82 { } movieClip 83 { } movieClip 84 { } movieClip 86 { } movieClip 90 { } movieClip 95 { } movieClip 96 { } movieClip 99 { } movieClip 101 { } movieClip 103 { } movieClip 105 { } movieClip 106 { } movieClip 108 { } movieClip 109 { } movieClip 111 { } movieClip 112 { } movieClip 115 { } movieClip 116 { } movieClip 118 { } movieClip 120 { } movieClip 121 { } movieClip 125 { } movieClip 127 { } movieClip 129 { } movieClip 130 { } movieClip 132 { } movieClip 133 { } movieClip 135 { } movieClip 136 { } movieClip 137 { } movieClip 138 { } movieClip 140 { } movieClip 141 { } frame 4 { stopAllSounds(); } movieClip 142 { } frame 5 { stop(); } movieClip 152 { } movieClip 153 { frame 41 { stop(); } } movieClip 156 { } movieClip 160 { } movieClip 161 { } movieClip 163 { } movieClip 167 { } movieClip 169 { } movieClip 172 { } movieClip 174 { } movieClip 176 { } movieClip 177 { } movieClip 182 { } movieClip 184 { } movieClip 185 { } movieClip 188 { } movieClip 191 { } movieClip 192 { } movieClip 195 { } movieClip 198 { } movieClip 199 { } movieClip 202 { } movieClip 203 { } movieClip 204 { } movieClip 205 { } movieClip 207 { } movieClip 208 { } movieClip 211 { } movieClip 213 { } movieClip 215 { } movieClip 216 { } movieClip 218 { } movieClip 221 { } movieClip 222 { } movieClip 224 { } movieClip 225 { } movieClip 228 { } movieClip 230 { } movieClip 231 { } movieClip 236 { } movieClip 237 { } movieClip 238 { } movieClip 243 { } movieClip 244 { } movieClip 246 { } movieClip 247 { } movieClip 249 { } movieClip 251 { } movieClip 252 { } movieClip 254 { } movieClip 257 { } movieClip 260 { } movieClip 262 { } movieClip 265 { } movieClip 266 { } movieClip 268 { } movieClip 271 { } movieClip 272 { } movieClip 273 { } movieClip 274 { } movieClip 276 { } movieClip 277 { } movieClip 278 { } movieClip 279 { } movieClip 280 { } movieClip 281 { } // unknown tag 88 length 29 button 284 { on (release) { gotoAndPlay(1716); } } movieClip 285 { } movieClip 288 { frame 1 { function camControl() { rp.x = _x; rp.y = _y; var v5 = camH * (_yscale * 0.01); var v6 = camW * (_xscale * 0.01); var v3 = sH / v5; var v4 = sW / v6; _x2 = (v6 / 2) * v4; _y2 = (v5 / 2) * v3; _xscale2 = v4 * 100; _yscale2 = v3 * 100; _rotation2 = -_rotation; _parent.filters = this.filters; _parent.transform.colorTransform = this.transform.colorTransform; } function reset() { _parent._xscale = 100; _parent._yscale = 100; _parent._x = 0; _parent._y = 0; _parent._rotation = 0; _parent._visible = true; } function set_x2(value) { var v2 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v2); _parent._x += value - v2.x; } function get_x2() { var v2 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v2); return v2.x; } function set_y2(value) { var v2 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v2); _parent._y += value - v2.y; } function get_y2() { var v2 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v2); return v2.y; } function get_xscale2() { return _parent._xscale; } function set_xscale2(value) { setProperty2('_xscale', value); } function get_yscale2() { return _parent._yscale; } function set_yscale2(value) { setProperty2('_yscale', value); } function get_rotation2() { return parent.rotation; } function set_rotation2(value) { setProperty2('_rotation', value); } function setProperty2(prop, n) { var v3 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v3); _parent[prop] = n; var v2 = {'x': rp.x, 'y': rp.y}; _parent.localToGlobal(v2); _parent._x -= v2.x - v3.x; _parent._y -= v2.y - v3.y; } _visible = false; addProperty('_x2', get_x2, set_x2); addProperty('_y2', get_y2, set_y2); addProperty('_xscale2', get_xscale2, set_xscale2); addProperty('_yscale2', get_yscale2, set_yscale2); addProperty('_rotation2', get_rotation2, set_rotation2); var oldScaleMode = stage.scaleMode; stage.scaleMode = 'exactFit'; var sW = Stage.width; var sH = Stage.height; stage.scaleMode = oldScaleMode; var bounds_obj = this.getBounds(this); var camH = Math.abs(bounds_obj.yMax - bounds_obj.yMin); var camW = Math.abs(bounds_obj.xMax - bounds_obj.xMin); var rp = {'x': this._x, 'y': this._y}; onEnterFrame = function () { camControl(); }; this.onUnload = reset; } } movieClip 297 { } movieClip 298 { } movieClip 300 { } movieClip 303 { } movieClip 305 { } movieClip 306 { } movieClip 307 { frame 24 { stop(); } } button 308 { on (release) { _root.gotoAndPlay(11); } } button 309 { on (release) { _root.gotoAndPlay(7); } } movieClip 310 { frame 1715 { gotoAndPlay('intro1'); } frame 1716 { stopAllSounds(); } frame 1755 { stop(); } }




http://swfchan.com/41/202817/info.shtml
Created: 11/10 -2018 08:48:29 Last modified: 11/10 -2018 08:48:29 Server time: 25/04 -2024 11:10:30