STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229494 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2575 · P5149 |
This is the info page for Flash #128743 |
Interactive Kitsuné inflation Drawn, animated and programmed by Doom the wolf http://doom-the-wolf.deviantart.com |
ActionScript [AS1/AS2]
Frame 1function createBlueDot() { var _local6 = kitsune.magicsphere._x - kitsune.revertmagic._x; var _local5 = kitsune.magicsphere._y - kitsune.revertmagic._y; var _local8 = Math.sqrt((_local6 * _local6) + (_local5 * _local5)); var _local3 = Math.atan2(_local5, _local6); var _local7 = (Math.random() * -20) - 10; var _local4 = (Math.random() * 0.1) - 0.05; var _local2 = kitsune.attachMovie("waterdrop", "drop" + blueDotID, kitsune.getNextHighestDepth()); _local2._x = kitsune.revertmagic._x + (Math.cos(_local3 + _local4) * Number(_local8 + _local7)); _local2._y = kitsune.revertmagic._y + (Math.sin(_local3 + _local4) * Number(_local8 + _local7)); _local2.vX = Math.cos((_local3 + _local4) + Math.PI); _local2.vY = Math.sin((_local3 + _local4) + Math.PI); _local2._alpha = 10; _local2.onEnterFrame = function () { if (this.vX < 15) { this.vX = this.vX * 1.1; this.vY = this.vY * 1.1; } if (this._alpha <= 95) { this._alpha = this._alpha + 5; } else { this._alpha = 100; } var _local3 = kitsune.revertmagic._x - this._x; var _local2 = kitsune.revertmagic._y - this._y; var _local4 = Math.sqrt((_local3 * _local3) + (_local2 * _local2)); var _local5 = Math.sqrt((this.vX * this.vX) + (this.vY * this.vY)); if (_local4 <= _local5) { delete this.onEnterFrame; this.removeMovieClip(); return(undefined); } this._x = this._x + this.vX; this._y = this._y + this.vY; }; } function setState(str) { if ((state == str) || (condition != "")) { return(undefined); } var _local1; for (_local1 in states[str]) { curState[_local1] = states[str][_local1]; } curState.state = (state = str); kitsune.eye.gotoAndPlay(curState.eye); kitsune.mouth.gotoAndPlay(curState.mouth); if (curState.arm1 != undefined) { if (kitsune.arm1._currentlabel == undefined) { kitsune.arm1.gotoAndPlay(curState.arm1); } else if (kitsune.arm1._currentlabel != curState.arm1) { kitsune.arm1.gotoAndPlay((kitsune.arm1._currentlabel + "2") + curState.arm1); } } if (curState.pX != undefined) { kitsune.eye.pupil._x = pX + curState.pX; } if (curState.pY != undefined) { kitsune.eye.pupil._y = pY + curState.pY; } if (curState.frequency != undefined) { frequency = curState.frequency; } if (curState.camBlink != undefined) { canBlink = curState.canBlink; } if (curState.offset != undefined) { offset = curState.offset; } } function react(str, n) { if (n == undefined) { n = 30; } var _local2 = curState.state; condition = ""; setState(str); curState.state = _local2; condition = "react"; timer = n; _root.onEnterFrame = function () { if (timer <= 0) { activateEvent("endReact"); condition = ""; setState(curState.state); delete _root.onEnterFrame; } timer--; }; } function hitSpecial() { if (kitsune.leg1.foot.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.breast1.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.breast2.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.belly.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.magicinflate.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.revertmagic.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } if (kitsune.magicdot._visible && (kitsune.magicdot.hitTest(_root._xmouse, _root._ymouse, true))) { return(true); } if (kitsune.magicslider.hitTest(_root._xmouse, _root._ymouse, true)) { return(true); } return(false); } function activateAutoInflate() { kitsune.magicinflate._visible = true; clearEvent("fullSize", activateAutoInflate); } function makeSlider(clip, destClip, minY, maxY, factor, maxFrames) { clip.minY = minY; clip.maxY = maxY; clip.destClip = destClip; clip.factor = factor; clip.maxFrames = maxFrames; clip.onPress = function () { this.baseSize = size; this.baseBSize = bSize; this.baseY = this._y; this.onEnterFrame = function () { if (!spherePhase) { return(undefined); } var _local2 = this._parent._ymouse; _local2 = Math.max(_local2, this.minY); _local2 = Math.min(_local2, this.maxY); var _local4 = _local2 - this._y; var _local3; if (_local4 >= 0) { _local3 = _local4 * this.factor; } else { _local3 = _local4; } this._y = this._y + _local3; if (_local3 > 0) { var _local6 = Number(this._y - this.baseY) / Number(this.maxY - this.minY); inflate(this.destClip, this.baseSize, _local6 * this.maxFrames, this.baseBSize); } else { this.baseY = this._y; this.baseSize = size; this.baseBSize = bSize; } var _local5 = 1 - Math.max(Number(this._y - this.minY) / Number(this.maxY - this.minY), 0); kitsune.magiccolumn.gotoAndStop(Math.max(Math.floor(_local5 * kitsune.magiccolumn._totalframes), 1)); }; }; clip.onMouseUp = function () { delete this.onEnterFrame; }; } function inflate(clip, baseFrame, frameOffset, breastBaseFrame) { if ((size >= maxSize) && (bSize >= kitsune.breast1._totalframes)) { return(undefined); } frames = Math.floor(frames); var _local1 = baseFrame + frameOffset; _local1 = Math.round(_local1); _local1 = Math.max(_local1, 0); _local1 = Math.min(clip._totalframes, _local1); var _local2 = breastBaseFrame + frameOffset; _local2 = Math.round(_local2); _local2 = Math.max(_local2, 0); _local2 = Math.min(kitsune.breast1._totalframes, _local2); var _local5 = bSize; var _local4 = size; if (kitsune.magicbelly._xscale != 100) { size = _local1; } if (kitsune.magicbreast._visible && (kitsune.magicbreast._xscale != 100)) { bSize = _local2; } if ((_local4 != size) || (_local5 != bSize)) { kitsune.magicsphere._alpha = Math.floor((100 * frameOffset) / maxInflate); if (condition == "") { react("inflate", 15); } kitsune.mouth.gotoAndStop(mouthInflateBase + Math.floor((maxMouthInflate * frameOffset) / maxInflate)); } } function fillMouth() { setState("ready"); react("impact", 7); kitsune.drops.gotoAndPlay(2); makeEvent("endReact", endFillMouth); } function endFillMouth() { kitsune.mouth.gotoAndStop(mouthInflateBase + maxMouthInflate); clearEvent("endReact", endFillMouth); } function motionReact() { var _local1 = "happymotion"; if (size < 300) { _local1 = "motion"; } if (condition == "") { react(_local1, 7); } else if (state != _local1) { condition = ""; react(_local1, 7); } else { timer = 7; } } function makeAnalog(clip, destClip, cX, cY, rad, maxDist, friction) { if (clip.destX == undefined) { clip.destX = clip._x; clip.destY = clip._y; clip.vX = 0; clip.vY = 0; clip.fX = 0; clip.fY = 0; clip.dragging = false; } clip.cX = cX; clip.cY = cY; clip.maxDist = maxDist; clip.friction = friction; clip.kV = clip.maxDist; clip.rad = rad; clip.destClip = destClip; clip.onEnterFrame = function () { var _local3 = this.destX - this._x; var _local2 = this.destY - this._y; var _local4 = Math.sqrt((_local3 * _local3) + (_local2 * _local2)); if (!this.dragging) { this.destX = this.cX; this.destY = this.cY; } this.vX = this.vX * this.friction; this.vY = this.vY * this.friction; this._x = this._x + this.vX; this._y = this._y + this.vY; this.vX = this.vX + this.fX; this.vY = this.vY + this.fY; this.fX = _local3 / this.kV; this.fY = _local2 / this.kV; deform(this.destClip, Number(this._x - centerX) / radius, Number(this._y - centerY) / radius); }; clip.onPress = function () { this.oldMX = _root._xmouse; this.oldMY = _root._ymouse; this.oldX = this._x; this.oldY = this._y; this.dragging = true; this.onMouseMove = function () { this.destX = (this.oldX + _root._xmouse) - this.oldMX; this.destY = (this.oldY + _root._ymouse) - this.oldMY; var _local4 = this.destX - this.cX; var _local3 = this.destY - this.cY; var _local6 = Math.sqrt((_local4 * _local4) + (_local3 * _local3)); var _local5 = 0; if (_local6 >= radius) { _local5 = Math.atan2(_local3, _local4); this.destX = this.cX + (this.rad * Math.cos(_local5)); this.destY = this.cY + (this.rad * Math.sin(_local5)); } }; }; clip.onMouseUp = function () { delete this.onMouseMove; this.dragging = false; }; } function deform(clip, x0, y0) { var _local2 = new flash.geom.Matrix(); _local2.a = 1; _local2.b = 0; _local2.c = 0; _local2.d = 1; var _local3 = new flash.geom.Matrix(); _local3.a = (1 + (Math.abs(x0) * clip.deformDist)) - (Math.abs(y0) * clip.deformDist); _local3.b = 0; _local3.c = 0; _local3.d = (1 + (Math.abs(y0) * clip.deformDist)) - (Math.abs(x0) * clip.deformDist); var _local8 = Math.sqrt((x0 * x0) + (y0 * y0)); var _local5 = 0; var _local11 = (Boolean((x0 * y0) < 0) ? -1 : 1); if (_local8) { var _local10 = Math.atan2(y0, x0); var _local9 = Math.floor((_local10 * 8) / Number((Math.PI*2))); var _local12 = _local10 - (((_local9 * Math.PI) * 2) / 8); _local5 = _local12 / Number((Math.PI/4)); if (_local9 % 2) { _local5 = 1 - _local5; } } var _local4 = new flash.geom.Matrix(); _local4.a = 1; _local4.b = (((_local11 * _local5) * clip.maxAngle) * clip.deformDist) * _local8; _local4.c = (((_local11 * _local5) * clip.maxAngle) * clip.deformDist) * _local8; _local4.d = 1; _local2.concat(_local3); _local2.concat(_local4); _local2.tx = clip.transform.matrix.tx; _local2.ty = clip.transform.matrix.ty; clip.transform.matrix = _local2; } function activateEvent(str) { if (eventList[str]) { var _local1 = 0; while (_local1 < eventList[str].length) { eventList[str][_local1](); _local1++; } } } function makeEvent(str, fn) { if (!eventList[str]) { eventList[str] = []; } var _local1 = 0; while (_local1 < eventList[str].length) { if (eventList[str] == fn) { return(undefined); } _local1++; } eventList[str].push(fn); } function clearEvent(str, fn) { if (!eventList[str]) { return(undefined); } var _local1 = 0; while (_local1 < eventList[str].length) { if (eventList[str][_local1] == fn) { eventList[str].splice(_local1, 1); return(undefined); } _local1++; } } function endBreastBlush() { breastBlush = false; } var lcd_stolen = new LocalConnection().domain(); if ((lcd_stolen.indexOf("chan") > -1) || (lcd_stolen.indexOf(".ru") > -1)) { _root.createTextField("stolen_txt", 10000, 0, 0, 800, 600); stolen_txt.background = true; stolen_txt.backgroundColor = 16777215 /* 0xFFFFFF */; stolen_txt.selectable = false; var tF = new TextFormat(); tF.size = 32; tF.color = 16711680 /* 0xFF0000 */; tF.font = "Arial"; tF.bold = true; tF.align = "center"; stolen_txt.html = true; stolen_txt.htmlText = ("This file has been stolen by: \n" + lcd_stolen) + "\n\n see the original at\n<a href='http://doom-the-wolf.deviantart.com'>http://doom-the-wolf.deviantart.com</a>"; stolen_txt.setTextFormat(tF); getURL ("http://www.youfail.org"); return(undefined); } var size = 0; var maxSize = kitsune.belly._totalframes; var bSize = 0; var maxSize = kitsune.belly._totalframes; var state = ""; var condition = ""; var curState = new Object(); var states = new Object(); var pX = kitsune.eye.pupil._x; var pY = kitsune.eye.pupil._y; var angle = 0; var frequency = 0.1; var offset = 1; var b1X = kitsune.breast1._x; var b1Y = kitsune.breast1._y; var b2X = kitsune.breast2._x; var b2Y = kitsune.breast2._y; var furX = kitsune.fur._x; var furY = kitsune.fur._y; var blinking = false; var canBlink = true; var blushing = false; states.normal = {mouth:"smile", eye:"medium", arm1:"normal", pX:0, pY:0, frequency:0.1, offset:1, canBlink:true}; states.ready = {mouth:"small", eye:"big", arm1:"normal", pX:4, pY:4, frequency:0.2, offset:1, canBlink:true}; states.expand = {mouth:"tired", eye:"small", arm1:"belly1", pX:4, pY:4, frequency:0.4, offset:1, canBlink:true}; states.bigger = {mouth:"happy", eye:"big", arm1:"belly2", pX:2, pY:6, frequency:0.27, offset:1, canBlink:true}; states.tired = {mouth:"happy2", eye:"tired", arm1:"belly2", pX:4, pY:4, frequency:0.27, offset:1, canBlink:true}; states.over = {mouth:"smile", eye:"small", arm1:"belly3", pX:4, pY:4, frequency:0.2, offset:1, canBlink:true}; states.impact = {mouth:"impact", eye:"open", arm1:"normal", pX:-3, pY:0, frequency:0, offset:1, canBlink:false}; states.inflate = {mouth:"inflate", eye:"inflate", frequency:0, offset:1, canBlink:false}; states.motion = {mouth:"confused", eye:"open", arm1:"belly2", frequency:0.3, pX:0, pY:6, offset:1, canBlink:false}; states.happymotion = {mouth:"teeth", eye:"shut", arm1:"belly3", frequency:0.3, offset:1, canBlink:false}; states.deflate = {mouth:"deflate", arm1:"normal", frequency:0, offset:1, canBlink:false}; states.bellypoke = {mouth:"teeth", eye:"shut", arm1:"belly1", pX:4, pY:4, frequency:0.4, offset:1, canBlink:false}; states.breastpoke = {mouth:"tired", eye:"mad", pX:0, pY:0, frequency:0.3, offset:1, canBlink:false}; states.breastrub = {mouth:"teeth", eye:"joy", pX:2, pY:5, frequency:0.3, offset:1, canBlink:false}; states.laugh = {mouth:"happy", eye:"shut", pX:2, pY:5, frequency:1.1, offset:0.3, canBlink:false}; states.wow = {mouth:"oh", eye:"open", arm1:"normal", pX:0, pY:0, frequency:0.2, offset:1, canBlink:true}; states.ecstatic = {mouth:"happy", eye:"open", arm1:"belly3", pX:4, pY:4, frequency:0.2, offset:1, canBlink:true}; states.beauty = {mouth:"smile", eye:"closed", arm1:"normal", pX:4, pY:4, frequency:0.2, offset:1, canBlink:false}; setState("normal"); var eventList = []; var centerX = kitsune.magicdot._x; var centerY = kitsune.magicdot._y; var radius = 40; var minDeformDist = -0.06; var maxDeformDist = 0.08; var minMaxDist = 0.1; var minFriction = 0.03; var maxMaxDist = 5; var maxFriction = 0.5; var maxInflate = 20; var minSliderY = (kitsune.magicslider._y - 200); var maxSliderY = kitsune.magicslider._y; var minLearnFactor = 0.75; var maxLearnFactor = 0.025; kitsune.belly.gotoAndStop(1); kitsune.belly.deformDist = 0; kitsune.belly.maxAngle = 0.589048622548086; kitsune.front.gotoAndStop(1); kitsune.breast1.gotoAndStop(1); kitsune.breast2.gotoAndStop(1); var maxMouthInflate = 20; var mouthInflateBase; var mouthDeflateSpeed = 5; var mCurFrame = kitsune.mouth._currentframe; kitsune.mouth.gotoAndStop("inflate"); mouthInflateBase = kitsune.mouth._currentframe; kitsune.mouth.gotoAndStop(mCurFrame); kitsune.magiccolumn.gotoAndStop(1); kitsune.revertmagic._alpha = 50; kitsune.magicinflate._visible = false; kitsune.magicbreast._visible = false; kitsune.magicbelly._visible = false; kitsune.onEnterFrame = function () { if (kitsune.magicdot._visible && (Math.abs(kitsune.magicdot.fX) > 1)) { motionBlush = true; activateEvent("motion"); } else { motionBlush = false; } blushing = motionBlush || (breastBlush); var _local3 = ((Math.sin(angle) * 0.5) * offset) + (0.5 * offset); var _local10 = Math.floor(_local3 * kitsune.front._totalframes); kitsune.front.gotoAndStop(Math.max(_local10, 1)); kitsune.breast1._x = b1X + (_local3 * 2); kitsune.breast1._y = b1Y - (_local3 * 1); kitsune.breast2._x = b2X + (_local3 * 1.5); kitsune.breast2._y = b2Y - (_local3 * 1); kitsune.fur._x = furX + (_local3 * 3); kitsune.fur._y = furY - (_local3 * 1); angle = angle + frequency; if (canBlink && (Math.random() > 0.99)) { kitsune.eye.gotoAndPlay("blink"); kitsune.eye.pupil._x = pX + curState.pX; kitsune.eye.pupil._y = pY + curState.pY; blinking = true; } if (blinking && (kitsune.eye._currentlabel == "endblink")) { kitsune.eye.gotoAndPlay(curState.eye); kitsune.eye.pupil._x = pX + curState.pX; kitsune.eye.pupil._y = pY + curState.pY; blinking = false; } switch (true) { case size <= 1 : if (state != "normal") { if (bSize == 0) { setState("ready"); } else if (bSize < 100) { setState("wow"); } else if (bSize < 200) { setState("ecstatic"); } else if (bSize == 200) { setState("beauty"); } } break; case size < 100 : setState("ready"); break; case size < 200 : setState("expand"); break; case size < 300 : setState("bigger"); break; case size < 400 : setState("tired"); break; default : activateEvent("fullSize"); setState("over"); } info_txt.text = state; var _local4 = kitsune.belly._currentframe / kitsune.belly._totalframes; var _local7 = _local4; if (kitsune.magicbreast._visible && (kitsune.magicbreast._xscale != 100)) { var _local9 = kitsune.breast1._currentframe / kitsune.breast1._totalframes; _local7 = Math.min(_local4, _local9); } var _local8 = minLearnFactor + (Number(maxLearnFactor - minLearnFactor) * _local7); if (spherePhase) { makeSlider(kitsune.magicslider, kitsune.belly, minSliderY, maxSliderY, _local8, maxInflate); } kitsune.belly.deformDist = minDeformDist + (Number(maxDeformDist - minDeformDist) * _local4); kitsune.belly.deformDist = Math.max(kitsune.belly.deformDist, 0); kitsune.magicdot._visible = kitsune.belly.deformDist > 0; _local4 = kitsune.belly.deformDist / Number(maxDeformDist - Math.max(minDeformDist, 0)); var _local5 = minMaxDist + (Number(maxMaxDist - minMaxDist) * _local4); var _local6 = minFriction + (Number(maxFriction - minFriction) * _local4); kitsune.belly.maxDist = _local5; kitsune.belly.friction = _local6; makeAnalog(kitsune.magicdot, kitsune.belly, centerX, centerY, radius, _local5, _local6); var _local2 = kitsune.belly.transform.matrix; var _local1 = kitsune.breast1.transform.matrix; _local1.d = 2 - _local2.d; _local1.c = -_local2.c; _local1.a = 2 - _local2.a; _local1.b = -_local2.b; kitsune.breast1.transform.matrix = _local1; _local1 = kitsune.breast2.transform.matrix; _local1.d = 2 - _local2.d; _local1.c = -_local2.c; _local1.a = 2 - _local2.a; _local1.b = -_local2.b; kitsune.breast2.transform.matrix = _local1; }; var initSphereX = kitsune.magicslider._x; var initSphereY = kitsune.magicslider._y; var curveSphereX = kitsune.magicslider._x; var curveSphereY = (kitsune.mouth._y + 20); var destSphereX = (kitsune.mouth._x + 200); var destSphereY = kitsune.mouth._y; var dist1SphereX = (curveSphereX - initSphereX); var dist1SphereY = (curveSphereY - initSphereY); var dist2SphereX = (destSphereX - curveSphereX); var dist2SphereY = (destSphereY - curveSphereY); var spherePhase = 0; var sphereGlowRate = 10; kitsune.magicslider.onPress = function () { spherePhase = 1; delete kitsune.magicsphere.onMouseMove; makeSlider(kitsune.magicslider, kitsune.belly, minSliderY, maxSliderY, minLearnFactor, maxInflate); kitsune.magicsphere.destX = kitsune.mouth._x + 20; kitsune.magicsphere.destY = kitsune.mouth._y + 5; this.onPress(); }; kitsune.magicsphere.vX = 0; kitsune.magicsphere.vY = 0; kitsune.magicsphere.destX = kitsune.magicsphere._x; kitsune.magicsphere.destY = kitsune.magicsphere._y; kitsune.magicsphere.onMouseMove = function () { var _local5 = kitsune._xmouse - kitsune.magicslider._x; var _local4 = kitsune._ymouse - kitsune.magicslider._y; var _local12 = Math.sqrt((_local5 * _local5) + (_local4 * _local4)); var _local10 = 300; var _local11 = 10; var _local3 = Math.max(_local12 - _local11, 0) / _local10; _local3 = Math.min(_local3, 1); var _local2 = 1 - _local3; var _local14 = initSphereX + (_local2 * dist1SphereX); var _local13 = initSphereY + (_local2 * dist1SphereY); var _local8 = curveSphereX + (_local2 * dist2SphereX); var _local6 = curveSphereY + (_local2 * dist2SphereY); var _local9 = (_local14 * _local3) + (_local8 * _local2); var _local7 = (_local13 * _local3) + (_local6 * _local2); this.destX = _local9; this.destY = _local7; }; kitsune.magicsphere.onMouseMove(); kitsune.magicsphere.onEnterFrame = function () { if (spherePhase == 0) { this._x = this._x + (Number(this.destX - this._x) * 0.5); this._y = this._y + (Number(this.destY - this._y) * 0.5); return(undefined); } if (spherePhase == 1) { this._x = this._x + (Number(this.destX - this._x) * 0.5); this._y = this._y + (Number(this.destY - this._y) * 0.5); if (Math.abs(this._x - this.destX) < 10) { spherePhase = 2; this._x = this.destX; this._y = this.destY; activateEvent("magicstart"); } return(undefined); } if (this._alpha >= sphereGlowRate) { this._alpha = this._alpha - sphereGlowRate; } else { this._alpha = 0; } }; kitsune.revertmagic.onPress = function () { if (Boolean((size <= 1) || (kitsune.magicbelly._xscale == 100)) && (Boolean(((bSize <= 1) || (!kitsune.magicbreast._visible)) || (kitsune.magicbreast._xscale == 100)))) { return(undefined); } react("deflate", 7); condition = "deflate"; this.onEnterFrame = function () { if (((size >= 1) && (kitsune.magicbelly._xscale != 100)) || (((bSize >= 1) && (kitsune.magicbreast._visible)) && (kitsune.magicbreast._xscale != 100))) { if (condition == "deflate") { kitsune.mouth.gotoAndStop("deflate"); timer = 7; } if ((size >= 1) && (kitsune.magicbelly._xscale != 100)) { size--; } if (((bSize >= 1) && (kitsune.magicbreast._visible)) && (kitsune.magicbreast._xscale != 100)) { bSize--; } createBlueDot(); } }; }; kitsune.revertmagic.onMouseUp = function () { if (this.onEnterFrame) { condition = ""; kitsune.mouth.gotoAndStop(curState.mouth); delete this.onEnterFrame; } }; var blueDotID = 0; var timer = 0; kitsune.magicinflate._alpha = 50; makeEvent("fullSize", activateAutoInflate); kitsune.magicinflate.onPress = function () { if (this.onEnterFrame) { this._alpha = 50; delete this.onEnterFrame; this._xscale = 100; this._yscale = 100; } else if (size < kitsune.belly._totalframes) { this._xscale = 150; this._yscale = 150; this._alpha = 100; this.onEnterFrame = function () { var _local2 = false; if ((size < kitsune.belly._totalframes) && (kitsune.magicbelly._xscale != 100)) { _local2 = true; size++; } if (((bSize < kitsune.breast1._totalframes) && (kitsune.magicbreast._xscale != 100)) && (kitsune.magicbreast._visible)) { _local2 = true; bSize++; } if (!_local2) { this.onPress(); } }; } }; kitsune.bg.grass.useHandCursor = false; kitsune.bg.grass.onRollOver = function () { this._xscale = 110; this._yscale = 150; }; kitsune.bg.grass.onRollOut = function () { this._xscale = 100; this._yscale = 100; }; kitsune.bg.grass.onPress = function () { if (!kitsune.bg.cloud._visible) { kitsune.bg.cloud._visible = true; kitsune.bg.cloud.onPress = function () { kitsune.magicbreast._visible = true; kitsune.magicbelly._visible = true; }; } }; kitsune.bg.cloud._visible = false; kitsune.magicbreast._alpha = 50; kitsune.magicbreast.onPress = function () { if (this._xscale != 100) { this._alpha = 50; this._xscale = 100; this._yscale = 100; } else { this._xscale = 150; this._yscale = 150; this._alpha = 100; } }; kitsune.magicbelly._xscale = 150; kitsune.magicbelly._yscale = 150; kitsune.magicbelly.onPress = function () { if (this._xscale != 100) { this._alpha = 50; this._xscale = 100; this._yscale = 100; } else { this._xscale = 150; this._yscale = 150; this._alpha = 100; } }; var kBounds = kitsune.bg.lakeRect.getBounds(kitsune); var origKX = kitsune._x; var origKY = kitsune._y; kitsune.onMouseDown = function () { if (hitSpecial()) { return(undefined); } this.mX = _root._xmouse; this.mY = _root._ymouse; this.oldX = this._x; this.oldY = this._y; this.onMouseMove = function () { var _local4 = _root._xmouse - this.mX; var _local3 = _root._ymouse - this.mY; var _local6 = this.oldX + _local4; var _local5 = this.oldY + _local3; this._x = Math.min(((-kBounds.xMin) * this._xscale) * 0.01, _local6); this._x = Math.max(800 - ((kBounds.xMax * this._xscale) * 0.01), this._x); this._y = Math.min(((-kBounds.yMin) * this._yscale) * 0.01, _local5); this._y = Math.max(600 - ((kBounds.yMax * this._yscale) * 0.01), this._y); }; }; var origX = kitsune._x; var origY = kitsune._y; kitsune.onMouseUp = function () { delete this.onMouseMove; }; minus_mc.onPress = function () { this.onEnterFrame = function () { if (kitsune._xscale > 65) { kitsune._xscale = kitsune._xscale - 2; kitsune._yscale = kitsune._xscale; kitsune._x = Math.min(((-kBounds.xMin) * kitsune._xscale) * 0.01, kitsune._x); kitsune._x = Math.max(800 - ((kBounds.xMax * kitsune._xscale) * 0.01), kitsune._x); kitsune._y = Math.min(((-kBounds.yMin) * kitsune._yscale) * 0.01, kitsune._y); kitsune._y = Math.max(600 - ((kBounds.yMax * kitsune._yscale) * 0.01), kitsune._y); } else { delete this.onEnterFrame; } }; }; plus_mc.onPress = function () { this.onEnterFrame = function () { if (kitsune._xscale < 300) { kitsune._xscale = kitsune._xscale + 2; kitsune._yscale = kitsune._xscale; } else { delete this.onEnterFrame; } }; }; minus_mc.onMouseUp = function () { delete minus_mc.onEnterFrame; delete plus_mc.onEnterFrame; }; center_mc.onPress = function () { kitsune._x = origX; kitsune._y = origY; kitsune._xscale = (kitsune._yscale = 100); }; kitsune.belly.vX = 0; kitsune.belly.fX = 0; kitsune.belly.friction = minFriction; kitsune.belly.maxDist = minMaxDist; kitsune.belly.onEnterFrame = function () { var _local2 = size - this._currentframe; this.vX = this.vX * this.friction; this.gotoAndStop(Math.min(Math.max(Math.floor(this._currentframe + this.vX), 1), this._totalframes)); this.vX = this.vX + this.fX; this.fX = _local2 / this.maxDist; }; kitsune.breast1.vX = 0; kitsune.breast1.fX = 0; kitsune.breast1.friction = minFriction; kitsune.breast1.maxDist = minMaxDist; kitsune.breast1.onEnterFrame = function () { var _local2 = bSize - this._currentframe; this.vX = this.vX * this.friction; this.gotoAndStop(Math.min(Math.max(Math.floor(this._currentframe + this.vX), 1), this._totalframes)); this.vX = this.vX + this.fX; this.fX = _local2 / this.maxDist; kitsune.breast2.gotoAndStop(this._currentframe); }; kitsune.breast2.vX = 0; kitsune.breast2.fX = 0; kitsune.breast2.friction = minFriction; kitsune.breast2.maxDist = minMaxDist; kitsune.breast2.onEnterFrame = function () { var _local2 = bSize - this._currentframe; this.vX = this.vX * this.friction; this.gotoAndStop(Math.min(Math.max(Math.floor(this._currentframe + this.vX), 1), this._totalframes)); this.vX = this.vX + this.fX; this.fX = _local2 / this.maxDist; }; makeEvent("magicstart", fillMouth); kitsune.mouth.onEnterFrame = function () { if (this._currentframe >= (mouthInflateBase + mouthDeflateSpeed)) { this.gotoAndStop(this._currentframe - mouthDeflateSpeed); } else if (this._currentframe >= mouthInflateBase) { if (curState.mouth) { this.gotoAndPlay(curState.mouth); } else { this.gotoAndPlay(1); } } }; makeEvent("motion", motionReact); var motionBlush = false; var breastBlush = false; kitsune.blush.onEnterFrame = function () { if (blushing) { if (this._currentframe < 10) { this.play(); } else if (this._currentframe >= 20) { this.gotoAndStop(this._currentframe - 1); } else { this.gotoAndStop(10); } } else if (this._currentframe == 1) { this.stop(); } else if (this._currentframe <= 20) { var _local2 = 1 - (Number(Math.min(this._currentframe, 10) - 1) / Number(9)); var _local3 = this._totalframes - 20; this.gotoAndPlay(20 + Math.floor(_local3 * _local2)); } else { this.play(); } }; kitsune.belly.onPress = function () { if (condition != "") { return(undefined); } react("bellypoke", 20); }; makeEvent("breastBlush", endBreastBlush); kitsune.breast1.onPress = function () { if (condition != "") { return(undefined); } if (bSize < 100) { react("breastpoke", 20); } else { react("breastrub", 30); breastBlush = true; } }; kitsune.breast2.onPress = function () { if (condition != "") { return(undefined); } if (bSize < 100) { react("breastpoke", 20); } else { react("breastrub", 30); breastBlush = true; } }; kitsune.leg1.foot.onPress = function () { if (condition != "") { return(undefined); } react("laugh", 20); kitsune.leg1.gotoAndPlay(2); };Symbol 94 MovieClip Frame 1_currentlabel = "smile";Symbol 94 MovieClip Frame 2stop();Symbol 94 MovieClip Frame 3_currentlabel = "closed";Symbol 94 MovieClip Frame 4stop();Symbol 94 MovieClip Frame 5_currentlabel = "open";Symbol 94 MovieClip Frame 6stop();Symbol 94 MovieClip Frame 7_currentlabel = "small";Symbol 94 MovieClip Frame 8stop();Symbol 94 MovieClip Frame 9_currentlabel = "tired";Symbol 94 MovieClip Frame 10stop();Symbol 94 MovieClip Frame 11_currentlabel = "happy";Symbol 94 MovieClip Frame 12stop();Symbol 94 MovieClip Frame 13_currentlabel = "teeth";Symbol 94 MovieClip Frame 14stop();Symbol 94 MovieClip Frame 15_currentlabel = "happy2";Symbol 94 MovieClip Frame 16stop();Symbol 94 MovieClip Frame 17_currentlabel = "confused";Symbol 94 MovieClip Frame 18stop();Symbol 94 MovieClip Frame 19_currentlabel = "oh";Symbol 94 MovieClip Frame 20stop();Symbol 94 MovieClip Frame 26_currentlabel = "impact";Symbol 94 MovieClip Frame 27stop();Symbol 94 MovieClip Frame 31_currentlabel = "deflate";Symbol 94 MovieClip Frame 32stop();Symbol 109 MovieClip Frame 1_currentlabel = "medium";Symbol 109 MovieClip Frame 2stop();Symbol 109 MovieClip Frame 3_currentlabel = "big";Symbol 109 MovieClip Frame 4stop();Symbol 109 MovieClip Frame 5_currentlabel = "open";Symbol 109 MovieClip Frame 6stop();Symbol 109 MovieClip Frame 7_currentlabel = "small";Symbol 109 MovieClip Frame 8stop();Symbol 109 MovieClip Frame 9_currentlabel = "closed";Symbol 109 MovieClip Frame 10stop();Symbol 109 MovieClip Frame 11_currentlabel = "blink";Symbol 109 MovieClip Frame 15_currentlabel = "endblink";Symbol 109 MovieClip Frame 16stop();Symbol 109 MovieClip Frame 17_currentlabel = "inflate";Symbol 109 MovieClip Frame 18stop();Symbol 109 MovieClip Frame 19_currentlabel = "tired";Symbol 109 MovieClip Frame 20stop();Symbol 109 MovieClip Frame 21_currentlabel = "shut";Symbol 109 MovieClip Frame 22stop();Symbol 109 MovieClip Frame 23_currentlabel = "mad";Symbol 109 MovieClip Frame 24stop();Symbol 109 MovieClip Frame 25_currentlabel = "joy";Symbol 109 MovieClip Frame 26stop();Symbol 118 MovieClip Frame 1stop();Symbol 123 MovieClip Frame 1stop();Symbol 147 MovieClip Frame 1stop();Symbol 219 MovieClip Frame 1_currentlabel = "normal";Symbol 219 MovieClip Frame 2stop();Symbol 219 MovieClip Frame 16_currentlabel = "belly1";Symbol 219 MovieClip Frame 20_currentlabel = "belly1";Symbol 219 MovieClip Frame 21stop();Symbol 219 MovieClip Frame 22_currentlabel = "normal";Symbol 219 MovieClip Frame 25gotoAndPlay(_currentlabel);Symbol 219 MovieClip Frame 35_currentlabel = "belly2";Symbol 219 MovieClip Frame 39gotoAndPlay(_currentlabel);Symbol 219 MovieClip Frame 40_currentlabel = "belly2";Symbol 219 MovieClip Frame 45_currentlabel = "belly2";Symbol 219 MovieClip Frame 46stop();Symbol 219 MovieClip Frame 47_currentlabel = "normal";Symbol 219 MovieClip Frame 51gotoAndPlay(_currentlabel);Symbol 219 MovieClip Frame 52_currentlabel = "belly1";Symbol 219 MovieClip Frame 56gotoAndPlay(_currentlabel);Symbol 219 MovieClip Frame 60_currentlabel = "belly3";Symbol 219 MovieClip Frame 65gotoAndPlay(_currentlabel);Symbol 219 MovieClip Frame 66_currentlabel = "belly3";Symbol 219 MovieClip Frame 70gotoAndPlay(_currentlabel);Symbol 219 MovieClip Frame 71_currentlabel = "belly3";Symbol 219 MovieClip Frame 75_currentlabel = "belly3";Symbol 219 MovieClip Frame 76stop();Symbol 219 MovieClip Frame 77_currentlabel = "belly2";Symbol 219 MovieClip Frame 80gotoAndPlay(_currentlabel);Symbol 219 MovieClip Frame 81_currentlabel = "belly1";Symbol 219 MovieClip Frame 85gotoAndPlay(_currentlabel);Symbol 219 MovieClip Frame 86_currentlabel = "normal";Symbol 219 MovieClip Frame 91gotoAndPlay(_currentlabel);
Library Items
Symbol 1 Graphic | Used by:2 | |
Symbol 2 MovieClip [waterdrop] | Uses:1 | |
Symbol 3 Graphic | Used by:13 | |
Symbol 4 Graphic | Used by:13 | |
Symbol 5 ShapeTweening | Used by:7 | |
Symbol 6 Graphic | Used by:7 | |
Symbol 7 MovieClip | Uses:5 6 | Used by:13 |
Symbol 8 Graphic | Used by:13 | |
Symbol 9 Graphic | Used by:10 | |
Symbol 10 MovieClip | Uses:9 | Used by:13 |
Symbol 11 Graphic | Used by:12 | |
Symbol 12 MovieClip | Uses:11 | Used by:13 |
Symbol 13 MovieClip | Uses:3 4 7 8 10 12 | Used by:239 |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip | Uses:14 | Used by:239 |
Symbol 16 Graphic | Used by:17 | |
Symbol 17 MovieClip | Uses:16 | Used by:239 |
Symbol 18 Graphic | Used by:19 | |
Symbol 19 MovieClip | Uses:18 | Used by:239 |
Symbol 20 Graphic | Used by:21 | |
Symbol 21 MovieClip | Uses:20 | Used by:239 |
Symbol 22 ShapeTweening | Used by:25 | |
Symbol 23 ShapeTweening | Used by:25 | |
Symbol 24 Graphic | Used by:25 | |
Symbol 25 MovieClip | Uses:22 23 24 | Used by:239 |
Symbol 26 ShapeTweening | Used by:39 | |
Symbol 27 ShapeTweening | Used by:39 | |
Symbol 28 ShapeTweening | Used by:39 | |
Symbol 29 ShapeTweening | Used by:39 | |
Symbol 30 ShapeTweening | Used by:39 | |
Symbol 31 ShapeTweening | Used by:39 | |
Symbol 32 ShapeTweening | Used by:39 | |
Symbol 33 ShapeTweening | Used by:39 | |
Symbol 34 ShapeTweening | Used by:39 | |
Symbol 35 ShapeTweening | Used by:39 | |
Symbol 36 ShapeTweening | Used by:39 | |
Symbol 37 ShapeTweening | Used by:39 | |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 MovieClip | Uses:26 27 28 29 30 31 32 33 34 35 36 37 38 | Used by:239 |
Symbol 40 ShapeTweening | Used by:58 | |
Symbol 41 ShapeTweening | Used by:58 | |
Symbol 42 ShapeTweening | Used by:58 | |
Symbol 43 ShapeTweening | Used by:58 | |
Symbol 44 ShapeTweening | Used by:58 | |
Symbol 45 ShapeTweening | Used by:58 | |
Symbol 46 ShapeTweening | Used by:58 | |
Symbol 47 ShapeTweening | Used by:58 | |
Symbol 48 ShapeTweening | Used by:58 | |
Symbol 49 ShapeTweening | Used by:58 | |
Symbol 50 ShapeTweening | Used by:58 | |
Symbol 51 ShapeTweening | Used by:58 | |
Symbol 52 ShapeTweening | Used by:58 | |
Symbol 53 ShapeTweening | Used by:58 | |
Symbol 54 ShapeTweening | Used by:58 | |
Symbol 55 ShapeTweening | Used by:58 | |
Symbol 56 ShapeTweening | Used by:58 | |
Symbol 57 Graphic | Used by:58 | |
Symbol 58 MovieClip | Uses:40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | Used by:239 |
Symbol 59 Graphic | Used by:60 | |
Symbol 60 MovieClip | Uses:59 | Used by:239 |
Symbol 61 ShapeTweening | Used by:72 | |
Symbol 62 ShapeTweening | Used by:72 | |
Symbol 63 ShapeTweening | Used by:72 | |
Symbol 64 ShapeTweening | Used by:72 | |
Symbol 65 ShapeTweening | Used by:72 | |
Symbol 66 ShapeTweening | Used by:72 | |
Symbol 67 ShapeTweening | Used by:72 | |
Symbol 68 ShapeTweening | Used by:72 | |
Symbol 69 ShapeTweening | Used by:72 | |
Symbol 70 ShapeTweening | Used by:72 | |
Symbol 71 Graphic | Used by:72 | |
Symbol 72 MovieClip | Uses:61 62 63 64 65 66 67 68 69 70 71 | Used by:239 |
Symbol 73 Graphic | Used by:74 | |
Symbol 74 MovieClip | Uses:73 | Used by:239 |
Symbol 75 Graphic | Used by:76 | |
Symbol 76 MovieClip | Uses:75 | Used by:239 |
Symbol 77 Graphic | Used by:78 | |
Symbol 78 MovieClip | Uses:77 | Used by:239 |
Symbol 79 Graphic | Used by:94 | |
Symbol 80 Graphic | Used by:94 | |
Symbol 81 Graphic | Used by:94 | |
Symbol 82 Graphic | Used by:94 | |
Symbol 83 Graphic | Used by:94 | |
Symbol 84 Graphic | Used by:94 | |
Symbol 85 Graphic | Used by:94 | |
Symbol 86 Graphic | Used by:94 | |
Symbol 87 Graphic | Used by:94 | |
Symbol 88 Graphic | Used by:94 | |
Symbol 89 Graphic | Used by:94 | |
Symbol 90 Graphic | Used by:94 | |
Symbol 91 Graphic | Used by:94 | |
Symbol 92 ShapeTweening | Used by:94 | |
Symbol 93 Graphic | Used by:94 | |
Symbol 94 MovieClip | Uses:79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | Used by:239 |
Symbol 95 Graphic | Used by:109 | |
Symbol 96 Graphic | Used by:109 | |
Symbol 97 Graphic | Used by:98 | |
Symbol 98 MovieClip | Uses:97 | Used by:109 |
Symbol 99 Graphic | Used by:109 | |
Symbol 100 Graphic | Used by:109 | |
Symbol 101 Graphic | Used by:109 | |
Symbol 102 Graphic | Used by:109 | |
Symbol 103 Graphic | Used by:109 | |
Symbol 104 Graphic | Used by:109 | |
Symbol 105 Graphic | Used by:109 | |
Symbol 106 Graphic | Used by:109 | |
Symbol 107 Graphic | Used by:109 | |
Symbol 108 Graphic | Used by:109 | |
Symbol 109 MovieClip | Uses:95 96 98 99 100 101 102 103 104 105 106 107 108 | Used by:239 |
Symbol 110 Graphic | Used by:111 | |
Symbol 111 MovieClip | Uses:110 | Used by:239 |
Symbol 112 Graphic | Used by:113 | |
Symbol 113 MovieClip | Uses:112 | Used by:239 |
Symbol 114 ShapeTweening | Used by:118 | |
Symbol 115 ShapeTweening | Used by:118 | |
Symbol 116 ShapeTweening | Used by:118 | |
Symbol 117 Graphic | Used by:118 | |
Symbol 118 MovieClip | Uses:114 115 116 117 | Used by:239 |
Symbol 119 ShapeTweening | Used by:123 | |
Symbol 120 Graphic | Used by:123 | |
Symbol 121 ShapeTweening | Used by:123 | |
Symbol 122 Graphic | Used by:123 | |
Symbol 123 MovieClip | Uses:119 120 121 122 | Used by:239 |
Symbol 124 Graphic | Used by:147 | |
Symbol 125 Graphic | Used by:126 | |
Symbol 126 MovieClip | Uses:125 | Used by:147 |
Symbol 127 ShapeTweening | Used by:147 | |
Symbol 128 ShapeTweening | Used by:147 | |
Symbol 129 ShapeTweening | Used by:147 | |
Symbol 130 ShapeTweening | Used by:147 | |
Symbol 131 ShapeTweening | Used by:147 | |
Symbol 132 ShapeTweening | Used by:147 | |
Symbol 133 ShapeTweening | Used by:147 | |
Symbol 134 Graphic | Used by:147 | |
Symbol 135 Graphic | Used by:147 | |
Symbol 136 Graphic | Used by:147 | |
Symbol 137 ShapeTweening | Used by:147 | |
Symbol 138 ShapeTweening | Used by:147 | |
Symbol 139 ShapeTweening | Used by:147 | |
Symbol 140 ShapeTweening | Used by:147 | |
Symbol 141 ShapeTweening | Used by:147 | |
Symbol 142 ShapeTweening | Used by:147 | |
Symbol 143 ShapeTweening | Used by:147 | |
Symbol 144 Graphic | Used by:147 | |
Symbol 145 Graphic | Used by:147 | |
Symbol 146 Graphic | Used by:147 | |
Symbol 147 MovieClip | Uses:124 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | Used by:239 |
Symbol 148 Graphic | Used by:219 | |
Symbol 149 ShapeTweening | Used by:219 | |
Symbol 150 ShapeTweening | Used by:219 | |
Symbol 151 ShapeTweening | Used by:219 | |
Symbol 152 ShapeTweening | Used by:219 | |
Symbol 153 Graphic | Used by:219 | |
Symbol 154 Graphic | Used by:219 | |
Symbol 155 ShapeTweening | Used by:219 | |
Symbol 156 ShapeTweening | Used by:219 | |
Symbol 157 ShapeTweening | Used by:219 | |
Symbol 158 ShapeTweening | Used by:219 | |
Symbol 159 Graphic | Used by:219 | |
Symbol 160 Graphic | Used by:219 | |
Symbol 161 ShapeTweening | Used by:219 | |
Symbol 162 ShapeTweening | Used by:219 | |
Symbol 163 ShapeTweening | Used by:219 | |
Symbol 164 ShapeTweening | Used by:219 | |
Symbol 165 Graphic | Used by:219 | |
Symbol 166 Graphic | Used by:219 | |
Symbol 167 ShapeTweening | Used by:219 | |
Symbol 168 ShapeTweening | Used by:219 | |
Symbol 169 ShapeTweening | Used by:219 | |
Symbol 170 ShapeTweening | Used by:219 | |
Symbol 171 Graphic | Used by:219 | |
Symbol 172 ShapeTweening | Used by:219 | |
Symbol 173 ShapeTweening | Used by:219 | |
Symbol 174 ShapeTweening | Used by:219 | |
Symbol 175 ShapeTweening | Used by:219 | |
Symbol 176 Graphic | Used by:219 | |
Symbol 177 Graphic | Used by:219 | |
Symbol 178 ShapeTweening | Used by:219 | |
Symbol 179 ShapeTweening | Used by:219 | |
Symbol 180 ShapeTweening | Used by:219 | |
Symbol 181 ShapeTweening | Used by:219 | |
Symbol 182 Graphic | Used by:219 | |
Symbol 183 ShapeTweening | Used by:219 | |
Symbol 184 ShapeTweening | Used by:219 | |
Symbol 185 ShapeTweening | Used by:219 | |
Symbol 186 ShapeTweening | Used by:219 | |
Symbol 187 Graphic | Used by:219 | |
Symbol 188 Graphic | Used by:219 | |
Symbol 189 ShapeTweening | Used by:219 | |
Symbol 190 ShapeTweening | Used by:219 | |
Symbol 191 ShapeTweening | Used by:219 | |
Symbol 192 ShapeTweening | Used by:219 | |
Symbol 193 Graphic | Used by:219 | |
Symbol 194 Graphic | Used by:219 | |
Symbol 195 ShapeTweening | Used by:219 | |
Symbol 196 ShapeTweening | Used by:219 | |
Symbol 197 ShapeTweening | Used by:219 | |
Symbol 198 ShapeTweening | Used by:219 | |
Symbol 199 Graphic | Used by:219 | |
Symbol 200 Graphic | Used by:219 | |
Symbol 201 Graphic | Used by:219 | |
Symbol 202 ShapeTweening | Used by:219 | |
Symbol 203 ShapeTweening | Used by:219 | |
Symbol 204 ShapeTweening | Used by:219 | |
Symbol 205 ShapeTweening | Used by:219 | |
Symbol 206 Graphic | Used by:219 | |
Symbol 207 Graphic | Used by:219 | |
Symbol 208 ShapeTweening | Used by:219 | |
Symbol 209 ShapeTweening | Used by:219 | |
Symbol 210 ShapeTweening | Used by:219 | |
Symbol 211 ShapeTweening | Used by:219 | |
Symbol 212 Graphic | Used by:219 | |
Symbol 213 Graphic | Used by:219 | |
Symbol 214 ShapeTweening | Used by:219 | |
Symbol 215 ShapeTweening | Used by:219 | |
Symbol 216 ShapeTweening | Used by:219 | |
Symbol 217 ShapeTweening | Used by:219 | |
Symbol 218 Graphic | Used by:219 | |
Symbol 219 MovieClip | Uses:148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | Used by:239 |
Symbol 220 Graphic | Used by:221 | |
Symbol 221 MovieClip | Uses:220 | Used by:239 |
Symbol 222 Graphic | Used by:239 | |
Symbol 223 Graphic | Used by:224 | |
Symbol 224 MovieClip | Uses:223 | Used by:239 |
Symbol 225 Graphic | Used by:228 | |
Symbol 226 ShapeTweening | Used by:228 | |
Symbol 227 Graphic | Used by:228 | |
Symbol 228 MovieClip | Uses:225 226 227 | Used by:239 |
Symbol 229 Graphic | Used by:230 | |
Symbol 230 MovieClip | Uses:229 | Used by:239 |
Symbol 231 Graphic | Used by:232 | |
Symbol 232 MovieClip | Uses:231 | Used by:239 |
Symbol 233 Graphic | Used by:234 | |
Symbol 234 MovieClip | Uses:233 | Used by:239 |
Symbol 235 Graphic | Used by:236 | |
Symbol 236 MovieClip | Uses:235 | Used by:239 |
Symbol 237 Graphic | Used by:238 | |
Symbol 238 MovieClip | Uses:237 | Used by:239 |
Symbol 239 MovieClip | Uses:13 15 17 19 21 25 39 58 60 72 74 76 78 94 109 111 113 118 123 147 219 221 222 224 228 230 232 234 236 238 | Used by:Timeline |
Symbol 240 Font | Used by:241 | |
Symbol 241 Text | Uses:240 | Used by:Timeline |
Symbol 242 Graphic | Used by:243 | |
Symbol 243 MovieClip | Uses:242 | Used by:Timeline |
Symbol 244 Graphic | Used by:245 | |
Symbol 245 MovieClip | Uses:244 | Used by:Timeline |
Symbol 246 Graphic | Used by:247 | |
Symbol 247 MovieClip | Uses:246 | Used by:Timeline |
Instance Names
"kitsune" | Frame 1 | Symbol 239 MovieClip |
"plus_mc" | Frame 1 | Symbol 243 MovieClip |
"center_mc" | Frame 1 | Symbol 245 MovieClip |
"minus_mc" | Frame 1 | Symbol 247 MovieClip |
"cloud" | Symbol 13 MovieClip Frame 1 | Symbol 7 MovieClip |
"grass" | Symbol 13 MovieClip Frame 1 | Symbol 10 MovieClip |
"lakeRect" | Symbol 13 MovieClip Frame 1 | Symbol 12 MovieClip |
"pupil" | Symbol 109 MovieClip Frame 1 | Symbol 98 MovieClip |
"foot" | Symbol 147 MovieClip Frame 1 | Symbol 126 MovieClip |
"bg" | Symbol 239 MovieClip Frame 1 | Symbol 13 MovieClip |
"leg2" | Symbol 239 MovieClip Frame 1 | Symbol 17 MovieClip |
"tails" | Symbol 239 MovieClip Frame 1 | Symbol 19 MovieClip |
"body" | Symbol 239 MovieClip Frame 1 | Symbol 21 MovieClip |
"front" | Symbol 239 MovieClip Frame 1 | Symbol 25 MovieClip |
"breast2" | Symbol 239 MovieClip Frame 1 | Symbol 39 MovieClip |
"belly" | Symbol 239 MovieClip Frame 1 | Symbol 58 MovieClip |
"fur" | Symbol 239 MovieClip Frame 1 | Symbol 60 MovieClip |
"breast1" | Symbol 239 MovieClip Frame 1 | Symbol 72 MovieClip |
"hair2" | Symbol 239 MovieClip Frame 1 | Symbol 74 MovieClip |
"ear2" | Symbol 239 MovieClip Frame 1 | Symbol 76 MovieClip |
"head" | Symbol 239 MovieClip Frame 1 | Symbol 78 MovieClip |
"mouth" | Symbol 239 MovieClip Frame 1 | Symbol 94 MovieClip |
"eye" | Symbol 239 MovieClip Frame 1 | Symbol 109 MovieClip |
"hair1" | Symbol 239 MovieClip Frame 1 | Symbol 111 MovieClip |
"ear1" | Symbol 239 MovieClip Frame 1 | Symbol 113 MovieClip |
"drops" | Symbol 239 MovieClip Frame 1 | Symbol 118 MovieClip |
"blush" | Symbol 239 MovieClip Frame 1 | Symbol 123 MovieClip |
"leg1" | Symbol 239 MovieClip Frame 1 | Symbol 147 MovieClip |
"arm1" | Symbol 239 MovieClip Frame 1 | Symbol 219 MovieClip |
"revertmagic" | Symbol 239 MovieClip Frame 1 | Symbol 221 MovieClip |
"magicdot" | Symbol 239 MovieClip Frame 1 | Symbol 224 MovieClip |
"magiccolumn" | Symbol 239 MovieClip Frame 1 | Symbol 228 MovieClip |
"magicslider" | Symbol 239 MovieClip Frame 1 | Symbol 230 MovieClip |
"magicsphere" | Symbol 239 MovieClip Frame 1 | Symbol 232 MovieClip |
"magicinflate" | Symbol 239 MovieClip Frame 1 | Symbol 234 MovieClip |
"magicbreast" | Symbol 239 MovieClip Frame 1 | Symbol 236 MovieClip |
"magicbelly" | Symbol 239 MovieClip Frame 1 | Symbol 238 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "waterdrop" |
Labels
"smile" | Symbol 94 MovieClip Frame 1 |
"closed" | Symbol 94 MovieClip Frame 3 |
"open" | Symbol 94 MovieClip Frame 5 |
"small" | Symbol 94 MovieClip Frame 7 |
"tired" | Symbol 94 MovieClip Frame 9 |
"happy" | Symbol 94 MovieClip Frame 11 |
"teeth" | Symbol 94 MovieClip Frame 13 |
"happy2" | Symbol 94 MovieClip Frame 15 |
"confused" | Symbol 94 MovieClip Frame 17 |
"oh" | Symbol 94 MovieClip Frame 19 |
"impact" | Symbol 94 MovieClip Frame 26 |
"deflate" | Symbol 94 MovieClip Frame 31 |
"inflate" | Symbol 94 MovieClip Frame 50 |
"medium" | Symbol 109 MovieClip Frame 1 |
"big" | Symbol 109 MovieClip Frame 3 |
"open" | Symbol 109 MovieClip Frame 5 |
"small" | Symbol 109 MovieClip Frame 7 |
"closed" | Symbol 109 MovieClip Frame 9 |
"blink" | Symbol 109 MovieClip Frame 11 |
"endblink" | Symbol 109 MovieClip Frame 15 |
"inflate" | Symbol 109 MovieClip Frame 17 |
"tired" | Symbol 109 MovieClip Frame 19 |
"shut" | Symbol 109 MovieClip Frame 21 |
"mad" | Symbol 109 MovieClip Frame 23 |
"joy" | Symbol 109 MovieClip Frame 25 |
"normal" | Symbol 219 MovieClip Frame 1 |
"normal2belly1" | Symbol 219 MovieClip Frame 16 |
"belly1" | Symbol 219 MovieClip Frame 20 |
"belly12normal" | Symbol 219 MovieClip Frame 22 |
"belly12belly2" | Symbol 219 MovieClip Frame 35 |
"normal2belly2" | Symbol 219 MovieClip Frame 40 |
"belly2" | Symbol 219 MovieClip Frame 45 |
"belly22normal" | Symbol 219 MovieClip Frame 47 |
"belly22belly1" | Symbol 219 MovieClip Frame 52 |
"normal2belly3" | Symbol 219 MovieClip Frame 60 |
"belly12belly3" | Symbol 219 MovieClip Frame 66 |
"belly22belly3" | Symbol 219 MovieClip Frame 71 |
"belly3" | Symbol 219 MovieClip Frame 75 |
"belly32belly2" | Symbol 219 MovieClip Frame 77 |
"belly32belly1" | Symbol 219 MovieClip Frame 81 |
"belly32normal" | Symbol 219 MovieClip Frame 86 |
|