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

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

Hannah Montana at the Dentist.swf

This is the info page for
Flash #229945

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


Text
Play

Play

Play

More
Games

More
Games

OFF

ON

CLEAR

CLEAR

NEXT

NEXT

DONE

DONE

Replay

Replay

ActionScript [AS3]

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

Library Items

Symbol 1 Sound {water}
Symbol 2 Sound {teethremove}
Symbol 3 Sound {spray}
Symbol 4 Sound {run}
Symbol 5 Sound {finish}
Symbol 6 Sound {effect}
Symbol 7 Sound {drill}
Symbol 8 Sound {clicksnd}
Symbol 9 Sound {btns}
Symbol 10 Sound {btn3}
Symbol 11 Sound {btn}
Symbol 12 Sound {bg}
Symbol 13 GraphicUsed by:Timeline
Symbol 14 GraphicUsed by:18
Symbol 15 GraphicUsed by:18
Symbol 16 GraphicUsed by:18
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:14 15 16 17Used by:Timeline
Symbol 19 GraphicUsed by:20 24
Symbol 20 MovieClipUses:19Used by:Timeline
Symbol 21 GraphicUsed by:Timeline
Symbol 22 SoundUsed by:Timeline
Symbol 23 GraphicUsed by:25
Symbol 24 MovieClipUses:19Used by:25
Symbol 25 MovieClipUses:23 24Used by:30
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:30
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:28Used by:30
Symbol 30 MovieClip {hannahmontanaatthedentist_fla.games_graph31_3}Uses:25 27 29Used by:Timeline
Symbol 31 GraphicUsed by:32 202 212 216 265 679 681 686 691 696
Symbol 32 ButtonUses:31Used by:134
Symbol 33 GraphicUsed by:34 35
Symbol 34 MovieClipUses:33Used by:36
Symbol 35 MovieClipUses:33Used by:36
Symbol 36 MovieClipUses:34 35Used by:37
Symbol 37 MovieClipUses:36Used by:38
Symbol 38 MovieClipUses:37Used by:39
Symbol 39 MovieClipUses:38Used by:134
Symbol 40 GraphicUsed by:134
Symbol 41 GraphicUsed by:45
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:45
Symbol 44 GraphicUsed by:45 229 264
Symbol 45 MovieClipUses:41 43 44Used by:134
Symbol 46 GraphicUsed by:50 232 264
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:47Used by:50
Symbol 49 GraphicUsed by:50 232 264
Symbol 50 MovieClipUses:46 48 49Used by:134
Symbol 51 GraphicUsed by:55 235 264
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:55
Symbol 54 GraphicUsed by:55 235 264
Symbol 55 MovieClipUses:51 53 54Used by:134
Symbol 56 GraphicUsed by:60 238 264
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:60
Symbol 59 GraphicUsed by:60 238 264
Symbol 60 MovieClipUses:56 58 59Used by:134
Symbol 61 GraphicUsed by:65 241 264
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClipUses:62Used by:65
Symbol 64 GraphicUsed by:65 241 264
Symbol 65 MovieClipUses:61 63 64Used by:134
Symbol 66 GraphicUsed by:70 244 264
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:70
Symbol 69 GraphicUsed by:70 244 264
Symbol 70 MovieClipUses:66 68 69Used by:134
Symbol 71 GraphicUsed by:75 247 264
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:75
Symbol 74 GraphicUsed by:75 247 264
Symbol 75 MovieClipUses:71 73 74Used by:134
Symbol 76 GraphicUsed by:80 250 264
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:77Used by:80
Symbol 79 GraphicUsed by:80 250 264
Symbol 80 MovieClipUses:76 78 79Used by:134
Symbol 81 GraphicUsed by:85 253 264
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:85
Symbol 84 GraphicUsed by:85 253 264
Symbol 85 MovieClipUses:81 83 84Used by:134
Symbol 86 GraphicUsed by:134
Symbol 87 GraphicUsed by:134
Symbol 88 GraphicUsed by:134
Symbol 89 GraphicUsed by:134
Symbol 90 GraphicUsed by:134
Symbol 91 GraphicUsed by:134
Symbol 92 GraphicUsed by:134
Symbol 93 GraphicUsed by:134
Symbol 94 GraphicUsed by:134
Symbol 95 GraphicUsed by:134
Symbol 96 GraphicUsed by:134
Symbol 97 GraphicUsed by:134
Symbol 98 GraphicUsed by:134
Symbol 99 GraphicUsed by:134
Symbol 100 GraphicUsed by:134
Symbol 101 GraphicUsed by:134
Symbol 102 GraphicUsed by:134
Symbol 103 GraphicUsed by:134
Symbol 104 GraphicUsed by:134
Symbol 105 GraphicUsed by:134
Symbol 106 GraphicUsed by:134
Symbol 107 GraphicUsed by:134
Symbol 108 GraphicUsed by:134
Symbol 109 GraphicUsed by:134
Symbol 110 GraphicUsed by:134
Symbol 111 GraphicUsed by:134
Symbol 112 GraphicUsed by:134
Symbol 113 GraphicUsed by:134
Symbol 114 GraphicUsed by:134
Symbol 115 GraphicUsed by:134
Symbol 116 GraphicUsed by:134
Symbol 117 GraphicUsed by:134
Symbol 118 GraphicUsed by:134
Symbol 119 GraphicUsed by:134
Symbol 120 GraphicUsed by:134
Symbol 121 GraphicUsed by:134
Symbol 122 GraphicUsed by:134
Symbol 123 GraphicUsed by:134
Symbol 124 GraphicUsed by:134
Symbol 125 GraphicUsed by:134 263 264
Symbol 126 GraphicUsed by:134 263 264
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:127Used by:134
Symbol 129 GraphicUsed by:133
Symbol 130 FontUsed by:131
Symbol 131 TextUses:130Used by:133
Symbol 132 GraphicUsed by:133
Symbol 133 ButtonUses:129 131 132Used by:134
Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8}Uses:32 39 40 45 50 55 60 65 70 75 80 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 128 133Used by:Timeline
Symbol 135 GraphicUsed by:202
Symbol 136 GraphicUsed by:140
Symbol 137 GraphicUsed by:140
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:140
Symbol 140 MovieClipUses:136 137 139Used by:202  Timeline
Symbol 141 GraphicUsed by:202
Symbol 142 GraphicUsed by:145
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:143Used by:145
Symbol 145 MovieClipUses:142 144Used by:202  Timeline
Symbol 146 GraphicUsed by:150
Symbol 147 GraphicUsed by:148
Symbol 148 MovieClipUses:147Used by:149
Symbol 149 MovieClipUses:148Used by:150
Symbol 150 MovieClipUses:146 149Used by:202  Timeline
Symbol 151 GraphicUsed by:202  Timeline
Symbol 152 GraphicUsed by:155
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:155
Symbol 155 MovieClipUses:152 154Used by:202  Timeline
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:156Used by:202  Timeline
Symbol 158 GraphicUsed by:202  Timeline
Symbol 159 GraphicUsed by:163
Symbol 160 GraphicUsed by:161
Symbol 161 MovieClipUses:160Used by:163
Symbol 162 GraphicUsed by:163
Symbol 163 MovieClipUses:159 161 162Used by:202  Timeline
Symbol 164 GraphicUsed by:167
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:165Used by:167
Symbol 167 MovieClipUses:164 166Used by:168
Symbol 168 MovieClipUses:167Used by:202  Timeline
Symbol 169 GraphicUsed by:202
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:172
Symbol 172 MovieClipUses:171Used by:173
Symbol 173 MovieClipUses:172Used by:202
Symbol 174 BitmapUsed by:175
Symbol 175 GraphicUses:174Used by:199
Symbol 176 GraphicUsed by:199
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClipUses:177Used by:199 372 373 374 375 377 378 380 381 679
Symbol 179 GraphicUsed by:199 383
Symbol 180 GraphicUsed by:199 384 387
Symbol 181 GraphicUsed by:199 386
Symbol 182 GraphicUsed by:199 389
Symbol 183 GraphicUsed by:199 390
Symbol 184 GraphicUsed by:199 391
Symbol 185 GraphicUsed by:199 392
Symbol 186 GraphicUsed by:199 394
Symbol 187 GraphicUsed by:199 395
Symbol 188 GraphicUsed by:199 396
Symbol 189 GraphicUsed by:199 398
Symbol 190 GraphicUsed by:199 400
Symbol 191 GraphicUsed by:199 401
Symbol 192 GraphicUsed by:199 403
Symbol 193 GraphicUsed by:199 405 672 679
Symbol 194 GraphicUsed by:199 407
Symbol 195 GraphicUsed by:199 409
Symbol 196 GraphicUsed by:199 411
Symbol 197 BitmapUsed by:198 270 271
Symbol 198 GraphicUses:197Used by:199
Symbol 199 MovieClipUses:175 176 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 198Used by:202
Symbol 200 BitmapUsed by:201
Symbol 201 GraphicUses:200Used by:202
Symbol 202 MovieClipUses:31 135 140 141 145 150 151 155 157 158 163 168 169 173 199 201Used by:Timeline
Symbol 203 GraphicUsed by:212 216 680 681 685 686 690 691 695 696
Symbol 204 FontUsed by:205 206 213 214 682 683 687 688 692 693
Symbol 205 TextUses:204Used by:207
Symbol 206 TextUses:204Used by:207
Symbol 207 MovieClipUses:205 206Used by:212 681 686 691 696
Symbol 208 GraphicUsed by:211
Symbol 209 GraphicUsed by:210 308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 679
Symbol 210 MovieClipUses:209Used by:211
Symbol 211 MovieClipUses:208 210Used by:212 216 680 681 685 686 690 691 695 696
Symbol 212 ButtonUses:203 207 211 31Used by:Timeline
Symbol 213 TextUses:204Used by:215
Symbol 214 TextUses:204Used by:215
Symbol 215 MovieClipUses:213 214Used by:216 680 681
Symbol 216 ButtonUses:203 215 211 31Used by:Timeline
Symbol 217 GraphicUsed by:220 223
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClipUses:218Used by:220 223
Symbol 220 MovieClipUses:217 219Used by:224
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:221Used by:224
Symbol 223 MovieClipUses:217 219Used by:224
Symbol 224 MovieClip {hannahmontanaatthedentist_fla.sudiconnn2_63}Uses:220 222 223Used by:Timeline
Symbol 225 GraphicUsed by:264
Symbol 226 GraphicUsed by:229 264
Symbol 227 GraphicUsed by:228 264
Symbol 228 MovieClipUses:227Used by:229
Symbol 229 MovieClipUses:226 228 44Used by:263
Symbol 230 GraphicUsed by:231 264
Symbol 231 MovieClipUses:230Used by:232
Symbol 232 MovieClipUses:46 231 49Used by:263
Symbol 233 GraphicUsed by:234 264
Symbol 234 MovieClipUses:233Used by:235
Symbol 235 MovieClipUses:51 234 54Used by:263
Symbol 236 GraphicUsed by:237 264
Symbol 237 MovieClipUses:236Used by:238
Symbol 238 MovieClipUses:56 237 59Used by:263
Symbol 239 GraphicUsed by:240 264
Symbol 240 MovieClipUses:239Used by:241
Symbol 241 MovieClipUses:61 240 64Used by:263
Symbol 242 GraphicUsed by:243 264
Symbol 243 MovieClipUses:242Used by:244
Symbol 244 MovieClipUses:66 243 69Used by:263
Symbol 245 GraphicUsed by:246 264
Symbol 246 MovieClipUses:245Used by:247
Symbol 247 MovieClipUses:71 246 74Used by:263
Symbol 248 GraphicUsed by:249 264
Symbol 249 MovieClipUses:248Used by:250
Symbol 250 MovieClipUses:76 249 79Used by:263
Symbol 251 GraphicUsed by:252 264
Symbol 252 MovieClipUses:251Used by:253
Symbol 253 MovieClipUses:81 252 84Used by:263
Symbol 254 GraphicUsed by:255 264
Symbol 255 MovieClipUses:254Used by:263
Symbol 256 GraphicUsed by:257 258 264
Symbol 257 MovieClipUses:256Used by:259
Symbol 258 MovieClipUses:256Used by:259
Symbol 259 MovieClipUses:257 258Used by:260
Symbol 260 MovieClipUses:259Used by:261
Symbol 261 MovieClipUses:260Used by:262
Symbol 262 MovieClipUses:261Used by:263
Symbol 263 MovieClip {hannahmontanaatthedentist_fla.preloader68_69}Uses:125 229 232 235 238 241 244 247 250 253 126 255 262Used by:264
Symbol 264 ButtonUses:225 263 125 226 227 44 46 230 49 51 233 54 56 236 59 61 239 64 66 242 69 71 245 74 76 248 79 81 251 84 126 254 256Used by:Timeline
Symbol 265 MovieClipUses:31Used by:Timeline
Symbol 266 GraphicUsed by:Timeline
Symbol 267 GraphicUsed by:Timeline
Symbol 268 GraphicUsed by:Timeline
Symbol 269 GraphicUsed by:Timeline
Symbol 270 GraphicUses:197Used by:272
Symbol 271 GraphicUses:197Used by:272
Symbol 272 MovieClipUses:270 271Used by:446
Symbol 273 GraphicUsed by:277 346 445 469 470 471 472 473 474 475 476 477 478 479 480 563 569 570 601 605
Symbol 274 ShapeTweeningUsed by:277
Symbol 275 ShapeTweeningUsed by:277
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClip {hannahmontanaatthedentist_fla.BG_136_98}Uses:273 274 275 276Used by:446
Symbol 278 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 279 GraphicUsed by:308
Symbol 280 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 281 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 282 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 283 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 284 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 285 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 286 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 287 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 288 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 289 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 290 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 291 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 292 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 293 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 294 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 295 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 296 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 297 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 298 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 299 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 300 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 301 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 302 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 303 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 304 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 305 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 306 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 307 GraphicUsed by:308 311 314 317 320 324 328 331 334 337 341 345 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 583
Symbol 308 MovieClip {hannahmontanaatthedentist_fla.BG_159_100}Uses:209 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 473 605
Symbol 309 GraphicUsed by:311
Symbol 310 GraphicUsed by:311
Symbol 311 MovieClip {hannahmontanaatthedentist_fla.BG_160_101}Uses:309 209 278 310 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 471 605
Symbol 312 GraphicUsed by:314
Symbol 313 GraphicUsed by:314
Symbol 314 MovieClip {hannahmontanaatthedentist_fla.BG_161_102}Uses:312 209 278 313 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 470 605
Symbol 315 GraphicUsed by:317
Symbol 316 GraphicUsed by:317
Symbol 317 MovieClip {hannahmontanaatthedentist_fla.BG_162_103}Uses:315 209 278 316 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 475 605
Symbol 318 GraphicUsed by:320
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClip {hannahmontanaatthedentist_fla.BG_163_104}Uses:318 209 278 319 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 474 605
Symbol 321 GraphicUsed by:324
Symbol 322 GraphicUsed by:324
Symbol 323 GraphicUsed by:324
Symbol 324 MovieClip {hannahmontanaatthedentist_fla.BG_164_105}Uses:321 209 322 278 323 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 472 605
Symbol 325 GraphicUsed by:328
Symbol 326 GraphicUsed by:328
Symbol 327 GraphicUsed by:328
Symbol 328 MovieClip {hannahmontanaatthedentist_fla.BG_165_106}Uses:325 209 326 278 327 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 477 605
Symbol 329 GraphicUsed by:331
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClip {hannahmontanaatthedentist_fla.BG_166_107}Uses:329 209 278 330 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 476 605
Symbol 332 GraphicUsed by:334
Symbol 333 GraphicUsed by:334
Symbol 334 MovieClip {hannahmontanaatthedentist_fla.BG_167_108}Uses:332 209 278 333 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 478 605
Symbol 335 GraphicUsed by:337
Symbol 336 GraphicUsed by:337
Symbol 337 MovieClip {hannahmontanaatthedentist_fla.BG_168_109}Uses:335 209 278 336 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 469 605
Symbol 338 GraphicUsed by:341
Symbol 339 GraphicUsed by:341
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClip {hannahmontanaatthedentist_fla.BG_169_110}Uses:338 209 339 278 340 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 479 605
Symbol 342 GraphicUsed by:345
Symbol 343 GraphicUsed by:345
Symbol 344 GraphicUsed by:345
Symbol 345 MovieClip {hannahmontanaatthedentist_fla.BG_170_111}Uses:342 209 343 278 344 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:346 480 605
Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}Uses:308 273 311 314 317 320 324 328 331 334 337 341 345Used by:446
Symbol 347 GraphicUsed by:349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
Symbol 348 GraphicUsed by:349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
Symbol 349 MovieClip {hannahmontanaatthedentist_fla.BG_142_112}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 350 MovieClip {hannahmontanaatthedentist_fla.BG_143_113}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 351 MovieClip {hannahmontanaatthedentist_fla.BG_144_114}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 352 MovieClip {hannahmontanaatthedentist_fla.BG_145_115}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 353 MovieClip {hannahmontanaatthedentist_fla.BG_141_116}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 354 MovieClip {hannahmontanaatthedentist_fla.BG_140_117}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 355 MovieClip {hannahmontanaatthedentist_fla.BG_139_118}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 356 MovieClip {hannahmontanaatthedentist_fla.BG_138_119}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 357 MovieClip {hannahmontanaatthedentist_fla.BG_146_120}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 358 MovieClip {hannahmontanaatthedentist_fla.BG_137_121}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 359 MovieClip {hannahmontanaatthedentist_fla.BG_153_122}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 360 MovieClip {hannahmontanaatthedentist_fla.BG_155_123}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 361 MovieClip {hannahmontanaatthedentist_fla.BG_156_124}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 362 MovieClip {hannahmontanaatthedentist_fla.BG_158_125}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 363 MovieClip {hannahmontanaatthedentist_fla.BG_154_126}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 364 MovieClip {hannahmontanaatthedentist_fla.BG_157_127}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 365 MovieClip {hannahmontanaatthedentist_fla.BG_152_128}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 366 MovieClip {hannahmontanaatthedentist_fla.BG_150_129}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 367 MovieClip {hannahmontanaatthedentist_fla.BG_149_130}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 368 MovieClip {hannahmontanaatthedentist_fla.BG_147_131}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 369 MovieClip {hannahmontanaatthedentist_fla.BG_151_132}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 370 MovieClip {hannahmontanaatthedentist_fla.BG_148_133}Uses:209 347 278 348 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307Used by:446
Symbol 371 GraphicUsed by:372 373 374 375 377 378 380 381
Symbol 372 MovieClip {hannahmontanaatthedentist_fla.BG_104_134}Uses:178 371Used by:446
Symbol 373 MovieClip {hannahmontanaatthedentist_fla.BG_116_135}Uses:178 371Used by:446
Symbol 374 MovieClip {hannahmontanaatthedentist_fla.BG_171_136}Uses:178 371Used by:446
Symbol 375 MovieClip {hannahmontanaatthedentist_fla.BG_118_137}Uses:178 371Used by:446
Symbol 376 GraphicUsed by:377 378 381
Symbol 377 MovieClip {hannahmontanaatthedentist_fla.BG_98_138}Uses:178 376 371Used by:446
Symbol 378 MovieClip {hannahmontanaatthedentist_fla.BG_110_139}Uses:178 376 371Used by:446
Symbol 379 GraphicUsed by:380 679
Symbol 380 MovieClip {hannahmontanaatthedentist_fla.BG_97_140}Uses:178 379 371Used by:446
Symbol 381 MovieClip {hannahmontanaatthedentist_fla.BG_112_141}Uses:178 376 371Used by:446
Symbol 382 GraphicUsed by:383
Symbol 383 MovieClip {hannahmontanaatthedentist_fla.BG_95_142}Uses:179 382Used by:446
Symbol 384 MovieClip {hannahmontanaatthedentist_fla.BG_107_143}Uses:180Used by:446
Symbol 385 GraphicUsed by:386
Symbol 386 MovieClip {hannahmontanaatthedentist_fla.BG_113_144}Uses:181 385Used by:446
Symbol 387 MovieClip {hannahmontanaatthedentist_fla.BG_106_145}Uses:180Used by:446
Symbol 388 GraphicUsed by:389
Symbol 389 MovieClip {hannahmontanaatthedentist_fla.BG_109_146}Uses:182 388Used by:446
Symbol 390 MovieClip {hannahmontanaatthedentist_fla.BG_121_147}Uses:183Used by:446
Symbol 391 MovieClip {hannahmontanaatthedentist_fla.BG_101_148}Uses:184Used by:446
Symbol 392 MovieClip {hannahmontanaatthedentist_fla.BG_119_149}Uses:185Used by:446
Symbol 393 GraphicUsed by:394
Symbol 394 MovieClip {hannahmontanaatthedentist_fla.BG_125_150}Uses:186 393Used by:446
Symbol 395 MovieClip {hannahmontanaatthedentist_fla.BG_94_151}Uses:187Used by:446
Symbol 396 MovieClip {hannahmontanaatthedentist_fla.BG_103_152}Uses:188Used by:446
Symbol 397 GraphicUsed by:398
Symbol 398 MovieClip {hannahmontanaatthedentist_fla.BG_115_153}Uses:189 397Used by:446
Symbol 399 GraphicUsed by:400
Symbol 400 MovieClip {hannahmontanaatthedentist_fla.BG_124_154}Uses:190 399Used by:446
Symbol 401 MovieClip {hannahmontanaatthedentist_fla.BG_84_155}Uses:191Used by:446
Symbol 402 GraphicUsed by:403
Symbol 403 MovieClip {hannahmontanaatthedentist_fla.BG_204_156}Uses:192 402Used by:446
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClip {hannahmontanaatthedentist_fla.BG_203_157}Uses:193 404Used by:446
Symbol 406 GraphicUsed by:407
Symbol 407 MovieClip {hannahmontanaatthedentist_fla.BG_205_158}Uses:194 406Used by:446
Symbol 408 GraphicUsed by:409
Symbol 409 MovieClip {hannahmontanaatthedentist_fla.BG_206_159}Uses:195 408Used by:446
Symbol 410 GraphicUsed by:411
Symbol 411 MovieClip {hannahmontanaatthedentist_fla.BG_207_160}Uses:196 410Used by:446
Symbol 412 GraphicUsed by:445
Symbol 413 GraphicUsed by:445
Symbol 414 GraphicUsed by:415
Symbol 415 MovieClipUses:414Used by:445 542 601
Symbol 416 GraphicUsed by:445 601
Symbol 417 GraphicUsed by:418
Symbol 418 MovieClipUses:417Used by:445 601
Symbol 419 GraphicUsed by:445
Symbol 420 GraphicUsed by:445
Symbol 421 GraphicUsed by:445
Symbol 422 GraphicUsed by:445
Symbol 423 GraphicUsed by:445
Symbol 424 GraphicUsed by:445
Symbol 425 GraphicUsed by:445
Symbol 426 GraphicUsed by:445
Symbol 427 GraphicUsed by:445
Symbol 428 GraphicUsed by:445
Symbol 429 GraphicUsed by:433
Symbol 430 GraphicUsed by:431
Symbol 431 MovieClipUses:430Used by:432
Symbol 432 MovieClipUses:431Used by:433
Symbol 433 MovieClipUses:429 432Used by:445 563 601
Symbol 434 GraphicUsed by:445
Symbol 435 GraphicUsed by:445
Symbol 436 GraphicUsed by:445
Symbol 437 GraphicUsed by:438
Symbol 438 MovieClipUses:437Used by:439
Symbol 439 MovieClipUses:438Used by:443 445 569 601
Symbol 440 GraphicUsed by:443
Symbol 441 GraphicUsed by:442
Symbol 442 MovieClipUses:441Used by:443
Symbol 443 MovieClipUses:440 442 439Used by:445 570 601
Symbol 444 GraphicUsed by:445
Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}Uses:273 412 413 415 416 418 419 420 421 422 423 424 425 426 427 428 433 434 435 436 439 443 444Used by:446
Symbol 446 MovieClipUses:272 277 346 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 372 373 374 375 377 378 380 381 383 384 386 387 389 390 391 392 394 395 396 398 400 401 403 405 407 409 411 445Used by:Timeline
Symbol 447 GraphicUsed by:448 455
Symbol 448 MovieClipUses:447Used by:454
Symbol 449 GraphicUsed by:453
Symbol 450 GraphicUsed by:451
Symbol 451 MovieClipUses:450Used by:453
Symbol 452 GraphicUsed by:453
Symbol 453 MovieClipUses:449 451 452Used by:454  Timeline
Symbol 454 MovieClipUses:448 453Used by:Timeline
Symbol 455 MovieClipUses:447Used by:Timeline
Symbol 456 GraphicUsed by:465
Symbol 457 GraphicUsed by:465
Symbol 458 FontUsed by:459 463
Symbol 459 TextUses:458Used by:465
Symbol 460 GraphicUsed by:465
Symbol 461 GraphicUsed by:462 576
Symbol 462 MovieClip {hannahmontanaatthedentist_fla.onmcc_177}Uses:461Used by:465
Symbol 463 TextUses:458Used by:465
Symbol 464 GraphicUsed by:465
Symbol 465 MovieClip {hannahmontanaatthedentist_fla.BG_18_176}Uses:456 457 459 460 462 463 464Used by:Timeline
Symbol 466 GraphicUsed by:481
Symbol 467 GraphicUsed by:468
Symbol 468 MovieClipUses:467Used by:481 577 665
Symbol 469 MovieClip {hannahmontanaatthedentist_fla.tee_1_180}Uses:337 273Used by:481
Symbol 470 MovieClip {hannahmontanaatthedentist_fla.tee_12_181}Uses:314 273Used by:481
Symbol 471 MovieClip {hannahmontanaatthedentist_fla.tee_3_182}Uses:311 273Used by:481
Symbol 472 MovieClip {hannahmontanaatthedentist_fla.tee_4_183}Uses:324 273Used by:481
Symbol 473 MovieClip {hannahmontanaatthedentist_fla.tee_5_184}Uses:308 273Used by:481
Symbol 474 MovieClip {hannahmontanaatthedentist_fla.tee_6_185}Uses:320 273Used by:481
Symbol 475 MovieClip {hannahmontanaatthedentist_fla.tee_7_186}Uses:317 273Used by:481
Symbol 476 MovieClip {hannahmontanaatthedentist_fla.tee_8_187}Uses:331 273Used by:481
Symbol 477 MovieClip {hannahmontanaatthedentist_fla.tee_9_188}Uses:328 273Used by:481
Symbol 478 MovieClip {hannahmontanaatthedentist_fla.tee_10_189}Uses:334 273Used by:481
Symbol 479 MovieClip {hannahmontanaatthedentist_fla.tee_11_190}Uses:341 273Used by:481
Symbol 480 MovieClip {hannahmontanaatthedentist_fla.tee_121_191}Uses:345 273Used by:481
Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178}Uses:466 468 469 470 471 472 473 474 475 476 477 478 479 480Used by:Timeline
Symbol 482 GraphicUsed by:487
Symbol 483 GraphicUsed by:484
Symbol 484 MovieClipUses:483Used by:487 492 495 499 504 512 515 533 583 604 605
Symbol 485 GraphicUsed by:486
Symbol 486 MovieClipUses:485Used by:487 679
Symbol 487 MovieClip {hannahmontanaatthedentist_fla.cleanicon5_192}Uses:482 484 486Used by:Timeline
Symbol 488 GraphicUsed by:492
Symbol 489 GraphicUsed by:491
Symbol 490 GraphicUsed by:491
Symbol 491 MovieClipUses:489 490Used by:492 679
Symbol 492 MovieClip {hannahmontanaatthedentist_fla.cleanicon6_195}Uses:488 484 491Used by:Timeline
Symbol 493 GraphicUsed by:495
Symbol 494 GraphicUsed by:495 669
Symbol 495 MovieClip {hannahmontanaatthedentist_fla.cleanicon11_197}Uses:493 484 494Used by:Timeline
Symbol 496 GraphicUsed by:499
Symbol 497 GraphicUsed by:499 678
Symbol 498 GraphicUsed by:499 678
Symbol 499 MovieClip {hannahmontanaatthedentist_fla.cleanicon18_198}Uses:496 484 497 498Used by:Timeline
Symbol 500 GraphicUsed by:504
Symbol 501 GraphicUsed by:504
Symbol 502 GraphicUsed by:503
Symbol 503 MovieClipUses:502Used by:504 676
Symbol 504 MovieClip {hannahmontanaatthedentist_fla.app_199}Uses:500 484 501 503Used by:Timeline
Symbol 505 GraphicUsed by:512
Symbol 506 GraphicUsed by:507
Symbol 507 MovieClipUses:506Used by:511
Symbol 508 GraphicUsed by:509
Symbol 509 MovieClipUses:508Used by:511
Symbol 510 GraphicUsed by:511
Symbol 511 MovieClipUses:507 509 510Used by:512 679
Symbol 512 MovieClip {hannahmontanaatthedentist_fla.item4_mc_201}Uses:505 484 511Used by:Timeline
Symbol 513 GraphicUsed by:515
Symbol 514 GraphicUsed by:515
Symbol 515 MovieClipUses:513 484 514Used by:Timeline
Symbol 516 GraphicUsed by:533
Symbol 517 GraphicUsed by:533
Symbol 518 GraphicUsed by:533
Symbol 519 GraphicUsed by:533
Symbol 520 GraphicUsed by:533
Symbol 521 GraphicUsed by:533
Symbol 522 GraphicUsed by:533
Symbol 523 GraphicUsed by:533
Symbol 524 GraphicUsed by:533
Symbol 525 GraphicUsed by:533
Symbol 526 GraphicUsed by:533
Symbol 527 GraphicUsed by:533
Symbol 528 GraphicUsed by:533
Symbol 529 GraphicUsed by:533
Symbol 530 GraphicUsed by:533
Symbol 531 GraphicUsed by:533
Symbol 532 GraphicUsed by:533
Symbol 533 MovieClip {hannahmontanaatthedentist_fla.BG_135_206}Uses:516 517 484 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532Used by:Timeline
Symbol 534 GraphicUsed by:577
Symbol 535 GraphicUsed by:536
Symbol 536 MovieClip {hannahmontanaatthedentist_fla.st_1ee_208}Uses:535Used by:577
Symbol 537 GraphicUsed by:538
Symbol 538 MovieClip {hannahmontanaatthedentist_fla.st_2_209}Uses:537Used by:577
Symbol 539 GraphicUsed by:540
Symbol 540 MovieClip {hannahmontanaatthedentist_fla.st_3_210}Uses:539Used by:577
Symbol 541 GraphicUsed by:542
Symbol 542 MovieClip {hannahmontanaatthedentist_fla.st_4_211}Uses:415 541Used by:577
Symbol 543 GraphicUsed by:544
Symbol 544 MovieClip {hannahmontanaatthedentist_fla.st_5_212}Uses:543Used by:577
Symbol 545 GraphicUsed by:546
Symbol 546 MovieClip {hannahmontanaatthedentist_fla.st_6_213}Uses:545Used by:577
Symbol 547 GraphicUsed by:548
Symbol 548 MovieClip {hannahmontanaatthedentist_fla.st_7_214}Uses:547Used by:577
Symbol 549 GraphicUsed by:550
Symbol 550 MovieClip {hannahmontanaatthedentist_fla.st_8_215}Uses:549Used by:577
Symbol 551 GraphicUsed by:552
Symbol 552 MovieClip {hannahmontanaatthedentist_fla.st_9_216}Uses:551Used by:577
Symbol 553 GraphicUsed by:554
Symbol 554 MovieClip {hannahmontanaatthedentist_fla.st_10_217}Uses:553Used by:577
Symbol 555 GraphicUsed by:556
Symbol 556 MovieClip {hannahmontanaatthedentist_fla.st_11_218}Uses:555Used by:577
Symbol 557 GraphicUsed by:558
Symbol 558 MovieClip {hannahmontanaatthedentist_fla.st_12_219}Uses:557Used by:577
Symbol 559 GraphicUsed by:560
Symbol 560 MovieClip {hannahmontanaatthedentist_fla.st_13_220}Uses:559Used by:577
Symbol 561 GraphicUsed by:562
Symbol 562 MovieClip {hannahmontanaatthedentist_fla.st_14_221}Uses:561Used by:577
Symbol 563 MovieClip {hannahmontanaatthedentist_fla.st_15_222}Uses:433 273Used by:577
Symbol 564 GraphicUsed by:565
Symbol 565 MovieClip {hannahmontanaatthedentist_fla.st_16_223}Uses:564Used by:577
Symbol 566 GraphicUsed by:567
Symbol 567 MovieClip {hannahmontanaatthedentist_fla.st_17_224}Uses:566Used by:577
Symbol 568 GraphicUsed by:569
Symbol 569 MovieClip {hannahmontanaatthedentist_fla.st_18_225}Uses:568 439 273Used by:577
Symbol 570 MovieClip {hannahmontanaatthedentist_fla.st_19_226}Uses:443 273Used by:577
Symbol 571 GraphicUsed by:572
Symbol 572 MovieClip {hannahmontanaatthedentist_fla.st_20_227}Uses:571Used by:577
Symbol 573 FontUsed by:574 575
Symbol 574 TextUses:573Used by:576
Symbol 575 TextUses:573Used by:576 583 601
Symbol 576 ButtonUses:574 575 461Used by:577 665
Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207}Uses:534 468 536 538 540 542 544 546 548 550 552 554 556 558 560 562 563 565 567 569 570 572 576Used by:Timeline
Symbol 578 GraphicUsed by:579
Symbol 579 MovieClipUses:578Used by:583 604
Symbol 580 GraphicUsed by:583
Symbol 581 GraphicUsed by:583
Symbol 582 GraphicUsed by:583
Symbol 583 MovieClip {hannahmontanaatthedentist_fla.clolormcc_229}Uses:579 580 484 581 278 582 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 575Used by:Timeline
Symbol 584 GraphicUsed by:604
Symbol 585 GraphicUsed by:601
Symbol 586 GraphicUsed by:601
Symbol 587 GraphicUsed by:601
Symbol 588 GraphicUsed by:601
Symbol 589 GraphicUsed by:601
Symbol 590 GraphicUsed by:601
Symbol 591 GraphicUsed by:601
Symbol 592 GraphicUsed by:601
Symbol 593 GraphicUsed by:601
Symbol 594 GraphicUsed by:601
Symbol 595 GraphicUsed by:601
Symbol 596 GraphicUsed by:601
Symbol 597 GraphicUsed by:601
Symbol 598 GraphicUsed by:601
Symbol 599 GraphicUsed by:601
Symbol 600 GraphicUsed by:601
Symbol 601 MovieClip {hannahmontanaatthedentist_fla.dfgdgdfg_232}Uses:273 585 586 415 416 418 587 588 589 590 591 592 575 593 594 595 596 433 597 598 599 439 443 600Used by:604
Symbol 602 GraphicUsed by:603
Symbol 603 MovieClipUses:602Used by:604
Symbol 604 MovieClip {hannahmontanaatthedentist_fla.stickclip_231}Uses:579 584 601 603 484Used by:Timeline
Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234}Uses:308 273 484 311 314 317 320 324 328 331 334 337 341 345Used by:Timeline
Symbol 606 GraphicUsed by:665
Symbol 607 GraphicUsed by:608
Symbol 608 MovieClipUses:607Used by:665
Symbol 609 GraphicUsed by:610
Symbol 610 MovieClipUses:609Used by:665
Symbol 611 GraphicUsed by:612
Symbol 612 MovieClipUses:611Used by:665
Symbol 613 GraphicUsed by:614
Symbol 614 MovieClipUses:613Used by:665
Symbol 615 GraphicUsed by:616
Symbol 616 MovieClipUses:615Used by:665
Symbol 617 GraphicUsed by:618
Symbol 618 MovieClipUses:617Used by:665
Symbol 619 GraphicUsed by:620
Symbol 620 MovieClipUses:619Used by:665
Symbol 621 GraphicUsed by:622
Symbol 622 MovieClipUses:621Used by:665
Symbol 623 GraphicUsed by:624
Symbol 624 MovieClipUses:623Used by:665
Symbol 625 GraphicUsed by:626
Symbol 626 MovieClipUses:625Used by:665
Symbol 627 GraphicUsed by:628
Symbol 628 MovieClipUses:627Used by:665
Symbol 629 GraphicUsed by:630
Symbol 630 MovieClipUses:629Used by:665
Symbol 631 GraphicUsed by:632
Symbol 632 MovieClipUses:631Used by:665
Symbol 633 GraphicUsed by:634
Symbol 634 MovieClipUses:633Used by:665
Symbol 635 GraphicUsed by:636
Symbol 636 MovieClipUses:635Used by:665
Symbol 637 GraphicUsed by:638
Symbol 638 MovieClipUses:637Used by:665
Symbol 639 GraphicUsed by:640
Symbol 640 MovieClipUses:639Used by:665
Symbol 641 GraphicUsed by:642
Symbol 642 MovieClipUses:641Used by:665
Symbol 643 GraphicUsed by:644
Symbol 644 MovieClipUses:643Used by:665
Symbol 645 GraphicUsed by:646
Symbol 646 MovieClipUses:645Used by:665
Symbol 647 GraphicUsed by:648
Symbol 648 MovieClipUses:647Used by:665
Symbol 649 GraphicUsed by:650
Symbol 650 MovieClipUses:649Used by:665
Symbol 651 GraphicUsed by:652
Symbol 652 MovieClipUses:651Used by:665
Symbol 653 GraphicUsed by:654
Symbol 654 MovieClipUses:653Used by:665
Symbol 655 GraphicUsed by:656
Symbol 656 MovieClipUses:655Used by:665
Symbol 657 GraphicUsed by:658
Symbol 658 MovieClipUses:657Used by:665
Symbol 659 GraphicUsed by:660
Symbol 660 MovieClipUses:659Used by:665
Symbol 661 GraphicUsed by:662
Symbol 662 MovieClipUses:661Used by:665
Symbol 663 GraphicUsed by:664
Symbol 664 MovieClipUses:663Used by:665
Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235}Uses:606 468 608 610 612 614 616 618 620 622 624 626 628 630 632 634 636 638 640 642 644 646 648 650 652 654 656 658 660 662 664 576Used by:Timeline
Symbol 666 GraphicUsed by:667
Symbol 667 MovieClipUses:666Used by:679
Symbol 668 GraphicUsed by:679
Symbol 669 MovieClipUses:494Used by:679
Symbol 670 GraphicUsed by:679
Symbol 671 GraphicUsed by:679
Symbol 672 MovieClipUses:193Used by:679
Symbol 673 GraphicUsed by:679
Symbol 674 GraphicUsed by:676
Symbol 675 GraphicUsed by:676
Symbol 676 MovieClipUses:674 503 675Used by:679
Symbol 677 GraphicUsed by:679
Symbol 678 MovieClipUses:497 498Used by:679
Symbol 679 MovieClip {hannahmontanaatthedentist_fla.utyut_265}Uses:31 667 209 193 491 668 669 670 178 671 511 672 486 673 379 676 677 678Used by:Timeline
Symbol 680 MovieClip {hannahmontanaatthedentist_fla.Play_BG_11copy_272}Uses:203 215 211Used by:681
Symbol 681 ButtonUses:203 207 211 680 215 31Used by:Timeline
Symbol 682 TextUses:204Used by:684
Symbol 683 TextUses:204Used by:684
Symbol 684 MovieClipUses:682 683Used by:685 686
Symbol 685 MovieClip {hannahmontanaatthedentist_fla.Play_BG_11copy3_274}Uses:203 684 211Used by:686
Symbol 686 ButtonUses:203 207 211 685 684 31Used by:Timeline
Symbol 687 TextUses:204Used by:689
Symbol 688 TextUses:204Used by:689
Symbol 689 MovieClipUses:687 688Used by:690 691
Symbol 690 MovieClip {hannahmontanaatthedentist_fla.Play_BG_11copy4_277}Uses:203 689 211Used by:691
Symbol 691 ButtonUses:203 207 211 690 689 31Used by:Timeline
Symbol 692 TextUses:204Used by:694
Symbol 693 TextUses:204Used by:694
Symbol 694 MovieClipUses:692 693Used by:695 696
Symbol 695 MovieClip {hannahmontanaatthedentist_fla.Play_BG_11copy2_280}Uses:203 694 211Used by:696
Symbol 696 ButtonUses:203 207 211 695 694 31Used by:Timeline
Symbol 697 BitmapUsed by:698
Symbol 698 GraphicUses:697Used by:699 700
Symbol 699 MovieClipUses:698Used by:700
Symbol 700 ButtonUses:699 698Used by:Timeline

