[Tools][Expand/Collapse All]Note that automatic extraction of ActionScript 3 is still pretty much unsupported by swfchan. AS1/AS2 works okay most of the time.Frame 1 (20.76 KiB) ● ● ●
function setDepth(c1, c2) {
if (c1._parent != c2._parent) {
return(undefined);
}
if (c1.getDepth() < c2.getDepth()) {
c1.swapDepths(c2);
}
}
function setSize() {
raichu.belly.gotoAndStop(size);
raichu.body.gotoAndStop(size);
raichu.leg1.gotoAndStop(size);
raichu.leg2.gotoAndStop(size);
raichu.breast1.gotoAndStop(bSize);
raichu.breast2.gotoAndStop(bSize);
}
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);
raichu.eye1.gotoAndStop(curState.eye1);
raichu.eye2.gotoAndStop(curState.eye2);
raichu.mouth.gotoAndStop(curState.mouth);
raichu.eye1.pupil._x = p1X + curState.p1X;
raichu.eye1.pupil._y = p1Y + curState.p1Y;
raichu.eye2.pupil._x = p2X + curState.p2X;
raichu.eye2.pupil._y = p2Y + curState.p2Y;
if (!raichu.arm1._currentlabel) {
raichu.arm1.gotoAndStop(curState.arm1);
} else if (raichu.arm1._currentlabel != curState.arm1) {
raichu.arm1.gotoAndPlay((raichu.arm1._currentlabel + "2") + curState.arm1);
}
canBlink = curState.canBlink;
frequency = curState.frequency;
offset = curState.offset;
}
function correctBounds() {
var _local4 = raichu._x + ((borders.xMin * raichu._xscale) * 0.01);
var _local2 = raichu._x + ((borders.xMax * raichu._xscale) * 0.01);
var _local3 = raichu._y + ((borders.yMin * raichu._yscale) * 0.01);
var _local1 = raichu._y + ((borders.yMax * raichu._yscale) * 0.01);
if (_local4 > 0) {
raichu._x = raichu._x + (-_local4);
}
if (_local2 < 800) {
raichu._x = raichu._x + (800 - _local2);
}
if (_local3 > 0) {
raichu._y = raichu._y + (-_local3);
}
if (_local1 < 600) {
raichu._y = raichu._y + (600 - _local1);
}
}
function reset() {
size = (bSize = 1);
setSize();
condition = "";
delete _root.onEnterFrame;
timer = 0;
setState("normal");
blushing = false;
delete raichu.leg1.onEnterFrame;
delete raichu.leg2.onEnterFrame;
raichu.leg1._x = l1X;
raichu.leg1._xscale = 100;
raichu.leg1._yscale = 100;
growth = 0;
}
var lcd_stolen = new LocalConnection().domain();
if (lcd_stolen.indexOf("deviantart") == -1) {
var stolen_mc = _root.createEmptyMovieClip("stolen_mc", _root.getNextHighestDepth());
stolen_mc.createTextField("stolen_txt", 10000, 0, 0, 800, 600);
var stolen_txt = stolen_mc.stolen_txt;
stolen_txt.background = true;
stolen_txt.wordWrap = true;
stolen_txt.multiline = 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.setNewTextFormat(tF);
stolen_txt.text = ("Warning: you are playing this file on\n" + lcd_stolen) + "\n\nBest go to\nhttp://doom-the-wolf.deviantart.com\n to see the original.\n\nClick to close.";
stolen_mc.onMouseDown = (stolen_mc.onPress = function () {
delete this.onMouseDown;
delete this.onPress;
this.removeMovieClip();
});
}
var growth = 0;
var breast = true;
var belly = true;
var size = 1;
var bSize = 1;
var b1X = raichu.breast1._x;
var b2X = raichu.breast2._x;
var b1Y = raichu.breast1._y;
var b2Y = raichu.breast2._y;
var p1X = raichu.eye1.pupil._x;
var p2X = raichu.eye2.pupil._x;
var p1Y = raichu.eye1.pupil._y;
var p2Y = raichu.eye2.pupil._y;
var l1X = raichu.leg1._x;
var l2X = raichu.leg2._x;
var oldX = raichu._x;
var oldY = raichu._y;
var canBlink = true;
var blinking = false;
var blushing = false;
var frequency = 0;
var angle = 0;
var offset = 0;
var condition = "";
var state = "";
var states = {};
var curState = {};
raichu.belly.gotoAndStop(1);
raichu.body.gotoAndStop(1);
raichu.leg1.gotoAndStop(1);
raichu.leg2.gotoAndStop(1);
raichu.breast1.gotoAndStop(1);
raichu.breast2.gotoAndStop(1);
raichu.blush1._alpha = 0;
raichu.blush2._alpha = 0;
raichu.blush1.onEnterFrame = function () {
if (blushing && (this._alpha < 100)) {
this._alpha = this._alpha + 10;
} else if ((!blushing) && (this._alpha > 0)) {
this._alpha = this._alpha - 10;
}
};
raichu.blush2.onEnterFrame = raichu.blush1.onEnterFrame;
states.normal = {mouth:"smile", eye1:"closed", eye2:"closed", arm1:"down", p1X:0, p1Y:0, p2X:0, p2Y:0, frequency:0.1, offset:1, canBlink:false};
states.wakeup = {mouth:"small", eye1:"small", eye2:"small", arm1:"down", p1X:0, p1Y:0, p2X:0, p2Y:0, frequency:0.1, offset:1, canBlink:true};
states.realize = {mouth:"open", eye1:"open", eye2:"open", arm1:"belly", p1X:8, p1Y:2, p2X:6, p2Y:3, frequency:0.35, offset:1, canBlink:true};
states.happy = {mouth:"happy", eye1:"shut", eye2:"shut", arm1:"belly", p1X:8, p1Y:2, p2X:6, p2Y:3, frequency:0.25, offset:1, canBlink:false};
states.enjoy = {mouth:"happy2", eye1:"big", eye2:"big", arm1:"down", p1X:8, p1Y:2, p2X:6, p2Y:3, frequency:0.2, offset:1, canBlink:false};
states.relax = {mouth:"teeth", eye1:"small", eye2:"shut", arm1:"belly", p1X:2, p1Y:1, p2X:2, p2Y:3, frequency:0.2, offset:1, canBlink:false};
states.over = {mouth:"happy2", eye1:"small", eye2:"small", arm1:"belly", p1X:2, p1Y:1, p2X:2, p2Y:3, frequency:0.2, offset:1, canBlink:false};
states.sad = {mouth:"open", eye1:"sad", eye2:"sad", arm1:"belly", p1X:2, p1Y:1, p2X:2, p2Y:3, frequency:0.3, offset:1, canBlink:false};
states.smaller = {mouth:"sad", eye1:"medium2", eye2:"medium2", arm1:"down", p1X:2, p1Y:1, p2X:2, p2Y:3, frequency:0.2, offset:1, canBlink:false};
states.almost = {mouth:"closed", eye1:"sad", eye2:"small", arm1:"down", p1X:2, p1Y:1, p2X:2, p2Y:3, frequency:0.2, offset:1, canBlink:false};
states.pleasure = {mouth:"teeth2", eye1:"shut", eye2:"closed", arm1:"down", p1X:8, p1Y:2, p2X:6, p2Y:3, frequency:0.4, offset:1, canBlink:false};
states.laugh = {mouth:"teeth3", eye1:"shut", eye2:"shut", arm1:"belly", p1X:8, p1Y:2, p2X:6, p2Y:3, frequency:1.4, offset:0.3, canBlink:false};
states.zap = {mouth:"teeth3", eye1:"shut", eye2:"shut", arm1:"down", p1X:8, p1Y:2, p2X:6, p2Y:3, frequency:0, offset:0.3, canBlink:false};
states.bellypoke = {mouth:"sad", eye1:"closed", eye2:"closed", arm1:"down", p1X:8, p1Y:2, p2X:6, p2Y:3, frequency:0, offset:0.3, canBlink:false};
states.bellypoke2 = {mouth:"happy2", eye1:"sad", eye2:"shut", arm1:"belly", p1X:1, p1Y:0, p2X:2, p2Y:3, frequency:0, offset:0.3, canBlink:false};
states.bellypoke3 = {mouth:"happy", eye1:"small", eye2:"small", arm1:"belly", p1X:1, p1Y:0, p2X:2, p2Y:3, frequency:0, offset:0.3, canBlink:false};
states.breastpoke = {mouth:"happy", eye1:"small", eye2:"closed", arm1:"down", p1X:0, p1Y:-8, p2X:2, p2Y:3, frequency:0.3, offset:1, canBlink:false};
states.breastpoke2 = {mouth:"happy", eye1:"open", eye2:"open", arm1:"belly", p1X:0, p1Y:0, p2X:0, p2Y:0, frequency:0.45, offset:1, canBlink:false};
states.breastpoke3 = {mouth:"smile", eye1:"shut", eye2:"shut", arm1:"belly", p1X:0, p1Y:0, p2X:0, p2Y:0, frequency:0.45, offset:1, canBlink:false};
states.dreamy = {mouth:"happy2", eye1:"small", eye2:"small", arm1:"down", p1X:-4, p1Y:-4, p2X:-4, p2Y:-2, frequency:0.3, offset:1, canBlink:false};
states.dreamy2 = {mouth:"happy", eye1:"sad", eye2:"shut", arm1:"down", p1X:-4, p1Y:-4, p2X:-4, p2Y:-2, frequency:0.4, offset:1, canBlink:false};
setState("normal");
growth = 0;
raichu.onEnterFrame = function () {
if (canBlink && (Math.random() > 0.99)) {
raichu.eye1.gotoAndPlay("blink");
raichu.eye2.gotoAndPlay("blink");
blinking = true;
}
if (blinking && (raichu.eye1._currentlabel == "endblink")) {
raichu.eye1.gotoAndPlay(curState.eye1);
raichu.eye2.gotoAndPlay(curState.eye2);
blinking = false;
}
var _local1;
var _local3 = false;
if (growth > 0) {
if (belly && (size < raichu.belly._totalframes)) {
size++;
_local3 = true;
}
if (breast && (bSize < raichu.breast1._totalframes)) {
bSize++;
_local3 = true;
}
if ((size < raichu.belly._totalframes) && (bSize < raichu.breast1._totalframes)) {
_local1 = Math.max(size, bSize);
} else {
_local1 = Math.min(size, bSize);
}
switch (true) {
case _local1 < 10 :
break;
case _local1 < 100 :
setState("wakeup");
break;
case _local1 < 200 :
setState("realize");
break;
case _local1 == 200 :
setState("realize");
if (_panel._non._currentframe == 1) {
growth = 0;
}
break;
case _local1 < 300 :
setState("happy");
break;
case _local1 < 400 :
setState("enjoy");
break;
case _local1 == 400 :
setState("enjoy");
if (_panel._non._currentframe == 1) {
growth = 0;
}
break;
case _local1 < 600 :
setState("relax");
break;
case _local1 >= 600 :
setState("over");
growth = 0;
}
setSize();
if (!_local3) {
growth = 0;
}
} else if (growth < 0) {
if (belly && (size > 1)) {
size--;
_local3 = true;
}
if (breast && (bSize > 1)) {
bSize--;
_local3 = true;
}
if ((size < raichu.belly._totalframes) && (bSize < raichu.breast1._totalframes)) {
_local1 = Math.max(size, bSize);
} else {
_local1 = Math.min(size, bSize);
}
switch (true) {
case _local1 <= 1 :
growth = 0;
setState("normal");
break;
case _local1 < 200 :
setState("almost");
break;
case _local1 < 400 :
setState("smaller");
break;
case _local1 < 600 :
setState("sad");
}
setSize();
if (!_local3) {
growth = 0;
}
}
if (raichu.belly._currentframe < 100) {
setDepth(raichu.leg1, raichu.belly);
} else {
setDepth(raichu.belly, raichu.leg1);
}
if (raichu.belly._currentframe < 5) {
setDepth(raichu.breast2, raichu.belly);
} else {
setDepth(raichu.belly, raichu.breast2);
}
var _local2;
if (raichu.belly._currentframe < 5) {
_local2 = Number(raichu.breast1._currentframe - (raichu.breast1._totalframes * 0.5)) / Number(raichu.breast1._totalframes - (raichu.breast1._totalframes * 0.5));
_local2 = Math.max(_local2, 0);
_local2 = _local2 * 0.1;
} else {
_local2 = 0;
}
raichu.breast1._yscale = 100 - (_local2 * 100);
raichu.breast2._yscale = 100 - (_local2 * 100);
raichu.breast1._xscale = 100 + (_local2 * 100);
raichu.breast2._xscale = 100 + (_local2 * 100);
raichu.breast1._x = b1X + (_local2 * 50);
raichu.breast2._x = b2X;
raichu.breast1._y = b1Y;
raichu.breast2._y = b2Y;
var _local4 = ((Math.sin(angle) * 0.5) * offset) + (0.5 * offset);
raichu.front.gotoAndStop(Math.max(1, Math.floor(_local4 * 20)));
raichu.breast1._y = raichu.breast1._y - (_local4 * 3);
raichu.breast1._x = raichu.breast1._x + _local4;
raichu.breast2._y = raichu.breast2._y - (_local4 * 2.5);
raichu.breast2._x = raichu.breast2._x + _local4;
angle = angle + frequency;
if ((raichu.tail._currentframe == 1) && (!raichu.electricity._visible)) {
if (Math.random() > 0.99) {
if (Math.random() > 0.5) {
raichu.tail.gotoAndPlay("move1");
} else {
raichu.tail.gotoAndPlay("move2");
}
}
}
};
raichu.leg1.onPress = function () {
if (condition != "") {
return(undefined);
}
blushing = true;
this.pullBack = 3;
this.maxPullBack = 3;
this.toNormal = 10;
this.wait = 12;
this.maxToNormal = 10;
this.scaleChangeX = 10;
this.scaleChangeY = 10;
this.baseX = this._x;
this.dir = 0;
if (size < 200) {
this.dir = 1;
} else if (size > 400) {
this.dir = -1;
}
var _local3 = curState.state;
setState("laugh");
condition = "footPoke";
curState.state = _local3;
this.onEnterFrame = function () {
var _local2;
if (this.pullBack > 0) {
this.pullBack--;
_local2 = 1 - (this.pullBack / this.maxPullBack);
if (this.dir == 1) {
this._xscale = 100 - (this.scaleChangeX * _local2);
this._x = l1X - (_local2 * 5);
} else if (this.dir == -1) {
this._yscale = 100 - (this.scaleChangeY * _local2);
}
} else if (this.toNormal > 0) {
this.toNormal--;
_local2 = this.toNormal / this.maxToNormal;
if (this.dir == 1) {
this._x = l1X - (_local2 * 5);
this._xscale = 100 - (this.scaleChangeX * _local2);
} else if (this.dir == -1) {
this._yscale = 100 - (this.scaleChangeY * _local2);
}
} else if (this.wait > 0) {
this.wait--;
} else {
blushing = false;
condition = "";
state = "";
setState(curState.state);
this._xscale = 100;
this._x = l1X;
this._yscale = 100;
delete this.onEnterFrame;
}
};
};
raichu.leg2.onPress = function () {
if (condition != "") {
return(undefined);
}
blushing = true;
this.pullBack = 3;
this.maxPullBack = 3;
this.toNormal = 10;
this.wait = 12;
this.maxToNormal = 10;
this.scaleChangeX = 10;
this.baseX = this._x;
var _local3 = curState.state;
setState("laugh");
condition = "footPoke2";
curState.state = _local3;
this.onEnterFrame = function () {
var _local2;
if (this.pullBack > 0) {
this.pullBack--;
_local2 = 1 - (this.pullBack / this.maxPullBack);
this._xscale = 100 - (this.scaleChangeX * _local2);
} else if (this.toNormal > 0) {
this.toNormal--;
_local2 = this.toNormal / this.maxToNormal;
this._xscale = 100 - (this.scaleChangeX * _local2);
} else if (this.wait > 0) {
this.wait--;
} else {
blushing = false;
condition = "";
state = "";
setState(curState.state);
this._xscale = 100;
delete this.onEnterFrame;
}
};
};
raichu.electricity._visible = false;
raichu.electricity.gotoAndStop(1);
raichu.tail.onPress = function () {
if (((condition != "") || (size < raichu.belly._totalframes)) || (bSize < raighu.breast1._totalframes)) {
return(undefined);
}
if ((this._currentframe == 1) && (!raichu.electricity._visible)) {
var _local2 = curState.state;
setState("zap");
curState.state = _local2;
condition = "tailpoke";
raichu.electricity._visible = true;
raichu.electricity.onEnterFrame = function () {
if (this._currentframe == this._totalframes) {
condition = "";
setState(curState.state);
this._visible = false;
delete this.onEnterFrame;
}
};
raichu.electricity.play();
}
};
var timer = 0;
raichu.belly.onPress = function () {
if (condition != "") {
return(undefined);
}
var _local3 = curState.state;
timer = 30;
if (size < 10) {
setState("bellypoke");
timer = 15;
} else if (size < 200) {
setState("bellypoke2");
} else if (size < 400) {
setState("pleasure");
blushing = true;
} else {
setState("pleasure");
blushing = true;
}
curState.state = _local3;
condition = "bellypoke";
_root.onEnterFrame = function () {
if (timer < 0) {
blushing = false;
condition = "";
setState(curState.state);
delete this.onEnterFrame;
}
timer--;
};
};
raichu.breast1.onPress = function () {
if (condition != "") {
return(undefined);
}
var _local3 = curState.state;
timer = 30;
blushing = true;
if (bSize < 200) {
setState("breastpoke");
blushing = false;
} else if (bSize < 400) {
setState("breastpoke2");
} else {
setState("breastpoke3");
}
curState.state = _local3;
condition = "breastpoke";
_root.onEnterFrame = function () {
if (timer < 0) {
blushing = false;
condition = "";
setState(curState.state);
delete this.onEnterFrame;
}
timer--;
};
};
raichu.breast2.onPress = raichu.breast1.onPress;
var caressing = false;
raichu.head.onRollOver = function () {
if (caressing) {
return(undefined);
}
if (condition != "") {
return(undefined);
}
var _local3 = curState.state;
timer = 30;
blushing = true;
setState("dreamy");
curState.state = _local3;
condition = "facetouch";
_root.onEnterFrame = function () {
if (timer < 0) {
blushing = false;
condition = "";
setState(curState.state);
delete this.onEnterFrame;
}
timer--;
};
};
raichu.head.onMouseDown = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
caressing = true;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
if (condition == "facerub") {
timer = 30;
} else if (condition == "") {
var _local3 = curState.state;
timer = 30;
blushing = true;
setState("dreamy2");
curState.state = _local3;
condition = "facerub";
_root.onEnterFrame = function () {
if (timer < 0) {
blushing = false;
condition = "";
setState(curState.state);
delete this.onEnterFrame;
}
timer--;
};
}
}
};
this.onMouseUp = function () {
caressing = false;
delete this.onMouseUp;
delete this.onMouseMove;
blushing = false;
};
}
};
var oldMX;
var oldMY;
var oldRX;
var oldRY;
_root.onMouseDown = function () {
if (raichu.belly.hitTest(_root._xmouse, _root._ymouse, true)) {
return(undefined);
}
if (raichu.breast1.hitTest(_root._xmouse, _root._ymouse, true)) {
return(undefined);
}
if (raichu.breast2.hitTest(_root._xmouse, _root._ymouse, true)) {
return(undefined);
}
if (raichu.leg1.hitTest(_root._xmouse, _root._ymouse, true)) {
return(undefined);
}
if (raichu.leg2.hitTest(_root._xmouse, _root._ymouse, true)) {
return(undefined);
}
if (raichu.head.hitTest(_root._xmouse, _root._ymouse, true)) {
return(undefined);
}
if (_panel._y < 590) {
return(undefined);
}
oldMX = _root._xmouse;
oldMY = _root._ymouse;
oldRX = raichu._x;
oldRY = raichu._y;
_root.onMouseMove = function () {
raichu._x = (oldRX + _root._xmouse) - oldMX;
raichu._y = (oldRY + _root._ymouse) - oldMY;
correctBounds();
};
};
_root.onMouseUp = function () {
delete _root.onMouseMove;
};
var borders = raichu.getBounds(raichu);
raichu.ear1.onRollOver = function () {
if ((this._currentframe == 1) && (Math.random() < 0.33)) {
this.play();
}
};
_panel._expand._txt.text = "Expand";
_panel._revert._txt.text = "Revert";
_panel._cont_txt.text = "Continuous";
_panel._non_txt.text = "Non-stop";
_panel._belly_txt.text = "Belly";
_panel._breast_txt.text = "Breasts";
_panel._info.text = "Interactive anthro Raichu expansion.\nDrawn, animated and programmed by Doom the wolf\nhttp://doom-the-wolf.deviantart.com";
_panel._plus._txt.text = "+";
_panel._minus._txt.text = "-";
_panel._zero._txt.text = "0";
_panel._belly.gotoAndStop(2);
_panel._breast.gotoAndStop(2);
_panel.onEnterFrame = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.destY = 500;
} else {
this.destY = 600;
}
this._y = this._y + (Number(this.destY - this._y) * 0.5);
var _local3;
if ((size < raichu.belly._totalframes) && (bSize < raichu.breast1._totalframes)) {
_local3 = Math.max(size, bSize);
} else {
_local3 = Math.min(size, bSize);
}
if (_local3 < 200) {
_panel._expand._txt.text = "Expand";
} else if (_local3 < 400) {
_panel._expand._txt.text = "Bigger";
} else if (_local3 < 600) {
_panel._expand._txt.text = "More";
} else {
_panel._expand._txt.text = "Reset";
}
};
_panel._expand.onPress = function () {
if ((size < raichu.belly._totalframes) && (bSize < raichu.breast1._totalframes)) {
maxS = Math.max(size, bSize);
} else {
maxS = Math.min(size, bSize);
}
if (maxS < 600) {
growth = 1;
} else {
reset();
}
};
_panel._revert.onPress = function () {
growth = -1;
};
_panel._expand.onMouseUp = function () {
if (_panel._cont._currentframe == 1) {
growth = 0;
}
};
_panel._cont.onPress = function () {
growth = 0;
this.gotoAndStop(3 - this._currentframe);
};
_panel._plus.onPress = function () {
this.onEnterFrame = function () {
if (raichu._xscale >= 300) {
delete this.onEnterFrame;
return(undefined);
}
raichu._xscale = raichu._xscale + 2;
raichu._yscale = raichu._xscale;
correctBounds();
};
};
_panel._minus.onPress = function () {
this.onEnterFrame = function () {
raichu._xscale = raichu._xscale - 2;
raichu._yscale = raichu._xscale;
if ((raichu._width < 800) || (raichu._height < 600)) {
raichu._xscale = raichu._xscale + 2;
raichu._yscale = raichu._xscale;
delete this.onEnterFrame;
}
correctBounds();
};
};
_panel._zero.onPress = function () {
raichu._xscale = 100;
raichu._yscale = 100;
raichu._x = oldX;
raichu._y = oldY;
};
_panel._plus.onMouseUp = function () {
delete _panel._plus.onEnterFrame;
delete _panel._minus.onEnterFrame;
};
_panel._non.onPress = function () {
this.gotoAndStop(3 - this._currentframe);
};
_panel._belly.onPress = function () {
this.gotoAndStop(3 - this._currentframe);
belly = Boolean(this._currentframe == 2);
};
_panel._breast.onPress = function () {
this.gotoAndStop(3 - this._currentframe);
breast = Boolean(this._currentframe == 2);
};
Symbol 29 MovieClip Frame 1 (8 B)
stop();
Symbol 42 MovieClip Frame 1 (8 B)
stop();
Symbol 42 MovieClip Frame 37 (17 B)
gotoAndStop (1);
Symbol 42 MovieClip Frame 75 (17 B)
gotoAndStop (1);
Symbol 74 MovieClip Frame 1 (26 B)
_currentlabel = "medium";
Symbol 74 MovieClip Frame 2 (8 B)
stop();
Symbol 74 MovieClip Frame 3 (27 B)
_currentlabel = "medium2";
Symbol 74 MovieClip Frame 4 (8 B)
stop();
Symbol 74 MovieClip Frame 5 (25 B)
_currentlabel = "small";
Symbol 74 MovieClip Frame 6 (8 B)
stop();
Symbol 74 MovieClip Frame 7 (26 B)
_currentlabel = "closed";
Symbol 74 MovieClip Frame 8 (8 B)
stop();
Symbol 74 MovieClip Frame 9 (23 B)
_currentlabel = "big";
Symbol 74 MovieClip Frame 10 (8 B)
stop();
Symbol 74 MovieClip Frame 11 (24 B)
_currentlabel = "open";
Symbol 74 MovieClip Frame 12 (8 B)
stop();
Symbol 74 MovieClip Frame 13 (25 B)
_currentlabel = "blink";
Symbol 74 MovieClip Frame 17 (28 B)
_currentlabel = "endblink";
Symbol 74 MovieClip Frame 18 (8 B)
stop();
Symbol 74 MovieClip Frame 19 (24 B)
_currentlabel = "shut";
Symbol 74 MovieClip Frame 20 (8 B)
stop();
Symbol 74 MovieClip Frame 21 (23 B)
_currentlabel = "sad";
Symbol 74 MovieClip Frame 22 (8 B)
stop();
Symbol 87 MovieClip Frame 1 (26 B)
_currentlabel = "medium";
Symbol 87 MovieClip Frame 2 (8 B)
stop();
Symbol 87 MovieClip Frame 3 (27 B)
_currentlabel = "medium2";
Symbol 87 MovieClip Frame 4 (8 B)
stop();
Symbol 87 MovieClip Frame 5 (25 B)
_currentlabel = "small";
Symbol 87 MovieClip Frame 6 (8 B)
stop();
Symbol 87 MovieClip Frame 7 (26 B)
_currentlabel = "closed";
Symbol 87 MovieClip Frame 8 (8 B)
stop();
Symbol 87 MovieClip Frame 9 (23 B)
_currentlabel = "big";
Symbol 87 MovieClip Frame 10 (8 B)
stop();
Symbol 87 MovieClip Frame 11 (24 B)
_currentlabel = "open";
Symbol 87 MovieClip Frame 12 (8 B)
stop();
Symbol 87 MovieClip Frame 13 (25 B)
_currentlabel = "blink";
Symbol 87 MovieClip Frame 17 (28 B)
_currentlabel = "endblink";
Symbol 87 MovieClip Frame 18 (8 B)
stop();
Symbol 87 MovieClip Frame 19 (24 B)
_currentlabel = "shut";
Symbol 87 MovieClip Frame 20 (8 B)
stop();
Symbol 87 MovieClip Frame 21 (23 B)
_currentlabel = "sad";
Symbol 87 MovieClip Frame 22 (8 B)
stop();
Symbol 100 MovieClip Frame 1 (25 B)
_currentlabel = "smile";
Symbol 100 MovieClip Frame 2 (8 B)
stop();
Symbol 100 MovieClip Frame 3 (25 B)
_currentlabel = "happy";
Symbol 100 MovieClip Frame 4 (8 B)
stop();
Symbol 100 MovieClip Frame 5 (24 B)
_currentlabel = "open";
Symbol 100 MovieClip Frame 6 (8 B)
stop();
Symbol 100 MovieClip Frame 7 (26 B)
_currentlabel = "closed";
Symbol 100 MovieClip Frame 8 (8 B)
stop();
Symbol 100 MovieClip Frame 9 (26 B)
_currentlabel = "happy2";
Symbol 100 MovieClip Frame 10 (8 B)
stop();
Symbol 100 MovieClip Frame 11 (25 B)
_currentlabel = "teeth";
Symbol 100 MovieClip Frame 12 (8 B)
stop();
Symbol 100 MovieClip Frame 13 (26 B)
_currentlabel = "teeth2";
Symbol 100 MovieClip Frame 14 (8 B)
stop();
Symbol 100 MovieClip Frame 15 (25 B)
_currentlabel = "small";
Symbol 100 MovieClip Frame 16 (8 B)
stop();
Symbol 100 MovieClip Frame 17 (23 B)
_currentlabel = "sad";
Symbol 100 MovieClip Frame 18 (8 B)
stop();
Symbol 100 MovieClip Frame 19 (23 B)
_currentlabel = "sad";
Symbol 100 MovieClip Frame 20 (8 B)
stop();
Symbol 105 MovieClip Frame 1 (8 B)
stop();
Symbol 182 MovieClip Frame 1 (24 B)
_currentlabel = "down";
Symbol 182 MovieClip Frame 2 (8 B)
stop();
Symbol 182 MovieClip Frame 10 (25 B)
_currentlabel = "belly";
Symbol 182 MovieClip Frame 14 (23 B)
gotoAndStop ("belly");
Symbol 182 MovieClip Frame 15 (25 B)
_currentlabel = "belly";
Symbol 182 MovieClip Frame 16 (8 B)
stop();
Symbol 182 MovieClip Frame 17 (24 B)
_currentlabel = "down";
Symbol 182 MovieClip Frame 21 (22 B)
gotoAndStop ("down");
Symbol 199 MovieClip Frame 1 (8 B)
stop();