Section 1
//None (fl.transitions.easing.None)
package fl.transitions.easing {
public class None {
public static function easeNone(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
return ((((_arg3 * _arg1) / _arg4) + _arg2));
}
public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
return ((((_arg3 * _arg1) / _arg4) + _arg2));
}
public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
return ((((_arg3 * _arg1) / _arg4) + _arg2));
}
public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
return ((((_arg3 * _arg1) / _arg4) + _arg2));
}
}
}//package fl.transitions.easing
Section 2
//Blinds (fl.transitions.Blinds)
package fl.transitions {
import flash.display.*;
import flash.geom.*;
public class Blinds extends Transition {
protected var _numStrips:uint;// = 10
protected var _dimension:uint;// = 0
protected var _mask:MovieClip;
protected var _innerMask:MovieClip;
public function Blinds(_arg1:MovieClip, _arg2:Object, _arg3:TransitionManager){
super(_arg1, _arg2, _arg3);
this._dimension = (_arg2.dimension) ? 1 : 0;
if (_arg2.numStrips){
this._numStrips = _arg2.numStrips;
};
this._initMask();
}
override public function get type():Class{
return (Blinds);
}
override public function start():void{
this._content.mask = this._mask;
super.start();
}
override public function cleanUp():void{
this._content.removeChild(this._mask);
this._content.mask = null;
super.cleanUp();
}
protected function _initMask():void{
this._mask = new MovieClip();
this._mask.visible = false;
this._content.addChild(this._mask);
this._innerMask = new MovieClip();
this._mask.addChild(this._innerMask);
this._innerMask.x = (this._innerMask.y = 50);
if (this._dimension){
this._innerMask.rotation = -90;
};
this._innerMask.graphics.beginFill(0xFF0000);
this.drawBox(this._innerMask, 0, 0, 100, 100);
this._innerMask.graphics.endFill();
var _local1:Rectangle = this._innerBounds;
this._mask.x = _local1.left;
this._mask.y = _local1.top;
this._mask.width = _local1.width;
this._mask.height = _local1.height;
}
override protected function _render(_arg1:Number):void{
var _local2:Number = (100 / this._numStrips);
var _local3:Number = (_arg1 * _local2);
var _local4:MovieClip = this._innerMask;
_local4.graphics.clear();
var _local5:Number = this._numStrips;
_local4.graphics.beginFill(0xFF0000);
while (_local5--) {
this.drawBox(_local4, -50, ((_local5 * _local2) - 50), 100, _local3);
};
_local4.graphics.endFill();
}
}
}//package fl.transitions
Section 3
//Transition (fl.transitions.Transition)
package fl.transitions {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
public class Transition extends EventDispatcher {
public var ID:int;
protected var _content:MovieClip;
protected var _manager:TransitionManager;
protected var _direction:uint;// = 0
protected var _duration:Number;// = 2
protected var _easing:Function;
protected var _progress:Number;
protected var _innerBounds:Rectangle;
protected var _outerBounds:Rectangle;
protected var _width:Number;// = NAN
protected var _height:Number;// = NAN
protected var _twn:Tween;
public static const IN:uint = 0;
public static const OUT:uint = 1;
public function Transition(_arg1:MovieClip, _arg2:Object, _arg3:TransitionManager){
this.content = _arg1;
this.direction = _arg2.direction;
this.duration = _arg2.duration;
this.easing = _arg2.easing;
this.manager = _arg3;
this._innerBounds = this.manager._innerBounds;
this._outerBounds = this.manager._outerBounds;
this._width = this.manager._width;
this._height = this.manager._height;
this._resetTween();
}
public function get type():Class{
return (Transition);
}
public function set manager(_arg1:TransitionManager):void{
if (this._manager){
this.removeEventListener("transitionInDone", this._manager.transitionInDone);
this.removeEventListener("transitionOutDone", this._manager.transitionOutDone);
};
this._manager = _arg1;
this.addEventListener("transitionInDone", this._manager.transitionInDone);
this.addEventListener("transitionOutDone", this._manager.transitionOutDone);
}
public function get manager():TransitionManager{
return (this._manager);
}
public function set content(_arg1:MovieClip):void{
if (_arg1){
this._content = _arg1;
if (this._twn){
this._twn.obj = _arg1;
};
};
}
public function get content():MovieClip{
return (this._content);
}
public function get direction():Number{
return (this._direction);
}
public function set direction(_arg1:Number):void{
this._direction = (_arg1) ? 1 : 0;
}
public function get duration():Number{
return (this._duration);
}
public function set duration(_arg1:Number):void{
if (_arg1){
this._duration = _arg1;
if (this._twn){
this._twn.duration = _arg1;
};
};
}
public function get easing():Function{
return (this._easing);
}
public function set easing(_arg1:Function):void{
this._easing = _arg1;
if (this._twn){
this._twn.func = _arg1;
};
}
public function set progress(_arg1:Number):void{
if (this._progress == _arg1){
return;
};
this._progress = _arg1;
if (this._direction){
this._render((1 - _arg1));
} else {
this._render(_arg1);
};
this.dispatchEvent(new Event("transitionProgress"));
}
public function get progress():Number{
return (this._progress);
}
public function start():void{
this.content.visible = true;
this._twn.start();
}
public function stop():void{
this._twn.fforward();
this._twn.stop();
}
public function cleanUp():void{
this.removeEventListener("transitionInDone", this._manager.transitionInDone);
this.removeEventListener("transitionOutDone", this._manager.transitionOutDone);
this.stop();
}
public function drawBox(_arg1:MovieClip, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number):void{
_arg1.graphics.moveTo(_arg2, _arg3);
_arg1.graphics.lineTo((_arg2 + _arg4), _arg3);
_arg1.graphics.lineTo((_arg2 + _arg4), (_arg3 + _arg5));
_arg1.graphics.lineTo(_arg2, (_arg3 + _arg5));
_arg1.graphics.lineTo(_arg2, _arg3);
}
public function drawCircle(_arg1:MovieClip, _arg2:Number, _arg3:Number, _arg4:Number):void{
_arg1.graphics.moveTo((_arg2 + _arg4), _arg3);
_arg1.graphics.curveTo((_arg4 + _arg2), ((Math.tan((Math.PI / 8)) * _arg4) + _arg3), ((Math.sin((Math.PI / 4)) * _arg4) + _arg2), ((Math.sin((Math.PI / 4)) * _arg4) + _arg3));
_arg1.graphics.curveTo(((Math.tan((Math.PI / 8)) * _arg4) + _arg2), (_arg4 + _arg3), _arg2, (_arg4 + _arg3));
_arg1.graphics.curveTo(((-(Math.tan((Math.PI / 8))) * _arg4) + _arg2), (_arg4 + _arg3), ((-(Math.sin((Math.PI / 4))) * _arg4) + _arg2), ((Math.sin((Math.PI / 4)) * _arg4) + _arg3));
_arg1.graphics.curveTo((-(_arg4) + _arg2), ((Math.tan((Math.PI / 8)) * _arg4) + _arg3), (-(_arg4) + _arg2), _arg3);
_arg1.graphics.curveTo((-(_arg4) + _arg2), ((-(Math.tan((Math.PI / 8))) * _arg4) + _arg3), ((-(Math.sin((Math.PI / 4))) * _arg4) + _arg2), ((-(Math.sin((Math.PI / 4))) * _arg4) + _arg3));
_arg1.graphics.curveTo(((-(Math.tan((Math.PI / 8))) * _arg4) + _arg2), (-(_arg4) + _arg3), _arg2, (-(_arg4) + _arg3));
_arg1.graphics.curveTo(((Math.tan((Math.PI / 8)) * _arg4) + _arg2), (-(_arg4) + _arg3), ((Math.sin((Math.PI / 4)) * _arg4) + _arg2), ((-(Math.sin((Math.PI / 4))) * _arg4) + _arg3));
_arg1.graphics.curveTo((_arg4 + _arg2), ((-(Math.tan((Math.PI / 8))) * _arg4) + _arg3), (_arg4 + _arg2), _arg3);
}
protected function _render(_arg1:Number):void{
}
private function _resetTween():void{
if (this._twn){
this._twn.stop();
this._twn.removeEventListener(TweenEvent.MOTION_FINISH, this.onMotionFinished);
};
this._twn = new Tween(this, "", this.easing, 0, 1, this.duration, true);
this._twn.stop();
this._twn.prop = "progress";
this._twn.addEventListener(TweenEvent.MOTION_FINISH, this.onMotionFinished, false, 0, true);
}
private function _noEase(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
return ((((_arg3 * _arg1) / _arg4) + _arg2));
}
public function onMotionFinished(_arg1:Object):void{
if (this.direction == Transition.OUT){
this.dispatchEvent(new Event("transitionOutDone"));
} else {
this.dispatchEvent(new Event("transitionInDone"));
};
}
}
}//package fl.transitions
Section 4
//TransitionManager (fl.transitions.TransitionManager)
package fl.transitions {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
public class TransitionManager extends EventDispatcher {
public var type:Object;
public var className:String;// = "TransitionManager"
private var _content:MovieClip;
private var _transitions:Object;
public var _innerBounds:Rectangle;
public var _outerBounds:Rectangle;
public var _width:Number;// = NAN
public var _height:Number;// = NAN
private var _contentAppearance:Object;
private var _visualPropList:Object;
private var _triggerEvent:String;
private static var IDCount:int = 0;
public function TransitionManager(_arg1:MovieClip){
this.type = TransitionManager;
this._visualPropList = {x:null, y:null, scaleX:null, scaleY:null, alpha:null, rotation:null};
super();
this.content = _arg1;
this._transitions = {};
}
public function get content():MovieClip{
return (this._content);
}
public function set content(_arg1:MovieClip):void{
this._content = _arg1;
this.saveContentAppearance();
}
public function get transitionsList():Object{
return (this._transitions);
}
public function get numTransitions():Number{
var _local2:Transition;
var _local1:Number = 0;
for each (_local2 in this._transitions) {
_local1++;
};
return (_local1);
}
public function get numInTransitions():Number{
var _local3:Transition;
var _local1:Number = 0;
var _local2:Object = this._transitions;
for each (_local3 in _local2) {
if (!_local3.direction){
_local1++;
};
};
return (_local1);
}
public function get numOutTransitions():Number{
var _local3:Transition;
var _local1:Number = 0;
var _local2:Object = this._transitions;
for each (_local3 in _local2) {
if (_local3.direction){
_local1++;
};
};
return (_local1);
}
public function get contentAppearance():Object{
return (this._contentAppearance);
}
public function startTransition(_arg1:Object):Transition{
this.removeTransition(this.findTransition(_arg1));
var _local2:Class = _arg1.type;
var _local3:Transition = new _local2(this._content, _arg1, this);
this.addTransition(_local3);
_local3.start();
return (_local3);
}
public function addTransition(_arg1:Transition):Transition{
_arg1.ID = ++TransitionManager.IDCount;
this._transitions[_arg1.ID] = _arg1;
return (_arg1);
}
public function removeTransition(_arg1:Transition):Boolean{
if (((((!(_arg1)) || (!(this._transitions)))) || (!(this._transitions[_arg1.ID])))){
return (false);
};
_arg1.cleanUp();
return (delete this._transitions[_arg1.ID]);
}
public function findTransition(_arg1:Object):Transition{
var _local2:Transition;
for each (_local2 in this._transitions) {
if (_local2.type == _arg1.type){
return (_local2);
};
};
return (null);
}
public function removeAllTransitions():void{
var _local1:Transition;
for each (_local1 in this._transitions) {
_local1.cleanUp();
this.removeTransition(_local1);
};
}
public function saveContentAppearance():void{
var _local2:Object;
var _local3:String;
var _local1:MovieClip = this._content;
if (!this._contentAppearance){
_local2 = (this._contentAppearance = {});
for (_local3 in this._visualPropList) {
_local2[_local3] = _local1[_local3];
};
_local2.colorTransform = _local1.transform.colorTransform;
};
this._innerBounds = _local1.getBounds(_local1);
this._outerBounds = _local1.getBounds(_local1.parent);
this._width = _local1.width;
this._height = _local1.height;
}
public function restoreContentAppearance():void{
var _local3:String;
var _local1:MovieClip = this._content;
var _local2:Object = this._contentAppearance;
for (_local3 in this._visualPropList) {
_local1[_local3] = _local2[_local3];
};
_local1.transform.colorTransform = _local2.colorTransform;
}
function transitionInDone(_arg1:Object):void{
var _local2:Boolean;
this.removeTransition(_arg1.target);
if (this.numInTransitions == 0){
_local2 = this._content.visible;
if ((((this._triggerEvent == "hide")) || ((this._triggerEvent == "hideChild")))){
this._content.visible = false;
};
if (_local2){
this.dispatchEvent(new Event("allTransitionsInDone"));
};
};
}
function transitionOutDone(_arg1:Object):void{
var _local2:Boolean;
this.removeTransition(_arg1.target);
if (this.numOutTransitions == 0){
this.restoreContentAppearance();
_local2 = this._content.visible;
if (((_local2) && ((((this._triggerEvent == "hide")) || ((this._triggerEvent == "hideChild")))))){
this._content.visible = false;
};
if (_local2){
this.dispatchEvent(new Event("allTransitionsOutDone"));
};
};
}
public static function start(_arg1:MovieClip, _arg2:Object):Transition{
if (!_arg1.__transitionManager){
_arg1.__transitionManager = new TransitionManager(_arg1);
};
if (_arg2.direction == 1){
_arg1.__transitionManager._triggerEvent = "hide";
} else {
_arg1.__transitionManager._triggerEvent = "reveal";
};
return (_arg1.__transitionManager.startTransition(_arg2));
}
}
}//package fl.transitions
Section 5
//Tween (fl.transitions.Tween)
package fl.transitions {
import flash.events.*;
import flash.display.*;
import flash.utils.*;
public class Tween extends EventDispatcher {
public var isPlaying:Boolean;// = false
public var obj:Object;// = null
public var prop:String;// = ""
public var func:Function;
public var begin:Number;// = NAN
public var change:Number;// = NAN
public var useSeconds:Boolean;// = false
public var prevTime:Number;// = NAN
public var prevPos:Number;// = NAN
public var looping:Boolean;// = false
private var _duration:Number;// = NAN
private var _time:Number;// = NAN
private var _fps:Number;// = NAN
private var _position:Number;// = NAN
private var _startTime:Number;// = NAN
private var _intervalID:uint;// = 0
private var _finish:Number;// = NAN
private var _timer:Timer;// = null
protected static var _mc:MovieClip = new MovieClip();
public function Tween(_arg1:Object, _arg2:String, _arg3:Function, _arg4:Number, _arg5:Number, _arg6:Number, _arg7:Boolean=false){
this.func = function (_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{
return ((((_arg3 * _arg1) / _arg4) + _arg2));
};
super();
if (!arguments.length){
return;
};
this.obj = _arg1;
this.prop = _arg2;
this.begin = _arg4;
this.position = _arg4;
this.duration = _arg6;
this.useSeconds = _arg7;
if ((_arg3 is Function)){
this.func = _arg3;
};
this.finish = _arg5;
this._timer = new Timer(100);
this.start();
}
public function get time():Number{
return (this._time);
}
public function set time(_arg1:Number):void{
this.prevTime = this._time;
if (_arg1 > this.duration){
if (this.looping){
this.rewind((_arg1 - this._duration));
this.update();
this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_LOOP, this._time, this._position));
} else {
if (this.useSeconds){
this._time = this._duration;
this.update();
};
this.stop();
this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_FINISH, this._time, this._position));
};
} else {
if (_arg1 < 0){
this.rewind();
this.update();
} else {
this._time = _arg1;
this.update();
};
};
}
public function get duration():Number{
return (this._duration);
}
public function set duration(_arg1:Number):void{
this._duration = ((_arg1)<=0) ? Infinity : _arg1;
}
public function get FPS():Number{
return (this._fps);
}
public function set FPS(_arg1:Number):void{
var _local2:Boolean = this.isPlaying;
this.stopEnterFrame();
this._fps = _arg1;
if (_local2){
this.startEnterFrame();
};
}
public function get position():Number{
return (this.getPosition(this._time));
}
public function set position(_arg1:Number):void{
this.setPosition(_arg1);
}
public function getPosition(_arg1:Number=NaN):Number{
if (isNaN(_arg1)){
_arg1 = this._time;
};
return (this.func(_arg1, this.begin, this.change, this._duration));
}
public function setPosition(_arg1:Number):void{
this.prevPos = this._position;
if (this.prop.length){
this.obj[this.prop] = (this._position = _arg1);
};
this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_CHANGE, this._time, this._position));
}
public function get finish():Number{
return ((this.begin + this.change));
}
public function set finish(_arg1:Number):void{
this.change = (_arg1 - this.begin);
}
public function continueTo(_arg1:Number, _arg2:Number):void{
this.begin = this.position;
this.finish = _arg1;
if (!isNaN(_arg2)){
this.duration = _arg2;
};
this.start();
}
public function yoyo():void{
this.continueTo(this.begin, this.time);
}
protected function startEnterFrame():void{
var _local1:Number;
if (isNaN(this._fps)){
_mc.addEventListener(Event.ENTER_FRAME, this.onEnterFrame, false, 0, true);
} else {
_local1 = (1000 / this._fps);
this._timer.delay = _local1;
this._timer.addEventListener(TimerEvent.TIMER, this.timerHandler, false, 0, true);
this._timer.start();
};
this.isPlaying = true;
}
protected function stopEnterFrame():void{
if (isNaN(this._fps)){
_mc.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame);
} else {
this._timer.stop();
};
this.isPlaying = false;
}
public function start():void{
this.rewind();
this.startEnterFrame();
this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_START, this._time, this._position));
}
public function stop():void{
this.stopEnterFrame();
this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_STOP, this._time, this._position));
}
public function resume():void{
this.fixTime();
this.startEnterFrame();
this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_RESUME, this._time, this._position));
}
public function rewind(_arg1:Number=0):void{
this._time = _arg1;
this.fixTime();
this.update();
}
public function fforward():void{
this.time = this._duration;
this.fixTime();
}
public function nextFrame():void{
if (this.useSeconds){
this.time = ((getTimer() - this._startTime) / 1000);
} else {
this.time = (this._time + 1);
};
}
protected function onEnterFrame(_arg1:Event):void{
this.nextFrame();
}
protected function timerHandler(_arg1:TimerEvent):void{
this.nextFrame();
_arg1.updateAfterEvent();
}
public function prevFrame():void{
if (!this.useSeconds){
this.time = (this._time - 1);
};
}
private function fixTime():void{
if (this.useSeconds){
this._startTime = (getTimer() - (this._time * 1000));
};
}
private function update():void{
this.setPosition(this.getPosition(this._time));
}
}
}//package fl.transitions
Section 6
//TweenEvent (fl.transitions.TweenEvent)
package fl.transitions {
import flash.events.*;
public class TweenEvent extends Event {
public var time:Number;// = NAN
public var position:Number;// = NAN
public static const MOTION_START:String = "motionStart";
public static const MOTION_STOP:String = "motionStop";
public static const MOTION_FINISH:String = "motionFinish";
public static const MOTION_CHANGE:String = "motionChange";
public static const MOTION_RESUME:String = "motionResume";
public static const MOTION_LOOP:String = "motionLoop";
public function TweenEvent(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false, _arg5:Boolean=false){
super(_arg1, _arg4, _arg5);
this.time = _arg2;
this.position = _arg3;
}
override public function clone():Event{
return (new TweenEvent(this.type, this.time, this.position, this.bubbles, this.cancelable));
}
}
}//package fl.transitions
Section 7
//app_199 (hannahmontanaatthedentist_fla.app_199)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class app_199 extends MovieClip {
public var hit:MovieClip;
public function app_199(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 8
//BG_101_148 (hannahmontanaatthedentist_fla.BG_101_148)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_101_148 extends MovieClip {
public function BG_101_148(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 9
//BG_103_152 (hannahmontanaatthedentist_fla.BG_103_152)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_103_152 extends MovieClip {
public function BG_103_152(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 10
//BG_104_134 (hannahmontanaatthedentist_fla.BG_104_134)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_104_134 extends MovieClip {
public function BG_104_134(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 11
//BG_106_145 (hannahmontanaatthedentist_fla.BG_106_145)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_106_145 extends MovieClip {
public function BG_106_145(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 12
//BG_107_143 (hannahmontanaatthedentist_fla.BG_107_143)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_107_143 extends MovieClip {
public function BG_107_143(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 13
//BG_109_146 (hannahmontanaatthedentist_fla.BG_109_146)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_109_146 extends MovieClip {
public function BG_109_146(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 14
//BG_110_139 (hannahmontanaatthedentist_fla.BG_110_139)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_110_139 extends MovieClip {
public function BG_110_139(){
addFrameScript(0, frame1, 60, frame61);
}
function frame1(){
stop();
}
function frame61(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 15
//BG_112_141 (hannahmontanaatthedentist_fla.BG_112_141)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_112_141 extends MovieClip {
public function BG_112_141(){
addFrameScript(0, frame1, 60, frame61);
}
function frame1(){
stop();
}
function frame61(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 16
//BG_113_144 (hannahmontanaatthedentist_fla.BG_113_144)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_113_144 extends MovieClip {
public function BG_113_144(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 17
//BG_115_153 (hannahmontanaatthedentist_fla.BG_115_153)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_115_153 extends MovieClip {
public function BG_115_153(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 18
//BG_116_135 (hannahmontanaatthedentist_fla.BG_116_135)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_116_135 extends MovieClip {
public function BG_116_135(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 19
//BG_118_137 (hannahmontanaatthedentist_fla.BG_118_137)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_118_137 extends MovieClip {
public function BG_118_137(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 20
//BG_119_149 (hannahmontanaatthedentist_fla.BG_119_149)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_119_149 extends MovieClip {
public function BG_119_149(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 21
//BG_121_147 (hannahmontanaatthedentist_fla.BG_121_147)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_121_147 extends MovieClip {
public function BG_121_147(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 22
//BG_124_154 (hannahmontanaatthedentist_fla.BG_124_154)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_124_154 extends MovieClip {
public function BG_124_154(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 23
//BG_125_150 (hannahmontanaatthedentist_fla.BG_125_150)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_125_150 extends MovieClip {
public function BG_125_150(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 24
//BG_126_99 (hannahmontanaatthedentist_fla.BG_126_99)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_126_99 extends MovieClip {
public var mc:MovieClip;
public function BG_126_99(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 25
//BG_135_206 (hannahmontanaatthedentist_fla.BG_135_206)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_135_206 extends MovieClip {
public var hit:MovieClip;
public function BG_135_206(){
addFrameScript(0, frame1, 19, frame20);
}
function frame1(){
stop();
mouseChildren = false;
}
function frame20(){
gotoAndPlay(2);
}
}
}//package hannahmontanaatthedentist_fla
Section 26
//BG_136_98 (hannahmontanaatthedentist_fla.BG_136_98)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_136_98 extends MovieClip {
public function BG_136_98(){
addFrameScript(0, frame1, 1, frame2, 9, frame10, 17, frame18, 27, frame28, 39, frame40);
}
function frame1(){
stop();
MovieClip(root).btnsoundChannel03.stop();
}
function frame2(){
if (Object(root).water_mc.currentFrame != 1){
MovieClip(root).spraysound();
};
}
function frame10(){
if (Object(root).water_mc.currentFrame != 1){
MovieClip(root).spraysound();
};
}
function frame18(){
if (Object(root).water_mc.currentFrame != 1){
MovieClip(root).spraysound();
};
}
function frame28(){
if (Object(root).water_mc.currentFrame != 1){
MovieClip(root).spraysound();
};
}
function frame40(){
stop();
MovieClip(root).btnsoundChannel03.stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 27
//BG_137_121 (hannahmontanaatthedentist_fla.BG_137_121)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_137_121 extends MovieClip {
public function BG_137_121(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 28
//BG_138_119 (hannahmontanaatthedentist_fla.BG_138_119)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_138_119 extends MovieClip {
public function BG_138_119(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 29
//BG_139_118 (hannahmontanaatthedentist_fla.BG_139_118)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_139_118 extends MovieClip {
public function BG_139_118(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 30
//BG_140_117 (hannahmontanaatthedentist_fla.BG_140_117)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_140_117 extends MovieClip {
public function BG_140_117(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 31
//BG_141_116 (hannahmontanaatthedentist_fla.BG_141_116)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_141_116 extends MovieClip {
public function BG_141_116(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 32
//BG_142_112 (hannahmontanaatthedentist_fla.BG_142_112)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_142_112 extends MovieClip {
public function BG_142_112(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 33
//BG_143_113 (hannahmontanaatthedentist_fla.BG_143_113)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_143_113 extends MovieClip {
public function BG_143_113(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 34
//BG_144_114 (hannahmontanaatthedentist_fla.BG_144_114)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_144_114 extends MovieClip {
public function BG_144_114(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 35
//BG_145_115 (hannahmontanaatthedentist_fla.BG_145_115)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_145_115 extends MovieClip {
public function BG_145_115(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 36
//BG_146_120 (hannahmontanaatthedentist_fla.BG_146_120)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_146_120 extends MovieClip {
public function BG_146_120(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 37
//BG_147_131 (hannahmontanaatthedentist_fla.BG_147_131)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_147_131 extends MovieClip {
public function BG_147_131(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 38
//BG_148_133 (hannahmontanaatthedentist_fla.BG_148_133)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_148_133 extends MovieClip {
public function BG_148_133(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 39
//BG_149_130 (hannahmontanaatthedentist_fla.BG_149_130)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_149_130 extends MovieClip {
public function BG_149_130(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 40
//BG_150_129 (hannahmontanaatthedentist_fla.BG_150_129)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_150_129 extends MovieClip {
public function BG_150_129(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 41
//BG_151_132 (hannahmontanaatthedentist_fla.BG_151_132)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_151_132 extends MovieClip {
public function BG_151_132(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 42
//BG_152_128 (hannahmontanaatthedentist_fla.BG_152_128)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_152_128 extends MovieClip {
public function BG_152_128(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 43
//BG_153_122 (hannahmontanaatthedentist_fla.BG_153_122)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_153_122 extends MovieClip {
public function BG_153_122(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 44
//BG_154_126 (hannahmontanaatthedentist_fla.BG_154_126)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_154_126 extends MovieClip {
public function BG_154_126(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 45
//BG_155_123 (hannahmontanaatthedentist_fla.BG_155_123)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_155_123 extends MovieClip {
public function BG_155_123(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 46
//BG_156_124 (hannahmontanaatthedentist_fla.BG_156_124)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_156_124 extends MovieClip {
public function BG_156_124(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 47
//BG_157_127 (hannahmontanaatthedentist_fla.BG_157_127)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_157_127 extends MovieClip {
public function BG_157_127(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 48
//BG_158_125 (hannahmontanaatthedentist_fla.BG_158_125)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_158_125 extends MovieClip {
public function BG_158_125(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 49
//BG_159_100 (hannahmontanaatthedentist_fla.BG_159_100)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_159_100 extends MovieClip {
public function BG_159_100(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 50
//BG_160_101 (hannahmontanaatthedentist_fla.BG_160_101)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_160_101 extends MovieClip {
public function BG_160_101(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 51
//BG_161_102 (hannahmontanaatthedentist_fla.BG_161_102)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_161_102 extends MovieClip {
public function BG_161_102(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 52
//BG_162_103 (hannahmontanaatthedentist_fla.BG_162_103)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_162_103 extends MovieClip {
public function BG_162_103(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 53
//BG_163_104 (hannahmontanaatthedentist_fla.BG_163_104)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_163_104 extends MovieClip {
public function BG_163_104(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 54
//BG_164_105 (hannahmontanaatthedentist_fla.BG_164_105)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_164_105 extends MovieClip {
public function BG_164_105(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 55
//BG_165_106 (hannahmontanaatthedentist_fla.BG_165_106)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_165_106 extends MovieClip {
public function BG_165_106(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 56
//BG_166_107 (hannahmontanaatthedentist_fla.BG_166_107)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_166_107 extends MovieClip {
public function BG_166_107(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 57
//BG_167_108 (hannahmontanaatthedentist_fla.BG_167_108)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_167_108 extends MovieClip {
public function BG_167_108(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 58
//BG_168_109 (hannahmontanaatthedentist_fla.BG_168_109)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_168_109 extends MovieClip {
public function BG_168_109(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 59
//BG_169_110 (hannahmontanaatthedentist_fla.BG_169_110)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_169_110 extends MovieClip {
public function BG_169_110(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 60
//BG_170_111 (hannahmontanaatthedentist_fla.BG_170_111)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_170_111 extends MovieClip {
public function BG_170_111(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
function frame22(){
Object(root).rollsound1();
}
function frame23(){
Object(root).rollsound1();
}
function frame24(){
Object(root).rollsound1();
}
function frame25(){
Object(root).rollsound1();
}
function frame26(){
Object(root).rollsound1();
}
function frame27(){
Object(root).rollsound1();
}
function frame28(){
Object(root).rollsound1();
}
function frame29(){
Object(root).rollsound1();
}
function frame30(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 61
//BG_171_136 (hannahmontanaatthedentist_fla.BG_171_136)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_171_136 extends MovieClip {
public function BG_171_136(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 62
//BG_18_176 (hannahmontanaatthedentist_fla.BG_18_176)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_18_176 extends MovieClip {
public var on_btn:MovieClip;
public function BG_18_176(){
addFrameScript(0, frame1, 2, frame3);
}
function frame1(){
stop();
on_btn.buttonMode = true;
}
function frame3(){
gotoAndStop(1);
}
}
}//package hannahmontanaatthedentist_fla
Section 63
//BG_203_157 (hannahmontanaatthedentist_fla.BG_203_157)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_203_157 extends MovieClip {
public function BG_203_157(){
addFrameScript(0, frame1, 60, frame61);
}
function frame1(){
stop();
}
function frame61(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 64
//BG_204_156 (hannahmontanaatthedentist_fla.BG_204_156)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_204_156 extends MovieClip {
public function BG_204_156(){
addFrameScript(0, frame1, 60, frame61);
}
function frame1(){
stop();
}
function frame61(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 65
//BG_205_158 (hannahmontanaatthedentist_fla.BG_205_158)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_205_158 extends MovieClip {
public function BG_205_158(){
addFrameScript(0, frame1, 60, frame61);
}
function frame1(){
stop();
}
function frame61(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 66
//BG_206_159 (hannahmontanaatthedentist_fla.BG_206_159)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_206_159 extends MovieClip {
public function BG_206_159(){
addFrameScript(0, frame1, 60, frame61);
}
function frame1(){
stop();
}
function frame61(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 67
//BG_207_160 (hannahmontanaatthedentist_fla.BG_207_160)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_207_160 extends MovieClip {
public function BG_207_160(){
addFrameScript(0, frame1, 60, frame61);
}
function frame1(){
stop();
}
function frame61(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 68
//BG_84_155 (hannahmontanaatthedentist_fla.BG_84_155)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class BG_84_155 extends MovieClip {
public function BG_84_155(){
addFrameScript(0, frame1, 1, frame2, 13, frame14);
}
function frame1(){
stop();
}
function frame2(){
Object(root).blackremovesound();
}
function frame14(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 69
//BG_94_151 (hannahmontanaatthedentist_fla.BG_94_151)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_94_151 extends MovieClip {
public function BG_94_151(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 70
//BG_95_142 (hannahmontanaatthedentist_fla.BG_95_142)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_95_142 extends MovieClip {
public function BG_95_142(){
addFrameScript(0, frame1, 59, frame60);
}
function frame1(){
stop();
}
function frame60(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 71
//BG_97_140 (hannahmontanaatthedentist_fla.BG_97_140)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_97_140 extends MovieClip {
public function BG_97_140(){
addFrameScript(0, frame1, 60, frame61);
}
function frame1(){
stop();
}
function frame61(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 72
//BG_98_138 (hannahmontanaatthedentist_fla.BG_98_138)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class BG_98_138 extends MovieClip {
public function BG_98_138(){
addFrameScript(0, frame1, 60, frame61);
}
function frame1(){
stop();
}
function frame61(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 73
//cleanicon11_197 (hannahmontanaatthedentist_fla.cleanicon11_197)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class cleanicon11_197 extends MovieClip {
public var hit:MovieClip;
public function cleanicon11_197(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 74
//cleanicon18_198 (hannahmontanaatthedentist_fla.cleanicon18_198)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class cleanicon18_198 extends MovieClip {
public var hit:MovieClip;
public function cleanicon18_198(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 75
//cleanicon5_192 (hannahmontanaatthedentist_fla.cleanicon5_192)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class cleanicon5_192 extends MovieClip {
public var hit:MovieClip;
public function cleanicon5_192(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 76
//cleanicon6_195 (hannahmontanaatthedentist_fla.cleanicon6_195)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class cleanicon6_195 extends MovieClip {
public var hit:MovieClip;
public function cleanicon6_195(){
addFrameScript(0, frame1, 1, frame2);
}
function frame1(){
stop();
MovieClip(root).btnsoundChannel01.stop();
mouseChildren = false;
}
function frame2(){
MovieClip(root).drillsound();
}
}
}//package hannahmontanaatthedentist_fla
Section 77
//clolormcc_229 (hannahmontanaatthedentist_fla.clolormcc_229)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class clolormcc_229 extends MovieClip {
public var hit:MovieClip;
public function clolormcc_229(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 78
//colorclipp_235 (hannahmontanaatthedentist_fla.colorclipp_235)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class colorclipp_235 extends MovieClip {
public var c27:MovieClip;
public var c18:MovieClip;
public var c28:MovieClip;
public var c19:MovieClip;
public var c29:MovieClip;
public var c1:MovieClip;
public var c2:MovieClip;
public var c10:MovieClip;
public var c3:MovieClip;
public var c20:MovieClip;
public var c11:MovieClip;
public var c4:MovieClip;
public var c21:MovieClip;
public var c12:MovieClip;
public var c5:MovieClip;
public var c22:MovieClip;
public var c13:MovieClip;
public var c6:MovieClip;
public var c23:MovieClip;
public var c14:MovieClip;
public var c7:MovieClip;
public var remove_btn:SimpleButton;
public var c24:MovieClip;
public var c15:MovieClip;
public var c8:MovieClip;
public var c25:MovieClip;
public var c16:MovieClip;
public var c9:MovieClip;
public var c26:MovieClip;
public var c17:MovieClip;
public function colorclipp_235(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
c1.buttonMode = true;
c2.buttonMode = true;
c3.buttonMode = true;
c4.buttonMode = true;
c5.buttonMode = true;
c6.buttonMode = true;
c7.buttonMode = true;
c8.buttonMode = true;
c9.buttonMode = true;
c10.buttonMode = true;
c11.buttonMode = true;
c12.buttonMode = true;
c13.buttonMode = true;
c14.buttonMode = true;
c15.buttonMode = true;
c16.buttonMode = true;
c17.buttonMode = true;
c18.buttonMode = true;
c19.buttonMode = true;
c20.buttonMode = true;
c21.buttonMode = true;
c22.buttonMode = true;
c23.buttonMode = true;
c24.buttonMode = true;
c25.buttonMode = true;
c26.buttonMode = true;
c27.buttonMode = true;
c28.buttonMode = true;
c29.buttonMode = true;
}
}
}//package hannahmontanaatthedentist_fla
Section 79
//dfgdgdfg_232 (hannahmontanaatthedentist_fla.dfgdgdfg_232)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class dfgdgdfg_232 extends MovieClip {
public function dfgdgdfg_232(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 80
//games_graph25_8 (hannahmontanaatthedentist_fla.games_graph25_8)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.net.*;
public dynamic class games_graph25_8 extends MovieClip {
public var anim:MovieClip;
public var linkbutton:SimpleButton;
public var playbut1:SimpleButton;
public var localConnection:LocalConnection;
public var localDomainName:String;
public function games_graph25_8(){
addFrameScript(0, frame1, 64, frame65);
}
public function urlFunc(e:MouseEvent){
navigateToURL(new URLRequest((("http://www.sisigames.com/?utm_source=" + localDomainName) + "&utm_medium=game&utm_content=preloader&utm_campaign=hannah-montana-at-the-dentist")), "_blank");
}
public function playbut1func(evt:MouseEvent){
MovieClip(parent).gotoAndStop(1, "Game");
}
function frame1(){
localConnection = new LocalConnection();
localDomainName = localConnection.domain;
linkbutton.addEventListener(MouseEvent.CLICK, urlFunc);
}
function frame65(){
stop();
playbut1.addEventListener(MouseEvent.CLICK, playbut1func);
}
}
}//package hannahmontanaatthedentist_fla
Section 81
//games_graph31_3 (hannahmontanaatthedentist_fla.games_graph31_3)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class games_graph31_3 extends MovieClip {
public function games_graph31_3(){
addFrameScript(24, frame25);
}
function frame25(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 82
//item4_mc_201 (hannahmontanaatthedentist_fla.item4_mc_201)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class item4_mc_201 extends MovieClip {
public var hit:MovieClip;
public function item4_mc_201(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 83
//MainTimeline (hannahmontanaatthedentist_fla.MainTimeline)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import fl.transitions.*;
import flash.display.*;
import fl.transitions.easing.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class MainTimeline extends MovieClip {
public var water_mc:MovieClip;
public var maskanim:MovieClip;
public var barra_mc:MovieClip;
public var doneBut:SimpleButton;
public var sticker_options:MovieClip;
public var item4_mc:MovieClip;
public var type_teeth:MovieClip;
public var item5_mc:MovieClip;
public var tatoo_mc:MovieClip;
public var replayBut:SimpleButton;
public var light_mc:MovieClip;
public var nextBut:SimpleButton;
public var water01_mc:MovieClip;
public var teeth_mc:MovieClip;
public var logoMc:SimpleButton;
public var thumb:SimpleButton;
public var color_options:MovieClip;
public var tutorial_mc:MovieClip;
public var model_mc:MovieClip;
public var snd_mc:MovieClip;
public var item2_mc:MovieClip;
public var item3_mc:MovieClip;
public var play_btn:SimpleButton;
public var color_mc:MovieClip;
public var item1_mc:MovieClip;
public var item6_mc:MovieClip;
public var moregames:SimpleButton;
public var localConnection:LocalConnection;
public var localDomainName:String;
public var fmm01_menu:ContextMenu;
public var item:ContextMenuItem;
public var volumeAdjust:SoundTransform;
public var bgsound:bg;
public var bgChannel:SoundChannel;
public var btnsound1:btn;
public var btnsound2:btns;
public var btnsound3:finish;
public var btnsound5:drill;
public var btnsound6:run;
public var btnsound7:teethremove;
public var btnsound8:btn3;
public var btnsound9:water;
public var btnsound10:spray;
public var btnsoundChannel:SoundChannel;
public var btnsoundChannel01:SoundChannel;
public var btnsoundChannel02:SoundChannel;
public var btnsoundChannel03:SoundChannel;
public var btnsoundChannel04:SoundChannel;
public var waterCheckNum;
public var colorCheckNum;
public var water_mcX;
public var water_mcY;
public var water01_mcX;
public var water01_mcY;
public var item1_mcX;
public var item1_mcY;
public var item2_mcX;
public var item2_mcY;
public var item3_mcX;
public var item3_mcY;
public var item5_mcX;
public var item5_mcY;
public var item6_mcX;
public var item6_mcY;
public var item4_mcX;
public var item4_mcY;
public var tattooNum;
public var colorNum;
public var tatoo_mcX;
public var tatoo_mcY;
public var color_mcX;
public var color_mcY;
public var ii;
public function MainTimeline(){
addFrameScript(0, frame1, 78, frame79, 79, frame80, 80, frame81, 81, frame82);
}
public function rightclick(ev:ContextMenuEvent){
var url:URLRequest = new URLRequest((("http://www.sisigames.com/?utm_source=" + localDomainName) + "&utm_medium=game&utm_content=preloader&utm_campaign=hannah-montana-at-the-dentist"));
navigateToURL(url, "_blank");
}
public function playfun(e:MouseEvent){
rollsound();
gotoAndStop("gamePage");
}
public function rollsound(e:MouseEvent=null){
if (snd_mc.currentFrame == 1){
btnsoundChannel = btnsound1.play();
};
}
public function rollsound1(e:MouseEvent=null){
if (snd_mc.currentFrame == 1){
btnsoundChannel = btnsound2.play();
};
}
public function drillsound(e:MouseEvent=null){
if (snd_mc.currentFrame == 1){
btnsoundChannel01 = btnsound5.play(0, 1000);
btnsoundChannel01.soundTransform = volumeAdjust;
};
}
public function runsound(e:MouseEvent=null){
if (snd_mc.currentFrame == 1){
btnsoundChannel02 = btnsound6.play(0, 1000);
};
}
public function teethremovesound(e:MouseEvent=null){
if (snd_mc.currentFrame == 1){
btnsoundChannel = btnsound7.play();
};
}
public function blackremovesound(e:MouseEvent=null){
if (snd_mc.currentFrame == 1){
btnsoundChannel = btnsound8.play();
};
}
public function watersound(e:MouseEvent=null){
if (snd_mc.currentFrame == 1){
btnsoundChannel03 = btnsound9.play(0, 1000);
btnsoundChannel03.soundTransform = volumeAdjust;
};
}
public function spraysound(e:MouseEvent=null){
if (snd_mc.currentFrame == 1){
btnsoundChannel04 = btnsound10.play();
};
}
public function moregamesUrl(et:MouseEvent){
rollsound();
var urewel1:URLRequest = new URLRequest((("http://www.sisigames.com/?utm_source=" + localDomainName) + "&utm_medium=game&utm_content=more-games&utm_campaign=hannah-montana-at-the-dentist"));
navigateToURL(urewel1, "_blank");
}
public function logoUrl(et:MouseEvent){
rollsound();
var urewel1:URLRequest = new URLRequest((("http://www.sisigames.com/?utm_source=" + localDomainName) + "&utm_medium=game&utm_content=logo&utm_campaign=hannah-montana-at-the-dentist"));
navigateToURL(urewel1, "_blank");
}
public function thumbUrl(et:MouseEvent){
rollsound();
var urewel1:URLRequest = new URLRequest((("http://www.sisigames.com/play/justin-bieber-perfect-teeth.html?utm_source=" + localDomainName) + "&utm_medium=game&utm_content=thumb&utm_campaign=hannah-montana-at-the-dentist"));
navigateToURL(urewel1, "_blank");
}
public function music(e:MouseEvent){
if ((((e.target.name == "snd1_mc")) && ((snd_mc.currentFrame == 1)))){
bgChannel.stop();
snd_mc.gotoAndStop(2);
} else {
if ((((e.target.name == "snd1_mc")) && ((snd_mc.currentFrame == 2)))){
bgChannel = bgsound.play(0, 1000);
snd_mc.gotoAndStop(1);
};
};
}
public function clikfun1(e:MouseEvent){
if (e.target.name == "on_btn"){
rollsound();
light_mc.nextFrame();
};
if (e.target.name == "c1"){
colorNum = 2;
color_mc.gotoAndStop(2);
};
if (e.target.name == "c2"){
colorNum = 3;
color_mc.gotoAndStop(3);
};
if (e.target.name == "c3"){
colorNum = 4;
color_mc.gotoAndStop(4);
};
if (e.target.name == "c4"){
colorNum = 5;
color_mc.gotoAndStop(5);
};
if (e.target.name == "c5"){
colorNum = 6;
color_mc.gotoAndStop(6);
};
if (e.target.name == "c6"){
colorNum = 7;
color_mc.gotoAndStop(7);
};
if (e.target.name == "c7"){
colorNum = 8;
color_mc.gotoAndStop(8);
};
if (e.target.name == "c8"){
colorNum = 9;
color_mc.gotoAndStop(9);
};
if (e.target.name == "c9"){
colorNum = 10;
color_mc.gotoAndStop(10);
};
if (e.target.name == "c10"){
colorNum = 11;
color_mc.gotoAndStop(11);
};
if (e.target.name == "c11"){
colorNum = 12;
color_mc.gotoAndStop(12);
};
if (e.target.name == "c12"){
colorNum = 13;
color_mc.gotoAndStop(13);
};
if (e.target.name == "c13"){
colorNum = 14;
color_mc.gotoAndStop(14);
};
if (e.target.name == "c14"){
colorNum = 15;
color_mc.gotoAndStop(15);
};
if (e.target.name == "c15"){
colorNum = 16;
color_mc.gotoAndStop(16);
};
if (e.target.name == "c16"){
colorNum = 17;
color_mc.gotoAndStop(17);
};
if (e.target.name == "c17"){
colorNum = 18;
color_mc.gotoAndStop(18);
};
if (e.target.name == "c18"){
colorNum = 19;
color_mc.gotoAndStop(19);
};
if (e.target.name == "c19"){
colorNum = 20;
color_mc.gotoAndStop(20);
};
if (e.target.name == "c20"){
colorNum = 21;
color_mc.gotoAndStop(21);
};
if (e.target.name == "c21"){
colorNum = 22;
color_mc.gotoAndStop(22);
};
if (e.target.name == "c22"){
colorNum = 23;
color_mc.gotoAndStop(23);
};
if (e.target.name == "c23"){
colorNum = 24;
color_mc.gotoAndStop(24);
};
if (e.target.name == "c24"){
colorNum = 25;
color_mc.gotoAndStop(25);
};
if (e.target.name == "c25"){
colorNum = 26;
color_mc.gotoAndStop(26);
};
if (e.target.name == "c26"){
colorNum = 27;
color_mc.gotoAndStop(27);
};
if (e.target.name == "c27"){
colorNum = 28;
color_mc.gotoAndStop(28);
};
if (e.target.name == "c28"){
colorNum = 29;
color_mc.gotoAndStop(29);
};
if (e.target.name == "c29"){
colorNum = 30;
color_mc.gotoAndStop(30);
};
if (e.target.name == "c30"){
colorNum = 31;
color_mc.gotoAndStop(31);
};
if (e.target.name == "st_1"){
tattooNum = 2;
tatoo_mc.stick.gotoAndStop(2);
};
if (e.target.name == "st_2"){
tattooNum = 3;
tatoo_mc.stick.gotoAndStop(3);
};
if (e.target.name == "st_3"){
tattooNum = 4;
tatoo_mc.stick.gotoAndStop(4);
};
if (e.target.name == "st_4"){
tattooNum = 5;
tatoo_mc.stick.gotoAndStop(5);
};
if (e.target.name == "st_5"){
tattooNum = 6;
tatoo_mc.stick.gotoAndStop(6);
};
if (e.target.name == "st_6"){
tattooNum = 7;
tatoo_mc.stick.gotoAndStop(7);
};
if (e.target.name == "st_7"){
tattooNum = 8;
tatoo_mc.stick.gotoAndStop(8);
};
if (e.target.name == "st_8"){
tattooNum = 9;
tatoo_mc.stick.gotoAndStop(9);
};
if (e.target.name == "st_9"){
tattooNum = 10;
tatoo_mc.stick.gotoAndStop(10);
};
if (e.target.name == "st_10"){
tattooNum = 11;
tatoo_mc.stick.gotoAndStop(11);
};
if (e.target.name == "st_11"){
tattooNum = 12;
tatoo_mc.stick.gotoAndStop(13);
};
if (e.target.name == "st_12"){
tattooNum = 13;
tatoo_mc.stick.gotoAndStop(14);
};
if (e.target.name == "st_13"){
tattooNum = 14;
tatoo_mc.stick.gotoAndStop(15);
};
if (e.target.name == "st_14"){
tattooNum = 15;
tatoo_mc.stick.gotoAndStop(16);
};
if (e.target.name == "st_15"){
tattooNum = 16;
tatoo_mc.stick.gotoAndStop(17);
};
if (e.target.name == "st_16"){
tattooNum = 17;
tatoo_mc.stick.gotoAndStop(18);
};
if (e.target.name == "st_17"){
tattooNum = 18;
tatoo_mc.stick.gotoAndStop(19);
};
if (e.target.name == "st_18"){
tattooNum = 19;
tatoo_mc.stick.gotoAndStop(20);
};
if (e.target.name == "st_19"){
tattooNum = 20;
tatoo_mc.stick.gotoAndStop(21);
};
if (e.target.name == "st_20"){
tattooNum = 21;
tatoo_mc.stick.gotoAndStop(22);
};
if (e.target.name == "remove_btn"){
colorNum = 1;
color_mc.gotoAndStop(32);
};
if (e.target.name == "remove_btn1"){
tattooNum = 1;
tatoo_mc.stick.gotoAndStop(12);
};
if (e.target.name == "nextBut"){
water_mc.visible = false;
water01_mc.visible = false;
item1_mc.visible = false;
item2_mc.visible = false;
item3_mc.visible = false;
item4_mc.visible = false;
item5_mc.visible = false;
item6_mc.visible = false;
teeth_mc.visible = false;
light_mc.visible = false;
nextBut.visible = false;
color_options.visible = true;
sticker_options.visible = true;
doneBut.visible = true;
color_mc.visible = true;
tatoo_mc.visible = true;
TransitionManager.start(maskanim, {type:Blinds, direction:Transition.OUT, duration:1, easing:None.easeNone, numStrips:30, dimension:1});
};
if (e.target.name == "doneBut"){
light_mc.removeEventListener(MouseEvent.MOUSE_MOVE, movefun1);
removeEventListener(MouseEvent.MOUSE_DOWN, downfun1);
removeEventListener(MouseEvent.MOUSE_UP, upfun1);
removeEventListener(Event.ENTER_FRAME, enterfun1);
removeEventListener(MouseEvent.CLICK, clikfun1);
gotoAndStop("final");
};
if (e.target.name == "light_mc"){
light_mc.on_btn.visible = true;
light_mc.on_btn.mouseEnabled = true;
light_mc.stopDrag();
};
}
public function movefun1(e:MouseEvent){
light_mc.x = mouseX;
light_mc.y = mouseY;
light_mc.on_btn.visible = false;
light_mc.on_btn.mouseEnabled = false;
if (light_mc.y > 300){
light_mc.y = 300;
};
}
public function downfun1(e:MouseEvent){
if (e.target.name == "light_mc"){
light_mc.on_btn.visible = false;
light_mc.on_btn.mouseEnabled = false;
light_mc.startDrag(true);
};
}
public function enterfun1(e:Event){
if (water_mc.hit.hitTestObject(model_mc.waterAnim)){
if (model_mc.waterAnim.currentFrame != 40){
water_mc.gotoAndPlay(2);
model_mc.waterAnim.nextFrame();
};
} else {
water_mc.gotoAndStop(1);
};
if (water01_mc.hit.hitTestObject(model_mc.waterAnim)){
model_mc.waterAnim.prevFrame();
};
if (item1_mc.hit.hitTestObject(model_mc.bl01)){
model_mc.bl01.nextFrame();
};
if (item1_mc.hit.hitTestObject(model_mc.bl02)){
model_mc.bl02.nextFrame();
};
if (item1_mc.hit.hitTestObject(model_mc.bl03)){
model_mc.bl03.nextFrame();
};
if (item1_mc.hit.hitTestObject(model_mc.bl04)){
model_mc.bl04.nextFrame();
};
if (item1_mc.hit.hitTestObject(model_mc.bl05)){
model_mc.bl05.nextFrame();
};
if (item1_mc.hit.hitTestObject(model_mc.bl06)){
model_mc.bl06.nextFrame();
};
if (item1_mc.hit.hitTestObject(model_mc.bl07)){
model_mc.bl07.nextFrame();
};
if (item2_mc.hit.hitTestObject(model_mc.r1)){
model_mc.r1.nextFrame();
};
if (item2_mc.hit.hitTestObject(model_mc.r2)){
model_mc.r2.nextFrame();
};
if (item2_mc.hit.hitTestObject(model_mc.r3)){
model_mc.r3.nextFrame();
};
if (item2_mc.hit.hitTestObject(model_mc.r4)){
model_mc.r4.nextFrame();
};
if (item2_mc.hit.hitTestObject(model_mc.r5)){
model_mc.r5.nextFrame();
};
if (item3_mc.hit.hitTestObject(model_mc.y1)){
model_mc.y1.nextFrame();
};
if (item3_mc.hit.hitTestObject(model_mc.y2)){
model_mc.y2.nextFrame();
};
if (item3_mc.hit.hitTestObject(model_mc.y3)){
model_mc.y3.nextFrame();
};
if (item3_mc.hit.hitTestObject(model_mc.y4)){
model_mc.y4.nextFrame();
};
if (item3_mc.hit.hitTestObject(model_mc.y5)){
model_mc.y5.nextFrame();
};
if (item3_mc.hit.hitTestObject(model_mc.y6)){
model_mc.y6.nextFrame();
};
if (item5_mc.hit.hitTestObject(model_mc.b1)){
model_mc.b1.play();
};
if (item5_mc.hit.hitTestObject(model_mc.b2)){
model_mc.b2.play();
};
if (item5_mc.hit.hitTestObject(model_mc.b3)){
model_mc.b3.play();
};
if (item5_mc.hit.hitTestObject(model_mc.b4)){
model_mc.b4.play();
};
if (item5_mc.hit.hitTestObject(model_mc.b5)){
model_mc.b5.play();
};
if (item6_mc.hit.hitTestObject(model_mc.yy1)){
model_mc.yy1.nextFrame();
};
if (item6_mc.hit.hitTestObject(model_mc.yy2)){
model_mc.yy2.nextFrame();
};
if (item6_mc.hit.hitTestObject(model_mc.yy3)){
model_mc.yy3.nextFrame();
};
if (item6_mc.hit.hitTestObject(model_mc.yy4)){
model_mc.yy4.nextFrame();
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt1)) && (((((!((model_mc.d1.currentFrame == 11))) && (!((model_mc.d1.currentFrame == 12))))) || (!((model_mc.t1.visible == false))))))){
model_mc.tt1.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt2)) && (((((!((model_mc.d2.currentFrame == 11))) && (!((model_mc.d2.currentFrame == 12))))) || (!((model_mc.t2.visible == false))))))){
model_mc.tt2.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt3)) && (((((!((model_mc.d3.currentFrame == 11))) && (!((model_mc.d3.currentFrame == 12))))) || (!((model_mc.t3.visible == false))))))){
model_mc.tt3.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt4)) && (((((!((model_mc.d4.currentFrame == 11))) && (!((model_mc.d4.currentFrame == 12))))) || (!((model_mc.t4.visible == false))))))){
model_mc.tt4.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt5)) && (((((!((model_mc.d5.currentFrame == 11))) && (!((model_mc.d5.currentFrame == 12))))) || (!((model_mc.t5.visible == false))))))){
model_mc.tt5.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt6)) && (((((!((model_mc.d6.currentFrame == 11))) && (!((model_mc.d6.currentFrame == 12))))) || (!((model_mc.t6.visible == false))))))){
model_mc.tt6.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt7)) && (((((!((model_mc.d7.currentFrame == 11))) && (!((model_mc.d7.currentFrame == 12))))) || (!((model_mc.t7.visible == false))))))){
model_mc.tt7.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt8)) && (((((!((model_mc.d8.currentFrame == 11))) && (!((model_mc.d8.currentFrame == 12))))) || (!((model_mc.t8.visible == false))))))){
model_mc.tt8.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt9)) && (((((!((model_mc.d9.currentFrame == 11))) && (!((model_mc.d9.currentFrame == 12))))) || (!((model_mc.t9.visible == false))))))){
model_mc.tt9.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt10)) && (((((!((model_mc.d10.currentFrame == 11))) && (!((model_mc.d10.currentFrame == 12))))) || (!((model_mc.t10.visible == false))))))){
model_mc.tt10.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt11)) && (((((!((model_mc.d11.currentFrame == 11))) && (!((model_mc.d11.currentFrame == 12))))) || (!((model_mc.t11.visible == false))))))){
model_mc.tt11.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt12)) && (((((!((model_mc.d12.currentFrame == 11))) && (!((model_mc.d12.currentFrame == 12))))) || (!((model_mc.t12.visible == false))))))){
model_mc.tt12.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt13)) && (((((!((model_mc.d13.currentFrame == 11))) && (!((model_mc.d13.currentFrame == 12))))) || (!((model_mc.t13.visible == false))))))){
model_mc.tt13.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt14)) && (((((!((model_mc.d14.currentFrame == 11))) && (!((model_mc.d14.currentFrame == 12))))) || (!((model_mc.t14.visible == false))))))){
model_mc.tt14.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt15)) && (((((!((model_mc.d15.currentFrame == 11))) && (!((model_mc.d15.currentFrame == 12))))) || (!((model_mc.t15.visible == false))))))){
model_mc.tt15.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt16)) && (((((!((model_mc.d16.currentFrame == 11))) && (!((model_mc.d16.currentFrame == 12))))) || (!((model_mc.t16.visible == false))))))){
model_mc.tt16.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt17)) && (((((!((model_mc.d17.currentFrame == 11))) && (!((model_mc.d17.currentFrame == 12))))) || (!((model_mc.t17.visible == false))))))){
model_mc.tt17.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt18)) && (((((!((model_mc.d18.currentFrame == 11))) && (!((model_mc.d18.currentFrame == 12))))) || (!((model_mc.t18.visible == false))))))){
model_mc.tt18.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt19)) && (((((!((model_mc.d19.currentFrame == 11))) && (!((model_mc.d19.currentFrame == 12))))) || (!((model_mc.t19.visible == false))))))){
model_mc.tt19.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt20)) && (((((!((model_mc.d20.currentFrame == 11))) && (!((model_mc.d20.currentFrame == 12))))) || (!((model_mc.t20.visible == false))))))){
model_mc.tt20.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt21)) && (((((!((model_mc.d21.currentFrame == 11))) && (!((model_mc.d21.currentFrame == 12))))) || (!((model_mc.t21.visible == false))))))){
model_mc.tt21.gotoAndStop(tattooNum);
};
if (((tatoo_mc.hit.hitTestObject(model_mc.tt22)) && (((((!((model_mc.d22.currentFrame == 11))) && (!((model_mc.d22.currentFrame == 12))))) || (!((model_mc.t22.visible == false))))))){
model_mc.tt22.gotoAndStop(tattooNum);
};
if (colorCheckNum == 0){
if (color_mc.hit.hitTestObject(model_mc.t1)){
model_mc.t1.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t2)){
model_mc.t2.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t3)){
model_mc.t3.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t4)){
model_mc.t4.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t5)){
model_mc.t5.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t6)){
model_mc.t6.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t7)){
model_mc.t7.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t8)){
model_mc.t8.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t9)){
model_mc.t9.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t10)){
model_mc.t10.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t11)){
model_mc.t11.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t12)){
model_mc.t12.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t13)){
model_mc.t13.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t14)){
model_mc.t14.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t15)){
model_mc.t15.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t16)){
model_mc.t16.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t17)){
model_mc.t17.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t18)){
model_mc.t18.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t19)){
model_mc.t19.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t20)){
model_mc.t20.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t21)){
model_mc.t21.gotoAndStop(colorNum);
};
if (color_mc.hit.hitTestObject(model_mc.t22)){
model_mc.t22.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d1)) && (!((model_mc.d1.currentFrame == 11))))) && (!((model_mc.d1.currentFrame == 12))))){
model_mc.d1.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d2)) && (!((model_mc.d2.currentFrame == 11))))) && (!((model_mc.d2.currentFrame == 12))))){
model_mc.d2.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d3)) && (!((model_mc.d3.currentFrame == 11))))) && (!((model_mc.d3.currentFrame == 12))))){
model_mc.d3.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d4)) && (!((model_mc.d4.currentFrame == 11))))) && (!((model_mc.d4.currentFrame == 12))))){
model_mc.d4.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d5)) && (!((model_mc.d5.currentFrame == 11))))) && (!((model_mc.d5.currentFrame == 12))))){
model_mc.d5.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d6)) && (!((model_mc.d6.currentFrame == 11))))) && (!((model_mc.d6.currentFrame == 12))))){
model_mc.d6.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d7)) && (!((model_mc.d7.currentFrame == 11))))) && (!((model_mc.d7.currentFrame == 12))))){
model_mc.d7.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d8)) && (!((model_mc.d8.currentFrame == 11))))) && (!((model_mc.d8.currentFrame == 12))))){
model_mc.d8.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d9)) && (!((model_mc.d9.currentFrame == 11))))) && (!((model_mc.d9.currentFrame == 12))))){
model_mc.d9.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d10)) && (!((model_mc.d10.currentFrame == 11))))) && (!((model_mc.d10.currentFrame == 12))))){
model_mc.d10.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d11)) && (!((model_mc.d11.currentFrame == 11))))) && (!((model_mc.d11.currentFrame == 12))))){
model_mc.d11.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d12)) && (!((model_mc.d12.currentFrame == 11))))) && (!((model_mc.d12.currentFrame == 12))))){
model_mc.d12.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d13)) && (!((model_mc.d13.currentFrame == 11))))) && (!((model_mc.d13.currentFrame == 12))))){
model_mc.d13.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d14)) && (!((model_mc.d14.currentFrame == 11))))) && (!((model_mc.d14.currentFrame == 12))))){
model_mc.d14.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d15)) && (!((model_mc.d15.currentFrame == 11))))) && (!((model_mc.d15.currentFrame == 12))))){
model_mc.d15.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d16)) && (!((model_mc.d16.currentFrame == 11))))) && (!((model_mc.d16.currentFrame == 12))))){
model_mc.d16.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d17)) && (!((model_mc.d17.currentFrame == 11))))) && (!((model_mc.d17.currentFrame == 12))))){
model_mc.d17.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d18)) && (!((model_mc.d18.currentFrame == 11))))) && (!((model_mc.d18.currentFrame == 12))))){
model_mc.d18.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d19)) && (!((model_mc.d19.currentFrame == 11))))) && (!((model_mc.d19.currentFrame == 12))))){
model_mc.d19.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d20)) && (!((model_mc.d20.currentFrame == 11))))) && (!((model_mc.d20.currentFrame == 12))))){
model_mc.d20.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d21)) && (!((model_mc.d21.currentFrame == 11))))) && (!((model_mc.d21.currentFrame == 12))))){
model_mc.d21.mc.gotoAndStop(colorNum);
};
if (((((color_mc.hit.hitTestObject(model_mc.d22)) && (!((model_mc.d22.currentFrame == 11))))) && (!((model_mc.d22.currentFrame == 12))))){
model_mc.d22.mc.gotoAndStop(colorNum);
};
};
}
public function upfun1(e:MouseEvent){
if (item4_mc.currentFrame == 2){
if (item4_mc.hit.hitTestObject(model_mc.t1)){
teethremovesound();
model_mc.t1.visible = false;
model_mc.y1.visible = false;
model_mc.d1.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t2)){
teethremovesound();
model_mc.t2.visible = false;
model_mc.bl01.visible = false;
model_mc.d2.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t3)){
teethremovesound();
model_mc.t3.visible = false;
model_mc.bl1.visible = false;
model_mc.d3.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t4)){
teethremovesound();
model_mc.t4.visible = false;
model_mc.r2.visible = false;
model_mc.yy1.visible = false;
model_mc.d4.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t5)){
teethremovesound();
model_mc.t5.visible = false;
model_mc.bl02.visible = false;
model_mc.d5.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t6)){
teethremovesound();
model_mc.t6.visible = false;
model_mc.y2.visible = false;
model_mc.b2.visible = false;
model_mc.d6.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t7)){
teethremovesound();
model_mc.t7.visible = false;
model_mc.yy2.visible = false;
model_mc.r1.visible = false;
model_mc.d7.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t8)){
teethremovesound();
model_mc.t8.visible = false;
model_mc.b1.visible = false;
model_mc.bl03.visible = false;
model_mc.d8.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t9)){
teethremovesound();
model_mc.t9.visible = false;
model_mc.bl4.visible = false;
model_mc.d9.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t10)){
teethremovesound();
model_mc.t10.visible = false;
model_mc.b3.visible = false;
model_mc.y3.visible = false;
model_mc.d10.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t11)){
teethremovesound();
model_mc.t11.visible = false;
model_mc.bl04.visible = false;
model_mc.d11.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t12)){
teethremovesound();
model_mc.t12.visible = false;
model_mc.y4.visible = false;
model_mc.d12.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t13)){
teethremovesound();
model_mc.t13.visible = false;
model_mc.bl2.visible = false;
model_mc.d13.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t14)){
teethremovesound();
model_mc.t14.visible = false;
model_mc.r3.visible = false;
model_mc.bl05.visible = false;
model_mc.d14.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t15)){
teethremovesound();
model_mc.t15.visible = false;
model_mc.b4.visible = false;
model_mc.yy3.visible = false;
model_mc.d15.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t16)){
teethremovesound();
model_mc.t16.visible = false;
model_mc.y5.visible = false;
model_mc.d16.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t17)){
teethremovesound();
model_mc.t17.visible = false;
model_mc.r4.visible = false;
model_mc.yy4.visible = false;
model_mc.d17.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t18)){
teethremovesound();
model_mc.t18.visible = false;
model_mc.y6.visible = false;
model_mc.d18.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t19)){
teethremovesound();
model_mc.t19.visible = false;
model_mc.bl3.visible = false;
model_mc.d19.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t20)){
teethremovesound();
model_mc.t20.visible = false;
model_mc.bl06.visible = false;
model_mc.r5.visible = false;
model_mc.d20.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t21)){
teethremovesound();
model_mc.t21.visible = false;
model_mc.b5.visible = false;
model_mc.d21.gotoAndStop(12);
} else {
if (item4_mc.hit.hitTestObject(model_mc.t22)){
teethremovesound();
model_mc.t22.visible = false;
model_mc.bl07.visible = false;
model_mc.d22.gotoAndStop(12);
} else {
item4_mc.stopDrag();
item4_mc.gotoAndStop(1);
tutorial_mc.gotoAndStop(1);
Mouse.show();
item4_mc.x = item4_mcX;
item4_mc.y = item4_mcY;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (e.target.name == "light_mc"){
light_mc.stopDrag();
light_mc.on_btn.visible = true;
light_mc.on_btn.mouseEnabled = true;
light_mc.removeEventListener(MouseEvent.MOUSE_MOVE, movefun1);
};
if (type_teeth.currentFrame == 2){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
model_mc.d1.gotoAndStop(1);
blackremovesound();
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
model_mc.d2.gotoAndStop(1);
blackremovesound();
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
model_mc.d3.gotoAndStop(1);
blackremovesound();
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
model_mc.d4.gotoAndStop(1);
blackremovesound();
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
model_mc.d5.gotoAndStop(1);
blackremovesound();
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
model_mc.d6.gotoAndStop(1);
blackremovesound();
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
model_mc.d7.gotoAndStop(1);
blackremovesound();
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
model_mc.d8.gotoAndStop(1);
blackremovesound();
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
model_mc.d9.gotoAndStop(1);
blackremovesound();
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
model_mc.d10.gotoAndStop(1);
blackremovesound();
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
model_mc.d11.gotoAndStop(1);
blackremovesound();
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
model_mc.d12.gotoAndStop(1);
blackremovesound();
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
model_mc.d13.gotoAndStop(1);
blackremovesound();
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
model_mc.d14.gotoAndStop(1);
blackremovesound();
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
model_mc.d15.gotoAndStop(1);
blackremovesound();
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
model_mc.d16.gotoAndStop(1);
blackremovesound();
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
model_mc.d17.gotoAndStop(1);
blackremovesound();
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
model_mc.d18.gotoAndStop(1);
blackremovesound();
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
model_mc.d19.gotoAndStop(1);
blackremovesound();
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
model_mc.d20.gotoAndStop(1);
blackremovesound();
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
model_mc.d21.gotoAndStop(1);
blackremovesound();
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
model_mc.d22.gotoAndStop(1);
blackremovesound();
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 3){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
model_mc.d1.gotoAndStop(2);
blackremovesound();
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
model_mc.d2.gotoAndStop(2);
blackremovesound();
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
model_mc.d3.gotoAndStop(2);
blackremovesound();
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
model_mc.d4.gotoAndStop(2);
blackremovesound();
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
model_mc.d5.gotoAndStop(2);
blackremovesound();
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
model_mc.d6.gotoAndStop(2);
blackremovesound();
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
model_mc.d7.gotoAndStop(2);
blackremovesound();
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
model_mc.d8.gotoAndStop(2);
blackremovesound();
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
model_mc.d9.gotoAndStop(2);
blackremovesound();
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
model_mc.d10.gotoAndStop(2);
blackremovesound();
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
model_mc.d11.gotoAndStop(2);
blackremovesound();
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
model_mc.d12.gotoAndStop(2);
blackremovesound();
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
model_mc.d13.gotoAndStop(2);
blackremovesound();
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
model_mc.d14.gotoAndStop(2);
blackremovesound();
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
model_mc.d15.gotoAndStop(2);
blackremovesound();
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
model_mc.d16.gotoAndStop(2);
blackremovesound();
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(2);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(2);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(2);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
model_mc.d20.gotoAndStop(2);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(2);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(2);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 4){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
blackremovesound();
model_mc.d1.gotoAndStop(3);
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
blackremovesound();
model_mc.d2.gotoAndStop(3);
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
blackremovesound();
model_mc.d3.gotoAndStop(3);
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
blackremovesound();
model_mc.d4.gotoAndStop(3);
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
blackremovesound();
model_mc.d5.gotoAndStop(3);
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
blackremovesound();
model_mc.d6.gotoAndStop(3);
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
blackremovesound();
model_mc.d7.gotoAndStop(3);
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
blackremovesound();
model_mc.d8.gotoAndStop(3);
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
blackremovesound();
model_mc.d9.gotoAndStop(3);
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
blackremovesound();
model_mc.d10.gotoAndStop(3);
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
blackremovesound();
model_mc.d11.gotoAndStop(3);
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
blackremovesound();
model_mc.d12.gotoAndStop(3);
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
blackremovesound();
model_mc.d13.gotoAndStop(3);
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
blackremovesound();
model_mc.d14.gotoAndStop(3);
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
blackremovesound();
model_mc.d15.gotoAndStop(3);
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
blackremovesound();
model_mc.d16.gotoAndStop(3);
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(3);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(3);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(3);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
blackremovesound();
model_mc.d20.gotoAndStop(3);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(3);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(3);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 5){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
blackremovesound();
model_mc.d1.gotoAndStop(4);
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
blackremovesound();
model_mc.d2.gotoAndStop(4);
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
blackremovesound();
model_mc.d3.gotoAndStop(4);
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
blackremovesound();
model_mc.d4.gotoAndStop(4);
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
blackremovesound();
model_mc.d5.gotoAndStop(4);
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
blackremovesound();
model_mc.d6.gotoAndStop(4);
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
blackremovesound();
model_mc.d7.gotoAndStop(4);
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
blackremovesound();
model_mc.d8.gotoAndStop(4);
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
blackremovesound();
model_mc.d9.gotoAndStop(4);
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
blackremovesound();
model_mc.d10.gotoAndStop(4);
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
blackremovesound();
model_mc.d11.gotoAndStop(4);
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
blackremovesound();
model_mc.d12.gotoAndStop(4);
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
blackremovesound();
model_mc.d13.gotoAndStop(4);
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
blackremovesound();
model_mc.d14.gotoAndStop(4);
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
blackremovesound();
model_mc.d15.gotoAndStop(4);
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
blackremovesound();
model_mc.d16.gotoAndStop(4);
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(4);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(4);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(4);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
blackremovesound();
model_mc.d20.gotoAndStop(4);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(4);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(4);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 6){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
blackremovesound();
model_mc.d1.gotoAndStop(5);
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
blackremovesound();
model_mc.d2.gotoAndStop(5);
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
blackremovesound();
model_mc.d3.gotoAndStop(5);
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
blackremovesound();
model_mc.d4.gotoAndStop(5);
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
blackremovesound();
model_mc.d5.gotoAndStop(5);
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
blackremovesound();
model_mc.d6.gotoAndStop(5);
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
blackremovesound();
model_mc.d7.gotoAndStop(5);
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
blackremovesound();
model_mc.d8.gotoAndStop(5);
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
blackremovesound();
model_mc.d9.gotoAndStop(5);
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
blackremovesound();
model_mc.d10.gotoAndStop(5);
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
blackremovesound();
model_mc.d11.gotoAndStop(5);
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
blackremovesound();
model_mc.d12.gotoAndStop(5);
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
blackremovesound();
model_mc.d13.gotoAndStop(5);
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
blackremovesound();
model_mc.d14.gotoAndStop(5);
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
blackremovesound();
model_mc.d15.gotoAndStop(5);
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
blackremovesound();
model_mc.d16.gotoAndStop(5);
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(5);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(5);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(5);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
blackremovesound();
model_mc.d20.gotoAndStop(5);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(5);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(5);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 7){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
blackremovesound();
model_mc.d1.gotoAndStop(6);
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
blackremovesound();
model_mc.d2.gotoAndStop(6);
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
blackremovesound();
model_mc.d3.gotoAndStop(6);
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
blackremovesound();
model_mc.d4.gotoAndStop(6);
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
blackremovesound();
model_mc.d5.gotoAndStop(6);
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
blackremovesound();
model_mc.d6.gotoAndStop(6);
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
blackremovesound();
model_mc.d7.gotoAndStop(6);
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
blackremovesound();
model_mc.d8.gotoAndStop(6);
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
blackremovesound();
model_mc.d9.gotoAndStop(6);
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
blackremovesound();
model_mc.d10.gotoAndStop(6);
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
blackremovesound();
model_mc.d11.gotoAndStop(6);
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
blackremovesound();
model_mc.d12.gotoAndStop(6);
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
blackremovesound();
model_mc.d13.gotoAndStop(6);
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
blackremovesound();
model_mc.d14.gotoAndStop(6);
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
blackremovesound();
model_mc.d15.gotoAndStop(6);
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
blackremovesound();
model_mc.d16.gotoAndStop(6);
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(6);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(6);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(1);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
blackremovesound();
model_mc.d20.gotoAndStop(6);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(6);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(6);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 8){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
blackremovesound();
model_mc.d1.gotoAndStop(7);
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
blackremovesound();
model_mc.d2.gotoAndStop(7);
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
blackremovesound();
model_mc.d3.gotoAndStop(7);
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
blackremovesound();
model_mc.d4.gotoAndStop(7);
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
blackremovesound();
model_mc.d5.gotoAndStop(7);
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
blackremovesound();
model_mc.d6.gotoAndStop(7);
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
blackremovesound();
model_mc.d7.gotoAndStop(7);
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
blackremovesound();
model_mc.d8.gotoAndStop(7);
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
blackremovesound();
model_mc.d9.gotoAndStop(7);
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
blackremovesound();
model_mc.d10.gotoAndStop(7);
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
blackremovesound();
model_mc.d11.gotoAndStop(7);
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
blackremovesound();
model_mc.d12.gotoAndStop(7);
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
blackremovesound();
model_mc.d13.gotoAndStop(7);
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
blackremovesound();
model_mc.d14.gotoAndStop(7);
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
blackremovesound();
model_mc.d15.gotoAndStop(7);
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
blackremovesound();
model_mc.d16.gotoAndStop(7);
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(7);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(7);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(7);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
blackremovesound();
model_mc.d20.gotoAndStop(7);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(7);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(7);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 9){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
blackremovesound();
model_mc.d1.gotoAndStop(8);
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
blackremovesound();
model_mc.d2.gotoAndStop(8);
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
blackremovesound();
model_mc.d3.gotoAndStop(8);
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
blackremovesound();
model_mc.d4.gotoAndStop(8);
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
blackremovesound();
model_mc.d5.gotoAndStop(8);
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
blackremovesound();
model_mc.d6.gotoAndStop(8);
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
blackremovesound();
model_mc.d7.gotoAndStop(8);
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
blackremovesound();
model_mc.d8.gotoAndStop(8);
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
blackremovesound();
model_mc.d9.gotoAndStop(8);
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
blackremovesound();
model_mc.d10.gotoAndStop(8);
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
blackremovesound();
model_mc.d11.gotoAndStop(8);
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
blackremovesound();
model_mc.d12.gotoAndStop(8);
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
blackremovesound();
model_mc.d13.gotoAndStop(8);
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
blackremovesound();
model_mc.d14.gotoAndStop(8);
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
blackremovesound();
model_mc.d15.gotoAndStop(8);
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
blackremovesound();
model_mc.d16.gotoAndStop(8);
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(8);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(8);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(8);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
blackremovesound();
model_mc.d20.gotoAndStop(8);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(8);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(8);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 10){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
blackremovesound();
model_mc.d1.gotoAndStop(9);
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
blackremovesound();
model_mc.d2.gotoAndStop(9);
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
blackremovesound();
model_mc.d3.gotoAndStop(9);
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
blackremovesound();
model_mc.d4.gotoAndStop(9);
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
blackremovesound();
model_mc.d5.gotoAndStop(9);
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
blackremovesound();
model_mc.d6.gotoAndStop(9);
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
blackremovesound();
model_mc.d7.gotoAndStop(9);
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
blackremovesound();
model_mc.d8.gotoAndStop(9);
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
blackremovesound();
model_mc.d9.gotoAndStop(9);
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
blackremovesound();
model_mc.d10.gotoAndStop(9);
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
blackremovesound();
model_mc.d11.gotoAndStop(9);
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
blackremovesound();
model_mc.d12.gotoAndStop(9);
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
blackremovesound();
model_mc.d13.gotoAndStop(9);
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
blackremovesound();
model_mc.d14.gotoAndStop(9);
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
blackremovesound();
model_mc.d15.gotoAndStop(9);
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
blackremovesound();
model_mc.d16.gotoAndStop(9);
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(9);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(9);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(9);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
blackremovesound();
model_mc.d20.gotoAndStop(9);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(9);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(9);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 11){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
blackremovesound();
model_mc.d1.gotoAndStop(10);
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
blackremovesound();
model_mc.d2.gotoAndStop(10);
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
blackremovesound();
model_mc.d3.gotoAndStop(10);
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
blackremovesound();
model_mc.d4.gotoAndStop(10);
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
blackremovesound();
model_mc.d5.gotoAndStop(10);
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
blackremovesound();
model_mc.d6.gotoAndStop(10);
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
blackremovesound();
model_mc.d7.gotoAndStop(10);
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
blackremovesound();
model_mc.d8.gotoAndStop(10);
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
blackremovesound();
model_mc.d9.gotoAndStop(10);
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
blackremovesound();
model_mc.d10.gotoAndStop(10);
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
blackremovesound();
model_mc.d11.gotoAndStop(10);
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
blackremovesound();
model_mc.d12.gotoAndStop(10);
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
blackremovesound();
model_mc.d13.gotoAndStop(10);
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
blackremovesound();
model_mc.d14.gotoAndStop(10);
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
blackremovesound();
model_mc.d15.gotoAndStop(10);
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
blackremovesound();
model_mc.d16.gotoAndStop(10);
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(10);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(10);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(10);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
blackremovesound();
model_mc.d20.gotoAndStop(10);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(10);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(10);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 13){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
blackremovesound();
model_mc.d1.gotoAndStop(13);
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
blackremovesound();
model_mc.d2.gotoAndStop(13);
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
blackremovesound();
model_mc.d3.gotoAndStop(13);
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
blackremovesound();
model_mc.d4.gotoAndStop(13);
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
blackremovesound();
model_mc.d5.gotoAndStop(13);
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
blackremovesound();
model_mc.d6.gotoAndStop(13);
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
blackremovesound();
model_mc.d7.gotoAndStop(13);
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
blackremovesound();
model_mc.d8.gotoAndStop(13);
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
blackremovesound();
model_mc.d9.gotoAndStop(13);
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
blackremovesound();
model_mc.d10.gotoAndStop(13);
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
blackremovesound();
model_mc.d11.gotoAndStop(13);
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
blackremovesound();
model_mc.d12.gotoAndStop(13);
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
blackremovesound();
model_mc.d13.gotoAndStop(13);
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
blackremovesound();
model_mc.d14.gotoAndStop(13);
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
blackremovesound();
model_mc.d15.gotoAndStop(13);
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
blackremovesound();
model_mc.d16.gotoAndStop(13);
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(13);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(13);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(13);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
blackremovesound();
model_mc.d20.gotoAndStop(13);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(13);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(13);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (type_teeth.currentFrame == 14){
if (((type_teeth.hit.hitTestObject(model_mc.d1)) && ((model_mc.d1.currentFrame == 12)))){
blackremovesound();
model_mc.d1.gotoAndStop(14);
model_mc.d1.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d2)) && ((model_mc.d2.currentFrame == 12)))){
blackremovesound();
model_mc.d2.gotoAndStop(14);
model_mc.d2.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d3)) && ((model_mc.d3.currentFrame == 12)))){
blackremovesound();
model_mc.d3.gotoAndStop(14);
model_mc.d3.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d4)) && ((model_mc.d4.currentFrame == 12)))){
blackremovesound();
model_mc.d4.gotoAndStop(14);
model_mc.d4.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d5)) && ((model_mc.d5.currentFrame == 12)))){
blackremovesound();
model_mc.d5.gotoAndStop(14);
model_mc.d5.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d6)) && ((model_mc.d6.currentFrame == 12)))){
blackremovesound();
model_mc.d6.gotoAndStop(14);
model_mc.d6.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d7)) && ((model_mc.d7.currentFrame == 12)))){
blackremovesound();
model_mc.d7.gotoAndStop(14);
model_mc.d7.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d8)) && ((model_mc.d8.currentFrame == 12)))){
blackremovesound();
model_mc.d8.gotoAndStop(14);
model_mc.d8.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d9)) && ((model_mc.d9.currentFrame == 12)))){
blackremovesound();
model_mc.d9.gotoAndStop(14);
model_mc.d9.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d10)) && ((model_mc.d10.currentFrame == 12)))){
blackremovesound();
model_mc.d10.gotoAndStop(14);
model_mc.d10.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d11)) && ((model_mc.d11.currentFrame == 12)))){
blackremovesound();
model_mc.d11.gotoAndStop(14);
model_mc.d11.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d12)) && ((model_mc.d12.currentFrame == 12)))){
blackremovesound();
model_mc.d12.gotoAndStop(14);
model_mc.d12.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d13)) && ((model_mc.d13.currentFrame == 12)))){
blackremovesound();
model_mc.d13.gotoAndStop(14);
model_mc.d13.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d14)) && ((model_mc.d14.currentFrame == 12)))){
blackremovesound();
model_mc.d14.gotoAndStop(14);
model_mc.d14.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d15)) && ((model_mc.d15.currentFrame == 12)))){
blackremovesound();
model_mc.d15.gotoAndStop(14);
model_mc.d15.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d16)) && ((model_mc.d16.currentFrame == 12)))){
blackremovesound();
model_mc.d16.gotoAndStop(14);
model_mc.d16.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d17)) && ((model_mc.d17.currentFrame == 12)))){
blackremovesound();
model_mc.d17.gotoAndStop(14);
model_mc.d17.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d18)) && ((model_mc.d18.currentFrame == 12)))){
blackremovesound();
model_mc.d18.gotoAndStop(14);
model_mc.d18.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d19)) && ((model_mc.d19.currentFrame == 12)))){
blackremovesound();
model_mc.d19.gotoAndStop(14);
model_mc.d19.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d20)) && ((model_mc.d20.currentFrame == 12)))){
blackremovesound();
model_mc.d20.gotoAndStop(14);
model_mc.d20.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d21)) && ((model_mc.d21.currentFrame == 12)))){
blackremovesound();
model_mc.d21.gotoAndStop(14);
model_mc.d21.transform.colorTransform = new ColorTransform();
} else {
if (((type_teeth.hit.hitTestObject(model_mc.d22)) && ((model_mc.d22.currentFrame == 12)))){
blackremovesound();
model_mc.d22.gotoAndStop(14);
model_mc.d22.transform.colorTransform = new ColorTransform();
} else {
type_teeth.stopDrag();
type_teeth.gotoAndStop(1);
Mouse.show();
type_teeth.x = 1000;
type_teeth.y = 513;
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
};
if (e.target.name == "tee_1"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(2);
};
if (e.target.name == "tee_2"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(3);
};
if (e.target.name == "tee_3"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(4);
};
if (e.target.name == "tee_4"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(5);
};
if (e.target.name == "tee_5"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(6);
};
if (e.target.name == "tee_6"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(7);
};
if (e.target.name == "tee_7"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(8);
};
if (e.target.name == "tee_8"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(9);
};
if (e.target.name == "tee_9"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(10);
};
if (e.target.name == "tee_10"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(11);
};
if (e.target.name == "tee_11"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(13);
};
if (e.target.name == "tee_12"){
type_teeth.startDrag(true);
type_teeth.gotoAndStop(14);
};
if (e.target.name == "water_mc"){
if (waterCheckNum == 0){
waterCheckNum = 1;
water_mc.startDrag(true);
Mouse.hide();
} else {
if (waterCheckNum == 1){
waterCheckNum = 0;
Mouse.show();
water_mc.stopDrag();
water_mc.gotoAndStop(1);
btnsoundChannel02.stop();
water_mc.x = water_mcX;
water_mc.y = water_mcY;
Mouse.show();
};
};
};
if (e.target.name == "water01_mc"){
if (waterCheckNum == 0){
waterCheckNum = 1;
water01_mc.startDrag(true);
watersound();
Mouse.hide();
} else {
if (waterCheckNum == 1){
waterCheckNum = 0;
Mouse.show();
water01_mc.stopDrag();
btnsoundChannel03.stop();
water01_mc.x = water01_mcX;
water01_mc.y = water01_mcY;
};
};
};
if (e.target.name == "item1_mc"){
if (waterCheckNum == 0){
waterCheckNum = 1;
Mouse.hide();
runsound();
item1_mc.startDrag(true);
item1_mc.gotoAndStop(2);
tutorial_mc.gotoAndStop(7);
} else {
if (waterCheckNum == 1){
waterCheckNum = 0;
Mouse.show();
btnsoundChannel03.stop();
btnsoundChannel02.stop();
item1_mc.stopDrag();
item1_mc.gotoAndStop(1);
tutorial_mc.gotoAndStop(1);
item1_mc.x = item1_mcX;
item1_mc.y = item1_mcY;
};
};
};
if (e.target.name == "item2_mc"){
if (waterCheckNum == 0){
waterCheckNum = 1;
Mouse.hide();
item2_mc.startDrag(true);
item2_mc.gotoAndStop(2);
tutorial_mc.gotoAndStop(2);
} else {
if (waterCheckNum == 1){
waterCheckNum = 0;
Mouse.show();
item2_mc.stopDrag();
item2_mc.gotoAndStop(1);
tutorial_mc.gotoAndStop(1);
item2_mc.x = item2_mcX;
item2_mc.y = item2_mcY;
};
};
};
if (e.target.name == "item3_mc"){
if (waterCheckNum == 0){
waterCheckNum = 1;
Mouse.hide();
item3_mc.startDrag(true);
item3_mc.gotoAndStop(2);
tutorial_mc.gotoAndStop(3);
runsound();
} else {
if (waterCheckNum == 1){
waterCheckNum = 0;
Mouse.show();
item3_mc.stopDrag();
item3_mc.gotoAndStop(1);
btnsoundChannel03.stop();
btnsoundChannel02.stop();
tutorial_mc.gotoAndStop(1);
item3_mc.x = item3_mcX;
item3_mc.y = item3_mcY;
};
};
};
if (e.target.name == "item4_mc"){
item4_mc.startDrag(true);
Mouse.hide();
item4_mc.gotoAndStop(2);
tutorial_mc.gotoAndStop(4);
};
if (e.target.name == "item5_mc"){
if (waterCheckNum == 0){
waterCheckNum = 1;
Mouse.hide();
item5_mc.startDrag(true);
tutorial_mc.gotoAndStop(5);
} else {
if (waterCheckNum == 1){
waterCheckNum = 0;
Mouse.show();
item5_mc.stopDrag();
item5_mc.gotoAndStop(1);
tutorial_mc.gotoAndStop(1);
item5_mc.x = item5_mcX;
item5_mc.y = item5_mcY;
};
};
};
if (e.target.name == "item6_mc"){
if (waterCheckNum == 0){
waterCheckNum = 1;
Mouse.hide();
runsound();
item6_mc.startDrag(true);
item6_mc.gotoAndStop(2);
tutorial_mc.gotoAndStop(6);
} else {
if (waterCheckNum == 1){
waterCheckNum = 0;
Mouse.show();
btnsoundChannel03.stop();
btnsoundChannel02.stop();
item6_mc.stopDrag();
item6_mc.gotoAndStop(1);
tutorial_mc.gotoAndStop(1);
item6_mc.x = item6_mcX;
item6_mc.y = item6_mcY;
};
};
};
if (e.target.name == "color_mc"){
if (waterCheckNum == 0){
waterCheckNum = 1;
Mouse.hide();
color_mc.startDrag(true);
colorCheckNum = 0;
} else {
if (waterCheckNum == 1){
waterCheckNum = 0;
Mouse.show();
color_mc.stopDrag();
colorCheckNum = 1;
color_mc.x = color_mcX;
color_mc.y = color_mcY;
};
};
};
if (e.target.name == "tatoo_mc"){
if (waterCheckNum == 0){
waterCheckNum = 1;
Mouse.hide();
tatoo_mc.startDrag(true);
} else {
if (waterCheckNum == 1){
waterCheckNum = 0;
Mouse.show();
tatoo_mc.stopDrag();
tatoo_mc.x = tatoo_mcX;
tatoo_mc.y = tatoo_mcY;
};
};
};
}
public function replayfun(e:MouseEvent){
rollsound();
gotoAndStop("startPage");
}
function frame1(){
localConnection = new LocalConnection();
localDomainName = localConnection.domain;
fmm01_menu = new ContextMenu();
fmm01_menu.hideBuiltInItems();
this.contextMenu = fmm01_menu;
item = new ContextMenuItem("Powered by www.sisigames.com");
fmm01_menu.customItems[0] = item;
item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, rightclick);
}
function frame79(){
stop();
}
function frame80(){
stop();
TransitionManager.start(maskanim, {type:Blinds, direction:Transition.OUT, duration:1, easing:None.easeNone, numStrips:30, dimension:1});
volumeAdjust = new SoundTransform();
volumeAdjust.volume = 1.5;
play_btn.addEventListener(MouseEvent.CLICK, playfun);
play_btn.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
SoundMixer.stopAll();
bgsound = new bg();
bgChannel = new SoundChannel();
if (snd_mc.currentFrame == 1){
bgChannel = bgsound.play(0, 1000);
};
btnsound1 = new btn();
btnsound2 = new btns();
btnsound3 = new finish();
btnsound5 = new drill();
btnsound6 = new run();
btnsound7 = new teethremove();
btnsound8 = new btn3();
btnsound9 = new water();
btnsound10 = new spray();
btnsoundChannel = new SoundChannel();
btnsoundChannel01 = new SoundChannel();
btnsoundChannel02 = new SoundChannel();
btnsoundChannel03 = new SoundChannel();
btnsoundChannel04 = new SoundChannel();
moregames.addEventListener(MouseEvent.CLICK, moregamesUrl);
moregames.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
logoMc.addEventListener(MouseEvent.CLICK, logoUrl);
logoMc.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
snd_mc.buttonMode = true;
addEventListener(MouseEvent.MOUSE_DOWN, music);
}
function frame81(){
stop();
TransitionManager.start(maskanim, {type:Blinds, direction:Transition.OUT, duration:1, easing:None.easeNone, numStrips:30, dimension:1});
moregames.addEventListener(MouseEvent.CLICK, moregamesUrl);
moregames.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
logoMc.addEventListener(MouseEvent.CLICK, logoUrl);
logoMc.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
nextBut.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
doneBut.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
waterCheckNum = 0;
colorCheckNum = 0;
doneBut.visible = false;
tatoo_mc.visible = false;
color_mc.visible = false;
sticker_options.visible = false;
color_options.visible = false;
water_mc.buttonMode = true;
water01_mc.buttonMode = true;
color_mc.buttonMode = true;
tatoo_mc.buttonMode = true;
light_mc.buttonMode = true;
item1_mc.buttonMode = true;
item2_mc.buttonMode = true;
item3_mc.buttonMode = true;
item4_mc.buttonMode = true;
item5_mc.buttonMode = true;
item6_mc.buttonMode = true;
water_mcX = water_mc.x;
water_mcY = water_mc.y;
water01_mcX = water01_mc.x;
water01_mcY = water01_mc.y;
item1_mcX = item1_mc.x;
item1_mcY = item1_mc.y;
item2_mcX = item2_mc.x;
item2_mcY = item2_mc.y;
item3_mcX = item3_mc.x;
item3_mcY = item3_mc.y;
item5_mcX = item5_mc.x;
item5_mcY = item5_mc.y;
item6_mcX = item6_mc.x;
item6_mcY = item6_mc.y;
item4_mcX = item4_mc.x;
item4_mcY = item4_mc.y;
tattooNum = 0;
colorNum = 0;
tatoo_mcX = tatoo_mc.x;
tatoo_mcY = tatoo_mc.y;
color_mcX = color_mc.x;
color_mcY = color_mc.y;
ii = 1;
while (ii <= 16) {
model_mc[("d" + ii)].gotoAndStop(11);
ii++;
};
addEventListener(MouseEvent.MOUSE_DOWN, downfun1);
addEventListener(MouseEvent.MOUSE_UP, upfun1);
addEventListener(Event.ENTER_FRAME, enterfun1);
addEventListener(MouseEvent.CLICK, clikfun1);
}
function frame82(){
replayBut.addEventListener(MouseEvent.CLICK, replayfun);
replayBut.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
if (snd_mc.currentFrame == 1){
btnsoundChannel = btnsound3.play();
};
TransitionManager.start(maskanim, {type:Blinds, direction:Transition.OUT, duration:1, easing:None.easeNone, numStrips:30, dimension:1});
moregames.addEventListener(MouseEvent.CLICK, moregamesUrl);
moregames.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
logoMc.addEventListener(MouseEvent.CLICK, logoUrl);
logoMc.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
thumb.addEventListener(MouseEvent.CLICK, thumbUrl);
thumb.addEventListener(MouseEvent.ROLL_OVER, rollsound1);
}
}
}//package hannahmontanaatthedentist_fla
Section 84
//onmcc_177 (hannahmontanaatthedentist_fla.onmcc_177)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class onmcc_177 extends MovieClip {
public function onmcc_177(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 85
//Play_BG_11copy_272 (hannahmontanaatthedentist_fla.Play_BG_11copy_272)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class Play_BG_11copy_272 extends MovieClip {
public function Play_BG_11copy_272(){
addFrameScript(19, frame20);
}
function frame20(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 86
//Play_BG_11copy2_280 (hannahmontanaatthedentist_fla.Play_BG_11copy2_280)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class Play_BG_11copy2_280 extends MovieClip {
public function Play_BG_11copy2_280(){
addFrameScript(19, frame20);
}
function frame20(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 87
//Play_BG_11copy3_274 (hannahmontanaatthedentist_fla.Play_BG_11copy3_274)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class Play_BG_11copy3_274 extends MovieClip {
public function Play_BG_11copy3_274(){
addFrameScript(19, frame20);
}
function frame20(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 88
//Play_BG_11copy4_277 (hannahmontanaatthedentist_fla.Play_BG_11copy4_277)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class Play_BG_11copy4_277 extends MovieClip {
public function Play_BG_11copy4_277(){
addFrameScript(19, frame20);
}
function frame20(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 89
//preloader68_69 (hannahmontanaatthedentist_fla.preloader68_69)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class preloader68_69 extends MovieClip {
public var anim:MovieClip;
public function preloader68_69(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 90
//st_10_217 (hannahmontanaatthedentist_fla.st_10_217)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_10_217 extends MovieClip {
public function st_10_217(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 91
//st_11_218 (hannahmontanaatthedentist_fla.st_11_218)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_11_218 extends MovieClip {
public function st_11_218(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 92
//st_12_219 (hannahmontanaatthedentist_fla.st_12_219)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_12_219 extends MovieClip {
public function st_12_219(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 93
//st_13_220 (hannahmontanaatthedentist_fla.st_13_220)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_13_220 extends MovieClip {
public function st_13_220(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 94
//st_14_221 (hannahmontanaatthedentist_fla.st_14_221)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_14_221 extends MovieClip {
public function st_14_221(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 95
//st_15_222 (hannahmontanaatthedentist_fla.st_15_222)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_15_222 extends MovieClip {
public function st_15_222(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 96
//st_16_223 (hannahmontanaatthedentist_fla.st_16_223)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_16_223 extends MovieClip {
public function st_16_223(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 97
//st_17_224 (hannahmontanaatthedentist_fla.st_17_224)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_17_224 extends MovieClip {
public function st_17_224(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 98
//st_18_225 (hannahmontanaatthedentist_fla.st_18_225)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_18_225 extends MovieClip {
public function st_18_225(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 99
//st_19_226 (hannahmontanaatthedentist_fla.st_19_226)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_19_226 extends MovieClip {
public function st_19_226(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 100
//st_1ee_208 (hannahmontanaatthedentist_fla.st_1ee_208)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_1ee_208 extends MovieClip {
public function st_1ee_208(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 101
//st_2_209 (hannahmontanaatthedentist_fla.st_2_209)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_2_209 extends MovieClip {
public function st_2_209(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 102
//st_20_227 (hannahmontanaatthedentist_fla.st_20_227)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_20_227 extends MovieClip {
public function st_20_227(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 103
//st_3_210 (hannahmontanaatthedentist_fla.st_3_210)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_3_210 extends MovieClip {
public function st_3_210(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 104
//st_4_211 (hannahmontanaatthedentist_fla.st_4_211)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_4_211 extends MovieClip {
public function st_4_211(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 105
//st_5_212 (hannahmontanaatthedentist_fla.st_5_212)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_5_212 extends MovieClip {
public function st_5_212(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 106
//st_6_213 (hannahmontanaatthedentist_fla.st_6_213)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_6_213 extends MovieClip {
public function st_6_213(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 107
//st_7_214 (hannahmontanaatthedentist_fla.st_7_214)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_7_214 extends MovieClip {
public function st_7_214(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 108
//st_8_215 (hannahmontanaatthedentist_fla.st_8_215)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_8_215 extends MovieClip {
public function st_8_215(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 109
//st_9_216 (hannahmontanaatthedentist_fla.st_9_216)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class st_9_216 extends MovieClip {
public function st_9_216(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 110
//stickclip_231 (hannahmontanaatthedentist_fla.stickclip_231)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class stickclip_231 extends MovieClip {
public var hit:MovieClip;
public var stick:MovieClip;
public function stickclip_231(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 111
//stickermc_161 (hannahmontanaatthedentist_fla.stickermc_161)
package hannahmontanaatthedentist_fla {
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.net.*;
import flash.ui.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.text.*;
import flash.xml.*;
public dynamic class stickermc_161 extends MovieClip {
public function stickermc_161(){
addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21);
}
function frame1(){
stop();
}
function frame2(){
Object(root).rollsound1();
}
function frame3(){
Object(root).rollsound1();
}
function frame4(){
Object(root).rollsound1();
}
function frame5(){
Object(root).rollsound1();
}
function frame6(){
Object(root).rollsound1();
}
function frame7(){
Object(root).rollsound1();
}
function frame8(){
Object(root).rollsound1();
}
function frame9(){
Object(root).rollsound1();
}
function frame10(){
Object(root).rollsound1();
}
function frame11(){
Object(root).rollsound1();
}
function frame12(){
Object(root).rollsound1();
}
function frame13(){
Object(root).rollsound1();
}
function frame14(){
Object(root).rollsound1();
}
function frame15(){
Object(root).rollsound1();
}
function frame16(){
Object(root).rollsound1();
}
function frame17(){
Object(root).rollsound1();
}
function frame18(){
Object(root).rollsound1();
}
function frame19(){
Object(root).rollsound1();
}
function frame20(){
Object(root).rollsound1();
}
function frame21(){
Object(root).rollsound1();
}
}
}//package hannahmontanaatthedentist_fla
Section 112
//sudiconnn2_63 (hannahmontanaatthedentist_fla.sudiconnn2_63)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class sudiconnn2_63 extends MovieClip {
public var snd1_mc:MovieClip;
public function sudiconnn2_63(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 113
//tee_1_180 (hannahmontanaatthedentist_fla.tee_1_180)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_1_180 extends MovieClip {
public var mc:MovieClip;
public function tee_1_180(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 114
//tee_10_189 (hannahmontanaatthedentist_fla.tee_10_189)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_10_189 extends MovieClip {
public var mc:MovieClip;
public function tee_10_189(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 115
//tee_11_190 (hannahmontanaatthedentist_fla.tee_11_190)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_11_190 extends MovieClip {
public var mc:MovieClip;
public function tee_11_190(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 116
//tee_12_181 (hannahmontanaatthedentist_fla.tee_12_181)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_12_181 extends MovieClip {
public var mc:MovieClip;
public function tee_12_181(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 117
//tee_121_191 (hannahmontanaatthedentist_fla.tee_121_191)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_121_191 extends MovieClip {
public var mc:MovieClip;
public function tee_121_191(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 118
//tee_1new_234 (hannahmontanaatthedentist_fla.tee_1new_234)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_1new_234 extends MovieClip {
public var hit:MovieClip;
public var mc:MovieClip;
public function tee_1new_234(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 119
//tee_3_182 (hannahmontanaatthedentist_fla.tee_3_182)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_3_182 extends MovieClip {
public var mc:MovieClip;
public function tee_3_182(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 120
//tee_4_183 (hannahmontanaatthedentist_fla.tee_4_183)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_4_183 extends MovieClip {
public var mc:MovieClip;
public function tee_4_183(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 121
//tee_5_184 (hannahmontanaatthedentist_fla.tee_5_184)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_5_184 extends MovieClip {
public var mc:MovieClip;
public function tee_5_184(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 122
//tee_6_185 (hannahmontanaatthedentist_fla.tee_6_185)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_6_185 extends MovieClip {
public var mc:MovieClip;
public function tee_6_185(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 123
//tee_7_186 (hannahmontanaatthedentist_fla.tee_7_186)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_7_186 extends MovieClip {
public function tee_7_186(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 124
//tee_8_187 (hannahmontanaatthedentist_fla.tee_8_187)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_8_187 extends MovieClip {
public var mc:MovieClip;
public function tee_8_187(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 125
//tee_9_188 (hannahmontanaatthedentist_fla.tee_9_188)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class tee_9_188 extends MovieClip {
public var mc:MovieClip;
public function tee_9_188(){
addFrameScript(0, frame1);
}
function frame1(){
mouseChildren = false;
}
}
}//package hannahmontanaatthedentist_fla
Section 126
//Teeth1_207 (hannahmontanaatthedentist_fla.Teeth1_207)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class Teeth1_207 extends MovieClip {
public var st_8:MovieClip;
public var st_9:MovieClip;
public var remove_btn1:SimpleButton;
public var st_10:MovieClip;
public var st_20:MovieClip;
public var st_11:MovieClip;
public var st_12:MovieClip;
public var st_13:MovieClip;
public var st_14:MovieClip;
public var st_1:MovieClip;
public var st_15:MovieClip;
public var st_2:MovieClip;
public var st_16:MovieClip;
public var st_3:MovieClip;
public var st_17:MovieClip;
public var st_4:MovieClip;
public var st_18:MovieClip;
public var st_5:MovieClip;
public var st_19:MovieClip;
public var st_6:MovieClip;
public var st_7:MovieClip;
public function Teeth1_207(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
st_1.buttonMode = true;
st_2.buttonMode = true;
st_3.buttonMode = true;
st_4.buttonMode = true;
st_5.buttonMode = true;
st_6.buttonMode = true;
st_7.buttonMode = true;
st_8.buttonMode = true;
st_9.buttonMode = true;
st_10.buttonMode = true;
st_11.buttonMode = true;
st_12.buttonMode = true;
st_13.buttonMode = true;
st_14.buttonMode = true;
st_15.buttonMode = true;
st_16.buttonMode = true;
st_17.buttonMode = true;
st_18.buttonMode = true;
st_19.buttonMode = true;
st_20.buttonMode = true;
}
}
}//package hannahmontanaatthedentist_fla
Section 127
//Teeth22y_178 (hannahmontanaatthedentist_fla.Teeth22y_178)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class Teeth22y_178 extends MovieClip {
public var tee_3:MovieClip;
public var tee_4:MovieClip;
public var tee_10:MovieClip;
public var tee_11:MovieClip;
public var tee_5:MovieClip;
public var tee_12:MovieClip;
public var tee_6:MovieClip;
public var tee_7:MovieClip;
public var tee_8:MovieClip;
public var tee_9:MovieClip;
public var tee_1:MovieClip;
public var tee_2:MovieClip;
public function Teeth22y_178(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
tee_1.buttonMode = true;
tee_2.buttonMode = true;
tee_3.buttonMode = true;
tee_4.buttonMode = true;
tee_5.buttonMode = true;
tee_6.buttonMode = true;
tee_7.buttonMode = true;
tee_8.buttonMode = true;
tee_9.buttonMode = true;
tee_10.buttonMode = true;
tee_11.buttonMode = true;
tee_12.buttonMode = true;
}
}
}//package hannahmontanaatthedentist_fla
Section 128
//utyut_265 (hannahmontanaatthedentist_fla.utyut_265)
package hannahmontanaatthedentist_fla {
import flash.display.*;
public dynamic class utyut_265 extends MovieClip {
public function utyut_265(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package hannahmontanaatthedentist_fla
Section 129
//bg (bg)
package {
import flash.media.*;
public dynamic class bg extends Sound {
}
}//package
Section 130
//btn (btn)
package {
import flash.media.*;
public dynamic class btn extends Sound {
}
}//package
Section 131
//btn3 (btn3)
package {
import flash.media.*;
public dynamic class btn3 extends Sound {
}
}//package
Section 132
//btns (btns)
package {
import flash.media.*;
public dynamic class btns extends Sound {
}
}//package
Section 133
//clicksnd (clicksnd)
package {
import flash.media.*;
public dynamic class clicksnd extends Sound {
}
}//package
Section 134
//drill (drill)
package {
import flash.media.*;
public dynamic class drill extends Sound {
}
}//package
Section 135
//effect (effect)
package {
import flash.media.*;
public dynamic class effect extends Sound {
}
}//package
Section 136
//finish (finish)
package {
import flash.media.*;
public dynamic class finish extends Sound {
}
}//package
Section 137
//run (run)
package {
import flash.media.*;
public dynamic class run extends Sound {
}
}//package
Section 138
//spray (spray)
package {
import flash.media.*;
public dynamic class spray extends Sound {
}
}//package
Section 139
//teethremove (teethremove)
package {
import flash.media.*;
public dynamic class teethremove extends Sound {
}
}//package
Section 140
//water (water)
package {
import flash.media.*;
public dynamic class water extends Sound {
}
}//package