Instance Names

"barra_mc"Frame 1Symbol 18 MovieClip
"play_btn"Frame 80Symbol 212 Button
"moregames"Frame 80Symbol 216 Button
"snd_mc"Frame 80Symbol 224 MovieClip {hannahmontanaatthedentist_fla.sudiconnn2_63}
"logoMc"Frame 80Symbol 264 Button
"maskanim"Frame 80Symbol 265 MovieClip
"model_mc"Frame 81Symbol 446 MovieClip
"light_mc"Frame 81Symbol 465 MovieClip {hannahmontanaatthedentist_fla.BG_18_176}
"teeth_mc"Frame 81Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178}
"item5_mc"Frame 81Symbol 487 MovieClip {hannahmontanaatthedentist_fla.cleanicon5_192}
"item2_mc"Frame 81Symbol 492 MovieClip {hannahmontanaatthedentist_fla.cleanicon6_195}
"item3_mc"Frame 81Symbol 495 MovieClip {hannahmontanaatthedentist_fla.cleanicon11_197}
"item1_mc"Frame 81Symbol 499 MovieClip {hannahmontanaatthedentist_fla.cleanicon18_198}
"item6_mc"Frame 81Symbol 504 MovieClip {hannahmontanaatthedentist_fla.app_199}
"item4_mc"Frame 81Symbol 512 MovieClip {hannahmontanaatthedentist_fla.item4_mc_201}
"water01_mc"Frame 81Symbol 515 MovieClip
"water_mc"Frame 81Symbol 533 MovieClip {hannahmontanaatthedentist_fla.BG_135_206}
"sticker_options"Frame 81Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207}
"color_mc"Frame 81Symbol 583 MovieClip {hannahmontanaatthedentist_fla.clolormcc_229}
"tatoo_mc"Frame 81Symbol 604 MovieClip {hannahmontanaatthedentist_fla.stickclip_231}
"type_teeth"Frame 81Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234}
"color_options"Frame 81Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235}
"tutorial_mc"Frame 81Symbol 679 MovieClip {hannahmontanaatthedentist_fla.utyut_265}
"moregames"Frame 81Symbol 681 Button
"nextBut"Frame 81Symbol 686 Button
"doneBut"Frame 81Symbol 691 Button
"replayBut"Frame 82Symbol 696 Button
"moregames"Frame 82Symbol 681 Button
"thumb"Frame 82Symbol 700 Button
"linkbutton"Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8} Frame 1Symbol 32 Button
"anim"Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8} Frame 1Symbol 39 MovieClip
"anim"Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8} Frame 1Symbol 39 MovieClip
"anim"Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8} Frame 1Symbol 39 MovieClip
"anim"Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8} Frame 1Symbol 39 MovieClip
"anim"Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8} Frame 1Symbol 39 MovieClip
"anim"Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8} Frame 1Symbol 39 MovieClip
"anim"Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8} Frame 1Symbol 39 MovieClip
"anim"Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8} Frame 1Symbol 39 MovieClip
"playbut1"Symbol 134 MovieClip {hannahmontanaatthedentist_fla.games_graph25_8} Frame 65Symbol 133 Button
"snd1_mc"Symbol 224 MovieClip {hannahmontanaatthedentist_fla.sudiconnn2_63} Frame 1Symbol 222 MovieClip
"anim"Symbol 263 MovieClip {hannahmontanaatthedentist_fla.preloader68_69} Frame 1Symbol 262 MovieClip
"anim"Symbol 263 MovieClip {hannahmontanaatthedentist_fla.preloader68_69} Frame 1Symbol 262 MovieClip
"anim"Symbol 263 MovieClip {hannahmontanaatthedentist_fla.preloader68_69} Frame 1Symbol 262 MovieClip
"anim"Symbol 263 MovieClip {hannahmontanaatthedentist_fla.preloader68_69} Frame 1Symbol 262 MovieClip
"anim"Symbol 263 MovieClip {hannahmontanaatthedentist_fla.preloader68_69} Frame 1Symbol 262 MovieClip
"anim"Symbol 263 MovieClip {hannahmontanaatthedentist_fla.preloader68_69} Frame 1Symbol 262 MovieClip
"anim"Symbol 263 MovieClip {hannahmontanaatthedentist_fla.preloader68_69} Frame 1Symbol 262 MovieClip
"anim"Symbol 263 MovieClip {hannahmontanaatthedentist_fla.preloader68_69} Frame 1Symbol 262 MovieClip
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 1Symbol 308 MovieClip {hannahmontanaatthedentist_fla.BG_159_100}
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 2Symbol 311 MovieClip {hannahmontanaatthedentist_fla.BG_160_101}
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 3Symbol 314 MovieClip {hannahmontanaatthedentist_fla.BG_161_102}
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 5Symbol 320 MovieClip {hannahmontanaatthedentist_fla.BG_163_104}
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 6Symbol 324 MovieClip {hannahmontanaatthedentist_fla.BG_164_105}
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 7Symbol 328 MovieClip {hannahmontanaatthedentist_fla.BG_165_106}
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 8Symbol 331 MovieClip {hannahmontanaatthedentist_fla.BG_166_107}
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 9Symbol 334 MovieClip {hannahmontanaatthedentist_fla.BG_167_108}
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 10Symbol 337 MovieClip {hannahmontanaatthedentist_fla.BG_168_109}
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 13Symbol 341 MovieClip {hannahmontanaatthedentist_fla.BG_169_110}
"mc"Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99} Frame 14Symbol 345 MovieClip {hannahmontanaatthedentist_fla.BG_170_111}
"waterAnim"Symbol 446 MovieClip Frame 1Symbol 277 MovieClip {hannahmontanaatthedentist_fla.BG_136_98}
"d6"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d7"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d8"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d9"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d5"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d4"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d3"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d2"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d10"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d1"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d17"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d19"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d20"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d22"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d18"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d21"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d16"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d14"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d13"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d11"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d15"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"d12"Symbol 446 MovieClip Frame 1Symbol 346 MovieClip {hannahmontanaatthedentist_fla.BG_126_99}
"t6"Symbol 446 MovieClip Frame 1Symbol 349 MovieClip {hannahmontanaatthedentist_fla.BG_142_112}
"t7"Symbol 446 MovieClip Frame 1Symbol 350 MovieClip {hannahmontanaatthedentist_fla.BG_143_113}
"t8"Symbol 446 MovieClip Frame 1Symbol 351 MovieClip {hannahmontanaatthedentist_fla.BG_144_114}
"t9"Symbol 446 MovieClip Frame 1Symbol 352 MovieClip {hannahmontanaatthedentist_fla.BG_145_115}
"t5"Symbol 446 MovieClip Frame 1Symbol 353 MovieClip {hannahmontanaatthedentist_fla.BG_141_116}
"t4"Symbol 446 MovieClip Frame 1Symbol 354 MovieClip {hannahmontanaatthedentist_fla.BG_140_117}
"t3"Symbol 446 MovieClip Frame 1Symbol 355 MovieClip {hannahmontanaatthedentist_fla.BG_139_118}
"t2"Symbol 446 MovieClip Frame 1Symbol 356 MovieClip {hannahmontanaatthedentist_fla.BG_138_119}
"t10"Symbol 446 MovieClip Frame 1Symbol 357 MovieClip {hannahmontanaatthedentist_fla.BG_146_120}
"t1"Symbol 446 MovieClip Frame 1Symbol 358 MovieClip {hannahmontanaatthedentist_fla.BG_137_121}
"t17"Symbol 446 MovieClip Frame 1Symbol 359 MovieClip {hannahmontanaatthedentist_fla.BG_153_122}
"t19"Symbol 446 MovieClip Frame 1Symbol 360 MovieClip {hannahmontanaatthedentist_fla.BG_155_123}
"t20"Symbol 446 MovieClip Frame 1Symbol 361 MovieClip {hannahmontanaatthedentist_fla.BG_156_124}
"t22"Symbol 446 MovieClip Frame 1Symbol 362 MovieClip {hannahmontanaatthedentist_fla.BG_158_125}
"t18"Symbol 446 MovieClip Frame 1Symbol 363 MovieClip {hannahmontanaatthedentist_fla.BG_154_126}
"t21"Symbol 446 MovieClip Frame 1Symbol 364 MovieClip {hannahmontanaatthedentist_fla.BG_157_127}
"t16"Symbol 446 MovieClip Frame 1Symbol 365 MovieClip {hannahmontanaatthedentist_fla.BG_152_128}
"t14"Symbol 446 MovieClip Frame 1Symbol 366 MovieClip {hannahmontanaatthedentist_fla.BG_150_129}
"t13"Symbol 446 MovieClip Frame 1Symbol 367 MovieClip {hannahmontanaatthedentist_fla.BG_149_130}
"t11"Symbol 446 MovieClip Frame 1Symbol 368 MovieClip {hannahmontanaatthedentist_fla.BG_147_131}
"t15"Symbol 446 MovieClip Frame 1Symbol 369 MovieClip {hannahmontanaatthedentist_fla.BG_151_132}
"t12"Symbol 446 MovieClip Frame 1Symbol 370 MovieClip {hannahmontanaatthedentist_fla.BG_148_133}
"bl4"Symbol 446 MovieClip Frame 1Symbol 372 MovieClip {hannahmontanaatthedentist_fla.BG_104_134}
"bl3"Symbol 446 MovieClip Frame 1Symbol 373 MovieClip {hannahmontanaatthedentist_fla.BG_116_135}
"bl1"Symbol 446 MovieClip Frame 1Symbol 374 MovieClip {hannahmontanaatthedentist_fla.BG_171_136}
"bl2"Symbol 446 MovieClip Frame 1Symbol 375 MovieClip {hannahmontanaatthedentist_fla.BG_118_137}
"yy2"Symbol 446 MovieClip Frame 1Symbol 377 MovieClip {hannahmontanaatthedentist_fla.BG_98_138}
"yy4"Symbol 446 MovieClip Frame 1Symbol 378 MovieClip {hannahmontanaatthedentist_fla.BG_110_139}
"yy1"Symbol 446 MovieClip Frame 1Symbol 380 MovieClip {hannahmontanaatthedentist_fla.BG_97_140}
"yy3"Symbol 446 MovieClip Frame 1Symbol 381 MovieClip {hannahmontanaatthedentist_fla.BG_112_141}
"y2"Symbol 446 MovieClip Frame 1Symbol 383 MovieClip {hannahmontanaatthedentist_fla.BG_95_142}
"y3"Symbol 446 MovieClip Frame 1Symbol 384 MovieClip {hannahmontanaatthedentist_fla.BG_107_143}
"y6"Symbol 446 MovieClip Frame 1Symbol 386 MovieClip {hannahmontanaatthedentist_fla.BG_113_144}
"y1"Symbol 446 MovieClip Frame 1Symbol 387 MovieClip {hannahmontanaatthedentist_fla.BG_106_145}
"y5"Symbol 446 MovieClip Frame 1Symbol 389 MovieClip {hannahmontanaatthedentist_fla.BG_109_146}
"y4"Symbol 446 MovieClip Frame 1Symbol 390 MovieClip {hannahmontanaatthedentist_fla.BG_121_147}
"bl03"Symbol 446 MovieClip Frame 1Symbol 391 MovieClip {hannahmontanaatthedentist_fla.BG_101_148}
"bl06"Symbol 446 MovieClip Frame 1Symbol 392 MovieClip {hannahmontanaatthedentist_fla.BG_119_149}
"bl07"Symbol 446 MovieClip Frame 1Symbol 394 MovieClip {hannahmontanaatthedentist_fla.BG_125_150}
"bl02"Symbol 446 MovieClip Frame 1Symbol 395 MovieClip {hannahmontanaatthedentist_fla.BG_94_151}
"bl01"Symbol 446 MovieClip Frame 1Symbol 396 MovieClip {hannahmontanaatthedentist_fla.BG_103_152}
"bl05"Symbol 446 MovieClip Frame 1Symbol 398 MovieClip {hannahmontanaatthedentist_fla.BG_115_153}
"bl04"Symbol 446 MovieClip Frame 1Symbol 400 MovieClip {hannahmontanaatthedentist_fla.BG_124_154}
"b1"Symbol 446 MovieClip Frame 1Symbol 401 MovieClip {hannahmontanaatthedentist_fla.BG_84_155}
"b2"Symbol 446 MovieClip Frame 1Symbol 401 MovieClip {hannahmontanaatthedentist_fla.BG_84_155}
"b3"Symbol 446 MovieClip Frame 1Symbol 401 MovieClip {hannahmontanaatthedentist_fla.BG_84_155}
"b4"Symbol 446 MovieClip Frame 1Symbol 401 MovieClip {hannahmontanaatthedentist_fla.BG_84_155}
"b5"Symbol 446 MovieClip Frame 1Symbol 401 MovieClip {hannahmontanaatthedentist_fla.BG_84_155}
"r2"Symbol 446 MovieClip Frame 1Symbol 403 MovieClip {hannahmontanaatthedentist_fla.BG_204_156}
"r1"Symbol 446 MovieClip Frame 1Symbol 405 MovieClip {hannahmontanaatthedentist_fla.BG_203_157}
"r3"Symbol 446 MovieClip Frame 1Symbol 407 MovieClip {hannahmontanaatthedentist_fla.BG_205_158}
"r4"Symbol 446 MovieClip Frame 1Symbol 409 MovieClip {hannahmontanaatthedentist_fla.BG_206_159}
"r5"Symbol 446 MovieClip Frame 1Symbol 411 MovieClip {hannahmontanaatthedentist_fla.BG_207_160}
"tt5"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt4"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt3"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt2"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt1"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt6"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt7"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt8"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt9"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt10"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt16"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt15"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt14"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt12"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt11"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt17"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt18"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt19"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt20"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt22"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt21"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"tt13"Symbol 446 MovieClip Frame 1Symbol 445 MovieClip {hannahmontanaatthedentist_fla.stickermc_161}
"on_btn"Symbol 465 MovieClip {hannahmontanaatthedentist_fla.BG_18_176} Frame 1Symbol 462 MovieClip {hannahmontanaatthedentist_fla.onmcc_177}
"mc"Symbol 469 MovieClip {hannahmontanaatthedentist_fla.tee_1_180} Frame 1Symbol 337 MovieClip {hannahmontanaatthedentist_fla.BG_168_109}
"mc"Symbol 470 MovieClip {hannahmontanaatthedentist_fla.tee_12_181} Frame 1Symbol 314 MovieClip {hannahmontanaatthedentist_fla.BG_161_102}
"mc"Symbol 471 MovieClip {hannahmontanaatthedentist_fla.tee_3_182} Frame 1Symbol 311 MovieClip {hannahmontanaatthedentist_fla.BG_160_101}
"mc"Symbol 472 MovieClip {hannahmontanaatthedentist_fla.tee_4_183} Frame 1Symbol 324 MovieClip {hannahmontanaatthedentist_fla.BG_164_105}
"mc"Symbol 473 MovieClip {hannahmontanaatthedentist_fla.tee_5_184} Frame 1Symbol 308 MovieClip {hannahmontanaatthedentist_fla.BG_159_100}
"mc"Symbol 474 MovieClip {hannahmontanaatthedentist_fla.tee_6_185} Frame 1Symbol 320 MovieClip {hannahmontanaatthedentist_fla.BG_163_104}
"mc"Symbol 476 MovieClip {hannahmontanaatthedentist_fla.tee_8_187} Frame 1Symbol 331 MovieClip {hannahmontanaatthedentist_fla.BG_166_107}
"mc"Symbol 477 MovieClip {hannahmontanaatthedentist_fla.tee_9_188} Frame 1Symbol 328 MovieClip {hannahmontanaatthedentist_fla.BG_165_106}
"mc"Symbol 478 MovieClip {hannahmontanaatthedentist_fla.tee_10_189} Frame 1Symbol 334 MovieClip {hannahmontanaatthedentist_fla.BG_167_108}
"mc"Symbol 479 MovieClip {hannahmontanaatthedentist_fla.tee_11_190} Frame 1Symbol 341 MovieClip {hannahmontanaatthedentist_fla.BG_169_110}
"mc"Symbol 480 MovieClip {hannahmontanaatthedentist_fla.tee_121_191} Frame 1Symbol 345 MovieClip {hannahmontanaatthedentist_fla.BG_170_111}
"tee_10"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 469 MovieClip {hannahmontanaatthedentist_fla.tee_1_180}
"tee_3"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 470 MovieClip {hannahmontanaatthedentist_fla.tee_12_181}
"tee_2"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 471 MovieClip {hannahmontanaatthedentist_fla.tee_3_182}
"tee_6"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 472 MovieClip {hannahmontanaatthedentist_fla.tee_4_183}
"tee_1"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 473 MovieClip {hannahmontanaatthedentist_fla.tee_5_184}
"tee_5"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 474 MovieClip {hannahmontanaatthedentist_fla.tee_6_185}
"tee_4"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 475 MovieClip {hannahmontanaatthedentist_fla.tee_7_186}
"tee_8"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 476 MovieClip {hannahmontanaatthedentist_fla.tee_8_187}
"tee_7"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 477 MovieClip {hannahmontanaatthedentist_fla.tee_9_188}
"tee_9"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 478 MovieClip {hannahmontanaatthedentist_fla.tee_10_189}
"tee_11"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 479 MovieClip {hannahmontanaatthedentist_fla.tee_11_190}
"tee_12"Symbol 481 MovieClip {hannahmontanaatthedentist_fla.Teeth22y_178} Frame 1Symbol 480 MovieClip {hannahmontanaatthedentist_fla.tee_121_191}
"hit"Symbol 487 MovieClip {hannahmontanaatthedentist_fla.cleanicon5_192} Frame 1Symbol 484 MovieClip
"hit"Symbol 492 MovieClip {hannahmontanaatthedentist_fla.cleanicon6_195} Frame 1Symbol 484 MovieClip
"hit"Symbol 495 MovieClip {hannahmontanaatthedentist_fla.cleanicon11_197} Frame 1Symbol 484 MovieClip
"hit"Symbol 499 MovieClip {hannahmontanaatthedentist_fla.cleanicon18_198} Frame 1Symbol 484 MovieClip
"hit"Symbol 504 MovieClip {hannahmontanaatthedentist_fla.app_199} Frame 1Symbol 484 MovieClip
"hit"Symbol 512 MovieClip {hannahmontanaatthedentist_fla.item4_mc_201} Frame 1Symbol 484 MovieClip
"hit"Symbol 515 MovieClip Frame 1Symbol 484 MovieClip
"hit"Symbol 533 MovieClip {hannahmontanaatthedentist_fla.BG_135_206} Frame 1Symbol 484 MovieClip
"st_1"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 536 MovieClip {hannahmontanaatthedentist_fla.st_1ee_208}
"st_2"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 538 MovieClip {hannahmontanaatthedentist_fla.st_2_209}
"st_5"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 540 MovieClip {hannahmontanaatthedentist_fla.st_3_210}
"st_3"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 542 MovieClip {hannahmontanaatthedentist_fla.st_4_211}
"st_10"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 544 MovieClip {hannahmontanaatthedentist_fla.st_5_212}
"st_4"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 546 MovieClip {hannahmontanaatthedentist_fla.st_6_213}
"st_8"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 548 MovieClip {hannahmontanaatthedentist_fla.st_7_214}
"st_9"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 550 MovieClip {hannahmontanaatthedentist_fla.st_8_215}
"st_6"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 552 MovieClip {hannahmontanaatthedentist_fla.st_9_216}
"st_7"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 554 MovieClip {hannahmontanaatthedentist_fla.st_10_217}
"st_11"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 556 MovieClip {hannahmontanaatthedentist_fla.st_11_218}
"st_12"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 558 MovieClip {hannahmontanaatthedentist_fla.st_12_219}
"st_13"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 560 MovieClip {hannahmontanaatthedentist_fla.st_13_220}
"st_14"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 562 MovieClip {hannahmontanaatthedentist_fla.st_14_221}
"st_15"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 563 MovieClip {hannahmontanaatthedentist_fla.st_15_222}
"st_16"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 565 MovieClip {hannahmontanaatthedentist_fla.st_16_223}
"st_17"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 567 MovieClip {hannahmontanaatthedentist_fla.st_17_224}
"st_18"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 569 MovieClip {hannahmontanaatthedentist_fla.st_18_225}
"st_19"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 570 MovieClip {hannahmontanaatthedentist_fla.st_19_226}
"st_20"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 572 MovieClip {hannahmontanaatthedentist_fla.st_20_227}
"remove_btn1"Symbol 577 MovieClip {hannahmontanaatthedentist_fla.Teeth1_207} Frame 1Symbol 576 Button
"hit"Symbol 583 MovieClip {hannahmontanaatthedentist_fla.clolormcc_229} Frame 1Symbol 484 MovieClip
"stick"Symbol 604 MovieClip {hannahmontanaatthedentist_fla.stickclip_231} Frame 1Symbol 601 MovieClip {hannahmontanaatthedentist_fla.dfgdgdfg_232}
"hit"Symbol 604 MovieClip {hannahmontanaatthedentist_fla.stickclip_231} Frame 1Symbol 484 MovieClip
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 1Symbol 308 MovieClip {hannahmontanaatthedentist_fla.BG_159_100}
"hit"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 1Symbol 484 MovieClip
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 3Symbol 311 MovieClip {hannahmontanaatthedentist_fla.BG_160_101}
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 4Symbol 314 MovieClip {hannahmontanaatthedentist_fla.BG_161_102}
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 6Symbol 320 MovieClip {hannahmontanaatthedentist_fla.BG_163_104}
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 7Symbol 324 MovieClip {hannahmontanaatthedentist_fla.BG_164_105}
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 8Symbol 328 MovieClip {hannahmontanaatthedentist_fla.BG_165_106}
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 9Symbol 331 MovieClip {hannahmontanaatthedentist_fla.BG_166_107}
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 10Symbol 334 MovieClip {hannahmontanaatthedentist_fla.BG_167_108}
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 11Symbol 337 MovieClip {hannahmontanaatthedentist_fla.BG_168_109}
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 13Symbol 341 MovieClip {hannahmontanaatthedentist_fla.BG_169_110}
"mc"Symbol 605 MovieClip {hannahmontanaatthedentist_fla.tee_1new_234} Frame 14Symbol 345 MovieClip {hannahmontanaatthedentist_fla.BG_170_111}
"c2"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 608 MovieClip
"c3"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 610 MovieClip
"c4"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 612 MovieClip
"c5"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 614 MovieClip
"c6"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 616 MovieClip
"c7"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 618 MovieClip
"c8"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 620 MovieClip
"c9"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 622 MovieClip
"c10"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 624 MovieClip
"c11"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 626 MovieClip
"c12"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 628 MovieClip
"c13"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 630 MovieClip
"c14"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 632 MovieClip
"c15"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 634 MovieClip
"c16"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 636 MovieClip
"c17"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 638 MovieClip
"c18"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 640 MovieClip
"c19"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 642 MovieClip
"c20"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 644 MovieClip
"c21"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 646 MovieClip
"c22"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 648 MovieClip
"c23"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 650 MovieClip
"c24"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 652 MovieClip
"c25"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 654 MovieClip
"c26"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 656 MovieClip
"c27"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 658 MovieClip
"c1"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 660 MovieClip
"c28"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 662 MovieClip
"c29"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 664 MovieClip
"remove_btn"Symbol 665 MovieClip {hannahmontanaatthedentist_fla.colorclipp_235} Frame 1Symbol 576 Button

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 11298 bytes "<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmln ..."
EnableDebugger2 (64)Timeline Frame 131 bytes "..$1$Ou$UPutTKT5xR.L.PxpAQKk3/."

Labels

"startPage"Frame 80
"gamePage"Frame 81
"final"Frame 82




http://swfchan.com/46/229945/info.shtml
Created: 25/1 -2020 22:59:03 Last modified: 25/1 -2020 22:59:03 Server time: 09/05 -2024 18:36:47