| STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229923 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2598 · P5196 |
![]() | This is the info page for Flash #98573 |
20 |
1 |
18 |
4 |
13 |
6 |
10 |
15 |
2 |
17 |
3 |
19 |
7 |
16 |
8 |
11 |
14 |
9 |
12 |
5 |
<p align="center"><font face="Impact" size="40" color="#000000" letterSpacing="1.000000" kerning="0">20</font></p> |
Music Volume |
Grab That Dart and Try Again! |
Oh Gawd, I Wanna Get Nikad! |
SIGH! |
Dang, You Ain't Got No Aim! |
Put Yer Man Pants On Already! |
What 's Your Problem? |
What, You Don't Like Southern Girls? |
Quit Throwin' Like a Bitch! |
Get Mah Clothes Off Already! |
I Bet Your Penis is TINY! |
I Got 20 Bucks That Says You Got No Nuts. |
Pay Up My Twenty Bucks! I Ain't Kiddin' Bitch! |
Do You Even Like Girls? |
I Feel Bad For Your Girlfriend. |
I Mean, Boyfriend |
You Know What They Say About a Man That Can't Throw a Dart. |
I WAS Horny. |
How 'Bout Them Dawgs?! |
I Wonder What Else You Can't Toss. |
Would It Help To Pretend You're Throwing it in a Dude's Butt? |
I Bet You Like Dicksy Chics |
Maybe You Should Git Back to Work |
Milking Dicks. |
I Should Put My Clothes Back On |
Where's My Beer Hat? You Steal It? |
I 'll Give Ya One More Try |
<p align="left"></p> |
Last # Hit |
total misses |
<p align="left"></p> |
to aim dart, release when ready to throw |
click-down and hold |
click-down and hold to pull dart off board and release again to throw |
ActionScript [AS3]
Section 1//Regular (fl.transitions.easing.Regular) package fl.transitions.easing { public class Regular { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((_arg3 * _arg1) * _arg1) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ return (((((_arg3 / 2) * _arg1) * _arg1) + _arg2)); }; --_arg1; return ((((-(_arg3) / 2) * ((_arg1 * (_arg1 - 2)) - 1)) + _arg2)); } } }//package fl.transitions.easingSection 2//Tween (fl.transitions.Tween) package fl.transitions { import flash.events.*; import flash.utils.*; import flash.display.*; public class Tween extends EventDispatcher { private var _position:Number;// = NAN public var prevTime:Number;// = NAN public var prevPos:Number;// = NAN public var isPlaying:Boolean;// = false public var begin:Number;// = NAN private var _fps:Number;// = NAN private var _time:Number;// = NAN public var change:Number;// = NAN private var _finish:Number;// = NAN public var looping:Boolean;// = false private var _intervalID:uint;// = 0 public var func:Function; private var _timer:Timer;// = null private var _startTime:Number;// = NAN public var prop:String;// = "" private var _duration:Number;// = NAN public var obj:Object;// = null public var useSeconds:Boolean;// = false 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){ isPlaying = false; obj = null; prop = ""; func = function (_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return ((((_arg3 * _arg1) / _arg4) + _arg2)); }; begin = NaN; change = NaN; useSeconds = false; prevTime = NaN; prevPos = NaN; looping = false; _duration = NaN; _time = NaN; _fps = NaN; _position = NaN; _startTime = NaN; _intervalID = 0; _finish = NaN; _timer = null; 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 continueTo(_arg1:Number, _arg2:Number):void{ this.begin = this.position; this.finish = _arg1; if (!isNaN(_arg2)){ this.duration = _arg2; }; this.start(); } public function stop():void{ this.stopEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_STOP, this._time, this._position)); } private function fixTime():void{ if (this.useSeconds){ this._startTime = (getTimer() - (this._time * 1000)); }; } public function set FPS(_arg1:Number):void{ var _local2:Boolean; _local2 = this.isPlaying; this.stopEnterFrame(); this._fps = _arg1; if (_local2){ this.startEnterFrame(); }; } public function get finish():Number{ return ((this.begin + this.change)); } public function get duration():Number{ return (this._duration); } 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; } 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(); }; }; } protected function stopEnterFrame():void{ if (isNaN(this._fps)){ _mc.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame); } else { this._timer.stop(); }; this.isPlaying = false; } 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 set finish(_arg1:Number):void{ this.change = (_arg1 - this.begin); } public function set duration(_arg1:Number):void{ this._duration = ((_arg1)<=0) ? Infinity : _arg1; } 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 resume():void{ this.fixTime(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_RESUME, this._time, this._position)); } public function fforward():void{ this.time = this._duration; this.fixTime(); } protected function onEnterFrame(_arg1:Event):void{ this.nextFrame(); } public function get position():Number{ return (this.getPosition(this._time)); } public function yoyo():void{ this.continueTo(this.begin, this.time); } public function nextFrame():void{ if (this.useSeconds){ this.time = ((getTimer() - this._startTime) / 1000); } else { this.time = (this._time + 1); }; } protected function timerHandler(_arg1:TimerEvent):void{ this.nextFrame(); _arg1.updateAfterEvent(); } public function get FPS():Number{ return (this._fps); } public function rewind(_arg1:Number=0):void{ this._time = _arg1; this.fixTime(); this.update(); } public function set position(_arg1:Number):void{ this.setPosition(_arg1); } public function get time():Number{ return (this._time); } private function update():void{ this.setPosition(this.getPosition(this._time)); } public function start():void{ this.rewind(); this.startEnterFrame(); this.dispatchEvent(new TweenEvent(TweenEvent.MOTION_START, this._time, this._position)); } public function prevFrame():void{ if (!this.useSeconds){ this.time = (this._time - 1); }; } } }//package fl.transitionsSection 3//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_LOOP:String = "motionLoop"; public static const MOTION_CHANGE:String = "motionChange"; public static const MOTION_FINISH:String = "motionFinish"; public static const MOTION_RESUME:String = "motionResume"; public function TweenEvent(_arg1:String, _arg2:Number, _arg3:Number, _arg4:Boolean=false, _arg5:Boolean=false){ time = NaN; position = NaN; 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.transitionsSection 4//bent_over_breathingg_120 (strip_darts_fla.bent_over_breathingg_120) package strip_darts_fla { import flash.display.*; public dynamic class bent_over_breathingg_120 extends MovieClip { public var hair2:MovieClip; public var belly:MovieClip; public var head:MovieClip; } }//package strip_darts_flaSection 5//bikini_half1_67 (strip_darts_fla.bikini_half1_67) package strip_darts_fla { import flash.events.*; import flash.utils.*; import flash.media.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.net.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.system.*; import flash.ui.*; public dynamic class bikini_half1_67 extends MovieClip { public function bikini_half1_67(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package strip_darts_flaSection 6//boobs_with_bikini_57 (strip_darts_fla.boobs_with_bikini_57) package strip_darts_fla { import flash.display.*; public dynamic class boobs_with_bikini_57 extends MovieClip { public var star1:MovieClip; public var star2:MovieClip; public var boob_half1:MovieClip; public var boob_half2:MovieClip; } }//package strip_darts_flaSection 7//circling_animation__150 (strip_darts_fla.circling_animation__150) package strip_darts_fla { import flash.events.*; import fl.transitions.*; import fl.transitions.easing.*; import flash.utils.*; import flash.media.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.net.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.system.*; import flash.ui.*; public dynamic class circling_animation__150 extends MovieClip { public var distance:Number; public var circlingShape:Shape; public var numHit:Number; public var dart_blur:MovieClip; public var speed:Number; public var extra_speed:Number; public var currentDegrees:Number; public var circle_height:Number; public var arcVar:Number; public var dart:MovieClip; public var spin_inc:Number; public var arcVar2:Number; public var notes2:MovieClip; public var circle_width:Number; public var missCount:Number; public var lineVar:Number; public var notes:MovieClip; public var throwCount:Number; public var circle:MovieClip; public var new_speed:Number; public function circling_animation__150(){ addFrameScript(0, frame1); } public function nonStripRound(){ missCount = (missCount + 1); parent.miss_count.text = missCount; parent.mean_comments.visible = true; parent.mean_comments.nextFrame(); } public function dartCode(_arg1:Event):void{ var _local2:BlurFilter; var _local3:Array; notes2.visible = false; dart.x = mouseX; dart.y = mouseY; if (throwCount < 5){ notes.visible = true; }; notes.x = (dart.x + 100); notes.y = (dart.y + 100); xFactor = (1 + (mouseX / 1000)); yFactor = (1 + (mouseX / 1000)); distance = Math.abs((mouseX / 50)); if ((((((dart.x > 0)) && ((dart.y > 0)))) && ((dart.x < 200)))){ dart.rotation = 0; dart.scaleX = xFactor; dart.scaleY = yFactor; new_speed = 7; arcVar = 100; arcVar2 = -100; }; if ((((dart.x > 200)) && ((dart.y > 0)))){ dart.rotation = 0; dart.scaleX = xFactor; dart.scaleY = yFactor; new_speed = 3; arcVar = 200; arcVar2 = -100; }; if ((((dart.x < 0)) && ((dart.y > 0)))){ dart.scaleY = 1; dart.scaleX = 1; dart.rotation = 90; new_speed = 9; arcVar = -100; arcVar2 = 0; }; if ((((dart.x < 0)) && ((dart.y < 0)))){ dart.scaleY = 1; dart.scaleX = 1; dart.rotation = -180; new_speed = 8; arcVar = 0; arcVar2 = -200; }; if ((((dart.x > 450)) && ((dart.y < 0)))){ dart.rotation = (mouseY / 2); dart.scaleX = xFactor; dart.scaleY = yFactor; new_speed = 3; arcVar = 200; arcVar2 = -100; }; if ((((((dart.x > 0)) && ((dart.y < 0)))) && ((dart.x < 450)))){ dart.rotation = (mouseY / 2); dart.scaleX = xFactor; dart.scaleY = yFactor; new_speed = 8; arcVar = 100; arcVar2 = -100; }; dart_blur.x = dart.x; _local2 = new BlurFilter(); _local2.blurX = Math.abs((mouseX / 30)); _local2.blurY = Math.abs((mouseX / 30)); _local2.quality = 1; _local3 = new Array(_local2); dart.filters = _local3; } public function dartButtonUp(_arg1:MouseEvent):void{ var blur:BlurFilter; var filtersArray:Array; var xTween:Tween; var yTween:Tween; var xsTween:Tween; var ysTween:Tween; var posXFinish:*; var event = _arg1; posXFinish = function (_arg1:TweenEvent=null):void{ dart.addEventListener(MouseEvent.MOUSE_DOWN, dartButtonClick); dart.removeEventListener(Event.ENTER_FRAME, movingCode); circlingShape.graphics.clear(); dart.x = circle.x; dart.y = circle.y; dart.scaleX = 0.5; dart.scaleY = 0.5; parent.pop_sound.play(); circle.visible = false; if ((((currentDegrees >= 0)) && ((currentDegrees <= 18)))){ numHit = 3; }; if ((((currentDegrees >= 19)) && ((currentDegrees <= 36)))){ numHit = 17; }; if ((((currentDegrees >= 37)) && ((currentDegrees <= 54)))){ numHit = 2; }; if ((((currentDegrees >= 55)) && ((currentDegrees <= 72)))){ numHit = 15; }; if ((((currentDegrees >= 73)) && ((currentDegrees <= 90)))){ numHit = 10; }; if ((((currentDegrees >= 91)) && ((currentDegrees <= 108)))){ numHit = 6; }; if ((((currentDegrees >= 109)) && ((currentDegrees <= 126)))){ numHit = 13; }; if ((((currentDegrees >= 127)) && ((currentDegrees <= 144)))){ numHit = 4; }; if ((((currentDegrees >= 145)) && ((currentDegrees <= 162)))){ numHit = 18; }; if ((((currentDegrees >= 163)) && ((currentDegrees <= 180)))){ numHit = 1; }; if ((((currentDegrees >= 181)) && ((currentDegrees <= 198)))){ numHit = 20; }; if ((((currentDegrees >= 199)) && ((currentDegrees <= 216)))){ numHit = 5; }; if ((((currentDegrees >= 217)) && ((currentDegrees <= 234)))){ numHit = 12; }; if ((((currentDegrees >= 235)) && ((currentDegrees <= 252)))){ numHit = 9; }; if ((((currentDegrees >= 253)) && ((currentDegrees <= 270)))){ numHit = 14; }; if ((((currentDegrees >= 271)) && ((currentDegrees <= 288)))){ numHit = 11; }; if ((((currentDegrees >= 289)) && ((currentDegrees <= 306)))){ numHit = 8; }; if ((((currentDegrees >= 307)) && ((currentDegrees <= 324)))){ numHit = 16; }; if ((((currentDegrees >= 325)) && ((currentDegrees <= 342)))){ numHit = 7; }; if ((((currentDegrees >= 343)) && ((currentDegrees <= 360)))){ numHit = 19; }; dart.gotoAndPlay(2); parent.yourHit.text = numHit; if (throwCount < 5){ notes2.visible = true; notes2.x = Math.round((dart.x + 125)); notes2.y = Math.round((dart.y + 100)); }; if (numHit == numToHit){ stripRound(); } else { if (numHit != numToHit){ nonStripRound(); }; }; }; dart.removeEventListener(MouseEvent.MOUSE_DOWN, dartButtonClick); lineVar = 0; parent.swish_sound.play(); throwCount = (throwCount + 1); notes.visible = false; dart.removeEventListener(Event.ENTER_FRAME, dartCode); blur = new BlurFilter(); blur.blurX = 0; blur.blurY = 0; blur.quality = 1; filtersArray = new Array(blur); dart.filters = filtersArray; xTween = new Tween(dart, "x", Regular.easeIn, dart.x, circle.x, distance, false); yTween = new Tween(dart, "y", Regular.easeIn, dart.y, circle.y, distance, false); xsTween = new Tween(dart, "scaleX", Regular.easeIn, dart.scaleX, 0.5, distance, false); ysTween = new Tween(dart, "scaleY", Regular.easeIn, dart.scaleY, 0.5, distance, false); yTween.addEventListener(TweenEvent.MOTION_FINISH, posXFinish); } public function movingCode(_arg1:Event):void{ var _local2:Number; var _local3:Number; var _local4:Number; currentDegrees = ((currentDegrees + new_speed) + extra_speed); _local2 = ((currentDegrees * Math.PI) / 180); _local3 = (Math.sin(_local2) * circle_width); _local4 = (Math.cos(_local2) * circle_height); circle.x = _local3; circle.y = _local4; circlingShape.graphics.clear(); circlingShape.graphics.lineStyle(3, 1044495, lineVar); circlingShape.graphics.moveTo(circle.x, circle.y); circlingShape.graphics.curveTo(arcVar, arcVar2, mouseX, mouseY); if (Math.round(currentDegrees) >= 360){ currentDegrees = 0; }; } function frame1(){ speed = 5; extra_speed = 0; currentDegrees = 0; circle_width = 100; circle_height = 100; spin_inc = 0.5; arcVar = 200; arcVar2 = -100; throwCount = 0; missCount = 0; lineVar = 0.5; circle.visible = true; notes2.visible = false; parent.mean_comments.visible = false; numToHit = (Math.round((Math.random() * 19)) + 1); parent.toHit.text = numToHit; dart.addEventListener(Event.ENTER_FRAME, dartCode); circle.visible = false; circlingShape = new Shape(); this.addChild(circlingShape); this.addChildAt(dart, 3); circlingShape.x = circle.x; circlingShape.y = circle.y; dart.addEventListener(MouseEvent.MOUSE_UP, dartButtonUp); dart.addEventListener(MouseEvent.MOUSE_DOWN, dartButtonClick); } public function dartButtonClick(_arg1:MouseEvent):void{ lineVar = 0.5; dart_blur.visible = true; notes2.visible = false; notes.gotoAndStop(1); parent.mean_comments.visible = false; currentDegrees = Math.round((Math.random() * 350)); circle.visible = true; dart.addEventListener(Event.ENTER_FRAME, movingCode); dart.addEventListener(Event.ENTER_FRAME, dartCode); } public function stripRound(){ trace("she strips"); numToHit = (Math.round((Math.random() * 19)) + 1); parent.toHit.text = numToHit; extra_speed = (extra_speed + 0.5); parent.rednecca.play(); } } }//package strip_darts_flaSection 8//darr_152 (strip_darts_fla.darr_152) package strip_darts_fla { import flash.events.*; import flash.utils.*; import flash.media.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.net.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.system.*; import flash.ui.*; public dynamic class darr_152 extends MovieClip { public function darr_152(){ addFrameScript(0, frame1, 1, frame2, 6, frame7); } function frame7(){ gotoAndStop(1); } function frame1(){ stop(); } function frame2(){ parent.dart_blur.visible = false; } } }//package strip_darts_flaSection 9//MainTimeline (strip_darts_fla.MainTimeline) package strip_darts_fla { import flash.events.*; import flash.utils.*; import flash.media.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.net.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.system.*; import flash.ui.*; public dynamic class MainTimeline extends MovieClip { public var channel:SoundChannel; public var newVol:Number; public var miss_count:TextField; public var volume_meter:MovieClip; public var mean_comments:MovieClip; public var toHit:TextField; public var swish_sound:swish2; public var dart_stuff:MovieClip; public var logo_button:MovieClip; public var newSetting:SoundTransform; public var yourHit:TextField; public var hipneck_song:hipneck; public var pop_sound:pop; public var clouds:MovieClip; public var rednecca:MovieClip; public function MainTimeline(){ addFrameScript(53, frame54); } public function logo_buttonRollOver(_arg1:MouseEvent):void{ logo_button.gotoAndStop(2); } public function logo_buttonRollOut(_arg1:MouseEvent):void{ logo_button.gotoAndStop(1); } public function link_buttonClick(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://s125799206.onlinehome.us/strip_darts.zip"); navigateToURL(_local2, "_blank"); } public function onEnterFrame(_arg1:Event):void{ var _local2:Number; _local2 = ((volume_meter.vol_slider.y - 100) / -100); newSetting.volume = _local2; channel.soundTransform = newSetting; } function frame54(){ stop(); this.scaleMode = StageScaleMode.NO_SCALE; Stage.align = StageAlign.TOP; stage.showDefaultContextMenu = false; logo_button.addEventListener(MouseEvent.CLICK, logo_buttonClick); logo_button.addEventListener(MouseEvent.ROLL_OVER, logo_buttonRollOver); logo_button.addEventListener(MouseEvent.ROLL_OUT, logo_buttonRollOut); newSetting = new SoundTransform(); hipneck_song = new hipneck(); channel = hipneck_song.play(0, 100); swish_sound = new swish2(); pop_sound = new pop(); newVol = 0.5; newSetting.volume = newVol; channel.soundTransform = newSetting; this.addEventListener(Event.ENTER_FRAME, onEnterFrame); } public function logo_buttonClick(_arg1:MouseEvent):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.striparcade.com"); navigateToURL(_local2, "_blank"); } } }//package strip_darts_flaSection 10//meanComments_142 (strip_darts_fla.meanComments_142) package strip_darts_fla { import flash.events.*; import flash.utils.*; import flash.media.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.net.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.system.*; import flash.ui.*; public dynamic class meanComments_142 extends MovieClip { public function meanComments_142(){ addFrameScript(0, frame1, 25, frame26); } function frame1(){ stop(); } function frame26(){ parent.rednecca.gotoAndStop(1); parent.dart_stuff.missCount = 0; parent.dart_stuff.extra_speed = 0; parent.miss_count.text = 0; gotoAndStop(1); } } }//package strip_darts_flaSection 11//rednecca_strip_symbols_32 (strip_darts_fla.rednecca_strip_symbols_32) package strip_darts_fla { import flash.events.*; import flash.utils.*; import flash.media.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.net.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.system.*; import flash.ui.*; public dynamic class rednecca_strip_symbols_32 extends MovieClip { public var rednecca:MovieClip; public function rednecca_strip_symbols_32(){ addFrameScript(0, frame1, 1, frame2, 10, frame11, 11, frame12, 19, frame20, 20, frame21, 29, frame30, 30, frame31, 40, frame41, 41, frame42, 52, frame53, 53, frame54, 63, frame64, 64, frame65, 74, frame75, 75, frame76, 85, frame86, 86, frame87, 96, frame97, 108, frame109, 121, frame122, 123, frame124); } function frame65(){ rednecca.beer_hat.visible = false; rednecca.beer_hat2.visible = false; rednecca.boobs.boob_half1.visible = false; rednecca.boobs.boob_half2.visible = false; rednecca.boobs.star1.visible = false; rednecca.shorts.visible = false; rednecca.boot1.visible = false; rednecca.boot2.visible = false; } function frame75(){ stop(); } function frame64(){ stop(); } function frame76(){ rednecca.beer_hat.visible = false; rednecca.beer_hat2.visible = false; rednecca.boobs.boob_half1.visible = false; rednecca.boobs.boob_half2.visible = false; rednecca.boobs.star1.visible = false; rednecca.boobs.star2.visible = false; rednecca.shorts.visible = false; rednecca.boot1.visible = false; rednecca.boot2.visible = false; } function frame86(){ stop(); } function frame87(){ rednecca.beer_hat.visible = false; rednecca.beer_hat2.visible = false; rednecca.boobs.boob_half1.visible = false; rednecca.boobs.boob_half2.visible = false; rednecca.boobs.star1.visible = false; rednecca.boobs.star2.visible = false; rednecca.shorts.visible = false; rednecca.bottoms.visible = false; rednecca.boot1.visible = false; rednecca.boot2.visible = false; } function frame12(){ rednecca.beer_hat.visible = false; rednecca.beer_hat2.visible = false; rednecca.boot1.visible = false; } function frame97(){ stop(); parent.dart_stuff.extra_speed = (parent.dart_stuff.extra_speed + 5); } function frame1(){ stop(); rednecca.beer_hat.visible = true; rednecca.beer_hat2.visible = true; rednecca.boobs.boob_half1.visible = true; rednecca.boobs.boob_half2.visible = true; rednecca.boobs.star1.visible = true; rednecca.boobs.star2.visible = true; rednecca.bottoms.visible = true; rednecca.shorts.visible = true; rednecca.boot1.visible = true; rednecca.boot2.visible = true; } function frame109(){ stop(); } function frame21(){ rednecca.beer_hat.visible = false; rednecca.beer_hat2.visible = false; rednecca.boot1.visible = false; rednecca.boot2.visible = false; } function frame20(){ stop(); } function frame2(){ rednecca.beer_hat.visible = false; rednecca.beer_hat2.visible = false; } function frame30(){ stop(); } function frame31(){ rednecca.beer_hat.visible = false; rednecca.beer_hat2.visible = false; rednecca.shorts.visible = false; rednecca.boot1.visible = false; rednecca.boot2.visible = false; } function frame11(){ stop(); } function frame124(){ gotoAndPlay("loop"); } function frame41(){ stop(); } function frame122(){ stop(); } function frame42(){ rednecca.beer_hat.visible = false; rednecca.beer_hat2.visible = false; rednecca.boobs.boob_half2.visible = false; rednecca.shorts.visible = false; rednecca.boot1.visible = false; rednecca.boot2.visible = false; } function frame54(){ rednecca.beer_hat.visible = false; rednecca.beer_hat2.visible = false; rednecca.boobs.boob_half1.visible = false; rednecca.boobs.boob_half2.visible = false; rednecca.shorts.visible = false; rednecca.boot1.visible = false; rednecca.boot2.visible = false; } function frame53(){ stop(); } } }//package strip_darts_flaSection 12//rednecca_stripPose1_33 (strip_darts_fla.rednecca_stripPose1_33) package strip_darts_fla { import flash.events.*; import flash.utils.*; import flash.media.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.net.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.system.*; import flash.ui.*; public dynamic class rednecca_stripPose1_33 extends MovieClip { public var beer_hat:MovieClip; public var shorts:MovieClip; public var boot1:MovieClip; public var boot2:MovieClip; public var hair2:MovieClip; public var boobs:MovieClip; public var beer_hat2:MovieClip; public var bottoms:MovieClip; public var belly:MovieClip; public var head:MovieClip; public var hair:MovieClip; public function rednecca_stripPose1_33(){ addFrameScript(271, frame272); } function frame272(){ gotoAndPlay(2); } } }//package strip_darts_flaSection 13//ssdkfjlsdfjls_123 (strip_darts_fla.ssdkfjlsdfjls_123) package strip_darts_fla { import flash.display.*; public dynamic class ssdkfjlsdfjls_123 extends MovieClip { public var hair:MovieClip; } }//package strip_darts_flaSection 14//strip_arcade_logo_161 (strip_darts_fla.strip_arcade_logo_161) package strip_darts_fla { import flash.events.*; import flash.utils.*; import flash.media.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.net.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.system.*; import flash.ui.*; public dynamic class strip_arcade_logo_161 extends MovieClip { public function strip_arcade_logo_161(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package strip_darts_flaSection 15//top_half_behind_104 (strip_darts_fla.top_half_behind_104) package strip_darts_fla { import flash.display.*; public dynamic class top_half_behind_104 extends MovieClip { public var hair2:MovieClip; public var belly:MovieClip; public var hair:MovieClip; } }//package strip_darts_flaSection 16//volume_meter_146 (strip_darts_fla.volume_meter_146) package strip_darts_fla { import flash.events.*; import flash.utils.*; import flash.media.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.net.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.system.*; import flash.ui.*; public dynamic class volume_meter_146 extends MovieClip { public var volumeBoundsRect:Rectangle; public var volume_bar:MovieClip; public var boundsRectangle:MovieClip; public var vol_slider:MovieClip; public function volume_meter_146(){ addFrameScript(0, frame1); } function frame1(){ volume_bar.gotoAndStop(50); volumeBoundsRect = new Rectangle(boundsRectangle.x, boundsRectangle.y, 0, boundsRectangle.height); this.addEventListener(MouseEvent.MOUSE_OVER, startDragging); this.addEventListener(MouseEvent.MOUSE_OUT, stopDragging); } public function stopDragging(_arg1:MouseEvent):void{ vol_slider.stopDrag(); } public function startDragging(_arg1:MouseEvent):void{ var onMouseMove:*; var dragEvent = _arg1; onMouseMove = function (_arg1:MouseEvent):void{ volume_bar.gotoAndStop((Math.round((vol_slider.y - 100)) * -1)); _arg1.updateAfterEvent(); }; vol_slider.startDrag(true, volumeBoundsRect); this.addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove); } } }//package strip_darts_flaSection 17//volumebars_148 (strip_darts_fla.volumebars_148) package strip_darts_fla { import flash.events.*; import flash.utils.*; import flash.media.*; import flash.display.*; import flash.text.*; import flash.geom.*; import flash.net.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.system.*; import flash.ui.*; public dynamic class volumebars_148 extends MovieClip { public function volumebars_148(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package strip_darts_flaSection 18//hipneck (hipneck) package { import flash.media.*; public dynamic class hipneck extends Sound { } }//packageSection 19//pop (pop) package { import flash.media.*; public dynamic class pop extends Sound { } }//packageSection 20//swish2 (swish2) package { import flash.media.*; public dynamic class swish2 extends Sound { } }//package
Library Items
Symbol 1 Sound {pop} | ||
Symbol 2 Sound {hipneck} | ||
Symbol 3 Sound {swish2} | Used by:Timeline | |
Symbol 4 Graphic | Used by:15 | |
Symbol 5 Graphic | Used by:6 | |
Symbol 6 MovieClip | Uses:5 | Used by:15 |
Symbol 7 Graphic | Used by:8 | |
Symbol 8 MovieClip | Uses:7 | Used by:15 |
Symbol 9 Graphic | Used by:10 | |
Symbol 10 MovieClip | Uses:9 | Used by:15 |
Symbol 11 Graphic | Used by:12 | |
Symbol 12 MovieClip | Uses:11 | Used by:15 |
Symbol 13 Graphic | Used by:14 | |
Symbol 14 MovieClip | Uses:13 | Used by:15 |
Symbol 15 MovieClip | Uses:4 6 8 10 12 14 | Used by:16 371 |
Symbol 16 MovieClip | Uses:15 | Used by:Timeline |
Symbol 17 Sound | Used by:Timeline | |
Symbol 18 Graphic | Used by:19 | |
Symbol 19 MovieClip | Uses:18 | Used by:Timeline |
Symbol 20 Graphic | Used by:21 | |
Symbol 21 MovieClip | Uses:20 | Used by:Timeline |
Symbol 22 Graphic | Used by:23 24 | |
Symbol 23 MovieClip | Uses:22 | Used by:25 Timeline |
Symbol 24 MovieClip | Uses:22 | Used by:25 |
Symbol 25 MovieClip | Uses:23 24 | Used by:Timeline |
Symbol 26 Graphic | Used by:28 | |
Symbol 27 Graphic | Used by:28 | |
Symbol 28 MovieClip | Uses:26 27 | Used by:Timeline |
Symbol 29 Graphic | Used by:30 | |
Symbol 30 MovieClip | Uses:29 | Used by:Timeline |
Symbol 31 Graphic | Used by:32 | |
Symbol 32 MovieClip | Uses:31 | Used by:Timeline |
Symbol 33 Graphic | Used by:34 | |
Symbol 34 MovieClip | Uses:33 | Used by:Timeline |
Symbol 35 Graphic | Used by:36 | |
Symbol 36 MovieClip | Uses:35 | Used by:Timeline |
Symbol 37 Graphic | Used by:38 | |
Symbol 38 MovieClip | Uses:37 | Used by:Timeline |
Symbol 39 Graphic | Used by:74 | |
Symbol 40 Graphic | Used by:41 | |
Symbol 41 MovieClip | Uses:40 | Used by:74 |
Symbol 42 Graphic | Used by:43 | |
Symbol 43 MovieClip | Uses:42 | Used by:74 |
Symbol 44 Graphic | Used by:45 | |
Symbol 45 MovieClip | Uses:44 | Used by:74 |
Symbol 46 Graphic | Used by:47 | |
Symbol 47 MovieClip | Uses:46 | Used by:74 |
Symbol 48 Graphic | Used by:49 | |
Symbol 49 MovieClip | Uses:48 | Used by:74 |
Symbol 50 Graphic | Used by:51 | |
Symbol 51 MovieClip | Uses:50 | Used by:74 |
Symbol 52 Font | Used by:53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | |
Symbol 53 Text | Uses:52 | Used by:73 |
Symbol 54 Text | Uses:52 | Used by:73 |
Symbol 55 Text | Uses:52 | Used by:73 |
Symbol 56 Text | Uses:52 | Used by:73 |
Symbol 57 Text | Uses:52 | Used by:73 |
Symbol 58 Text | Uses:52 | Used by:73 |
Symbol 59 Text | Uses:52 | Used by:73 |
Symbol 60 Text | Uses:52 | Used by:73 |
Symbol 61 Text | Uses:52 | Used by:73 |
Symbol 62 Text | Uses:52 | Used by:73 |
Symbol 63 Text | Uses:52 | Used by:73 |
Symbol 64 Text | Uses:52 | Used by:73 |
Symbol 65 Text | Uses:52 | Used by:73 |
Symbol 66 Text | Uses:52 | Used by:73 |
Symbol 67 Text | Uses:52 | Used by:73 |
Symbol 68 Text | Uses:52 | Used by:73 |
Symbol 69 Text | Uses:52 | Used by:73 |
Symbol 70 Text | Uses:52 | Used by:73 |
Symbol 71 Text | Uses:52 | Used by:73 |
Symbol 72 Text | Uses:52 | Used by:73 |
Symbol 73 MovieClip | Uses:53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | Used by:74 |
Symbol 74 MovieClip | Uses:39 41 43 45 47 49 51 73 | Used by:Timeline |
Symbol 75 Graphic | Used by:76 | |
Symbol 76 MovieClip | Uses:75 | Used by:270 272 Timeline |
Symbol 77 Graphic | Used by:78 | |
Symbol 78 MovieClip | Uses:77 | Used by:94 204 Timeline |
Symbol 79 Graphic | Used by:80 | |
Symbol 80 MovieClip | Uses:79 | Used by:Timeline |
Symbol 81 Graphic | Used by:82 | |
Symbol 82 MovieClip | Uses:81 | Used by:Timeline |
Symbol 83 Graphic | Used by:84 | |
Symbol 84 MovieClip | Uses:83 | Used by:Timeline |
Symbol 85 Graphic | Used by:212 | |
Symbol 86 Graphic | Used by:87 | |
Symbol 87 MovieClip | Uses:86 | Used by:212 |
Symbol 88 Graphic | Used by:89 | |
Symbol 89 MovieClip | Uses:88 | Used by:94 |
Symbol 90 Graphic | Used by:91 | |
Symbol 91 MovieClip | Uses:90 | Used by:94 |
Symbol 92 Graphic | Used by:93 | |
Symbol 93 MovieClip | Uses:92 | Used by:94 204 |
Symbol 94 MovieClip | Uses:89 78 91 93 | Used by:212 |
Symbol 95 Graphic | Used by:96 | |
Symbol 96 MovieClip | Uses:95 | Used by:212 237 270 |
Symbol 97 Graphic | Used by:98 229 | |
Symbol 98 MovieClip | Uses:97 | Used by:212 270 |
Symbol 99 Graphic | Used by:100 | |
Symbol 100 MovieClip | Uses:99 | Used by:212 237 270 |
Symbol 101 Graphic | Used by:102 | |
Symbol 102 MovieClip | Uses:101 | Used by:212 |
Symbol 103 Graphic | Used by:104 | |
Symbol 104 MovieClip | Uses:103 | Used by:212 |
Symbol 105 Graphic | Used by:106 | |
Symbol 106 MovieClip | Uses:105 | Used by:212 |
Symbol 107 Graphic | Used by:108 | |
Symbol 108 MovieClip | Uses:107 | Used by:212 |
Symbol 109 Graphic | Used by:110 | |
Symbol 110 MovieClip | Uses:109 | Used by:212 |
Symbol 111 Graphic | Used by:112 | |
Symbol 112 MovieClip | Uses:111 | Used by:212 |
Symbol 113 Graphic | Used by:114 | |
Symbol 114 MovieClip | Uses:113 | Used by:212 |
Symbol 115 Graphic | Used by:116 | |
Symbol 116 MovieClip | Uses:115 | Used by:212 |
Symbol 117 Graphic | Used by:118 | |
Symbol 118 MovieClip | Uses:117 | Used by:212 220 |
Symbol 119 Graphic | Used by:128 | |
Symbol 120 Graphic | Used by:121 | |
Symbol 121 MovieClip | Uses:120 | Used by:128 |
Symbol 122 Graphic | Used by:123 | |
Symbol 123 MovieClip | Uses:122 | Used by:128 254 |
Symbol 124 Graphic | Used by:128 254 | |
Symbol 125 Graphic | Used by:126 | |
Symbol 126 MovieClip | Uses:125 | Used by:128 136 142 159 185 233 254 259 270 |
Symbol 127 Graphic | Used by:128 254 | |
Symbol 128 MovieClip | Uses:119 121 123 124 126 127 | Used by:212 |
Symbol 129 Graphic | Used by:130 | |
Symbol 130 MovieClip | Uses:129 | Used by:131 |
Symbol 131 MovieClip | Uses:130 | Used by:212 270 |
Symbol 132 Graphic | Used by:133 | |
Symbol 133 MovieClip | Uses:132 | Used by:155 237 270 |
Symbol 134 Graphic | Used by:136 | |
Symbol 135 Graphic | Used by:136 | |
Symbol 136 MovieClip | Uses:134 126 135 | Used by:155 237 |
Symbol 137 Graphic | Used by:138 | |
Symbol 138 MovieClip | Uses:137 | Used by:155 237 270 |
Symbol 139 Graphic | Used by:140 | |
Symbol 140 MovieClip | Uses:139 | Used by:155 237 270 |
Symbol 141 Graphic | Used by:142 | |
Symbol 142 MovieClip | Uses:141 126 | Used by:155 237 |
Symbol 143 Graphic | Used by:144 | |
Symbol 144 MovieClip | Uses:143 | Used by:155 260 270 |
Symbol 145 Graphic | Used by:146 | |
Symbol 146 MovieClip | Uses:145 | Used by:155 237 |
Symbol 147 Graphic | Used by:148 | |
Symbol 148 MovieClip | Uses:147 | Used by:155 |
Symbol 149 Graphic | Used by:150 | |
Symbol 150 MovieClip | Uses:149 | Used by:155 |
Symbol 151 Graphic | Used by:152 | |
Symbol 152 MovieClip {strip_darts_fla.bikini_half1_67} | Uses:151 | Used by:155 |
Symbol 153 Graphic | Used by:154 | |
Symbol 154 MovieClip | Uses:153 | Used by:155 |
Symbol 155 MovieClip {strip_darts_fla.boobs_with_bikini_57} | Uses:133 136 138 140 142 144 146 148 150 152 154 | Used by:212 |
Symbol 156 Graphic | Used by:157 | |
Symbol 157 MovieClip | Uses:156 | Used by:179 228 |
Symbol 158 Graphic | Used by:159 | |
Symbol 159 MovieClip | Uses:158 126 | Used by:179 228 |
Symbol 160 Graphic | Used by:161 | |
Symbol 161 MovieClip | Uses:160 | Used by:179 228 |
Symbol 162 Graphic | Used by:163 | |
Symbol 163 MovieClip | Uses:162 | Used by:179 228 |
Symbol 164 Graphic | Used by:165 | |
Symbol 165 MovieClip | Uses:164 | Used by:179 228 |
Symbol 166 Graphic | Used by:167 | |
Symbol 167 MovieClip | Uses:166 | Used by:178 |
Symbol 168 Graphic | Used by:169 | |
Symbol 169 MovieClip | Uses:168 | Used by:178 |
Symbol 170 Graphic | Used by:171 | |
Symbol 171 MovieClip | Uses:170 | Used by:178 |
Symbol 172 Graphic | Used by:173 | |
Symbol 173 MovieClip | Uses:172 | Used by:178 |
Symbol 174 Graphic | Used by:175 | |
Symbol 175 MovieClip | Uses:174 | Used by:178 |
Symbol 176 Graphic | Used by:177 | |
Symbol 177 MovieClip | Uses:176 | Used by:178 |
Symbol 178 MovieClip | Uses:167 169 171 173 175 177 | Used by:179 228 |
Symbol 179 MovieClip | Uses:157 159 161 163 165 178 | Used by:212 270 |
Symbol 180 Graphic | Used by:181 | |
Symbol 181 MovieClip | Uses:180 | Used by:212 270 |
Symbol 182 Graphic | Used by:183 | |
Symbol 183 MovieClip | Uses:182 | Used by:212 |
Symbol 184 Graphic | Used by:185 | |
Symbol 185 MovieClip | Uses:184 126 | Used by:186 |
Symbol 186 MovieClip | Uses:185 | Used by:212 |
Symbol 187 Graphic | Used by:188 | |
Symbol 188 MovieClip | Uses:187 | Used by:212 |
Symbol 189 Graphic | Used by:190 | |
Symbol 190 MovieClip | Uses:189 | Used by:212 |
Symbol 191 Graphic | Used by:192 | |
Symbol 192 MovieClip | Uses:191 | Used by:193 |
Symbol 193 MovieClip | Uses:192 | Used by:212 270 |
Symbol 194 Graphic | Used by:195 | |
Symbol 195 MovieClip | Uses:194 | Used by:212 |
Symbol 196 Graphic | Used by:197 | |
Symbol 197 MovieClip | Uses:196 | Used by:212 |
Symbol 198 Graphic | Used by:199 | |
Symbol 199 MovieClip | Uses:198 | Used by:212 229 |
Symbol 200 Graphic | Used by:201 | |
Symbol 201 MovieClip | Uses:200 | Used by:204 |
Symbol 202 Graphic | Used by:203 | |
Symbol 203 MovieClip | Uses:202 | Used by:204 |
Symbol 204 MovieClip | Uses:201 78 93 203 | Used by:212 |
Symbol 205 Graphic | Used by:212 | |
Symbol 206 Graphic | Used by:207 | |
Symbol 207 MovieClip | Uses:206 | Used by:212 |
Symbol 208 Graphic | Used by:209 234 | |
Symbol 209 MovieClip | Uses:208 | Used by:212 |
Symbol 210 Graphic | Used by:211 | |
Symbol 211 MovieClip | Uses:210 | Used by:212 |
Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} | Uses:85 87 94 96 98 100 102 104 106 108 110 112 114 116 118 128 131 155 179 181 183 186 188 190 193 195 197 199 204 205 207 209 211 | Used by:272 |
Symbol 213 Sound | Used by:272 | |
Symbol 214 Sound | Used by:272 | |
Symbol 215 Sound | Used by:272 | |
Symbol 216 Sound | Used by:272 | |
Symbol 217 Graphic | Used by:218 | |
Symbol 218 MovieClip | Uses:217 | Used by:249 270 |
Symbol 219 Graphic | Used by:220 | |
Symbol 220 MovieClip | Uses:219 118 | Used by:249 270 |
Symbol 221 Graphic | Used by:222 | |
Symbol 222 MovieClip | Uses:221 | Used by:249 270 |
Symbol 223 Graphic | Used by:224 | |
Symbol 224 MovieClip | Uses:223 | Used by:249 |
Symbol 225 Graphic | Used by:226 | |
Symbol 226 MovieClip | Uses:225 | Used by:227 |
Symbol 227 MovieClip | Uses:226 | Used by:237 |
Symbol 228 MovieClip | Uses:157 159 161 163 165 178 | Used by:237 |
Symbol 229 MovieClip | Uses:97 199 | Used by:237 |
Symbol 230 Graphic | Used by:231 | |
Symbol 231 MovieClip | Uses:230 | Used by:237 |
Symbol 232 Graphic | Used by:233 | |
Symbol 233 MovieClip | Uses:232 126 | Used by:237 |
Symbol 234 MovieClip | Uses:208 | Used by:237 |
Symbol 235 Graphic | Used by:236 | |
Symbol 236 MovieClip | Uses:235 | Used by:237 |
Symbol 237 MovieClip {strip_darts_fla.top_half_behind_104} | Uses:146 133 136 138 140 142 227 228 229 100 231 233 234 236 96 | Used by:249 |
Symbol 238 Graphic | Used by:239 | |
Symbol 239 MovieClip | Uses:238 | Used by:249 |
Symbol 240 Graphic | Used by:241 | |
Symbol 241 MovieClip | Uses:240 | Used by:244 267 |
Symbol 242 Graphic | Used by:243 | |
Symbol 243 MovieClip | Uses:242 | Used by:244 267 |
Symbol 244 MovieClip | Uses:241 243 | Used by:249 |
Symbol 245 Graphic | Used by:246 | |
Symbol 246 MovieClip | Uses:245 | Used by:249 |
Symbol 247 Graphic | Used by:248 | |
Symbol 248 MovieClip | Uses:247 | Used by:249 |
Symbol 249 MovieClip | Uses:218 220 222 224 237 239 244 246 248 | Used by:272 |
Symbol 250 Sound | Used by:272 371 | |
Symbol 251 Graphic | Used by:252 | |
Symbol 252 MovieClip | Uses:251 | Used by:270 |
Symbol 253 Graphic | Used by:254 | |
Symbol 254 MovieClip | Uses:253 123 124 126 127 | Used by:270 |
Symbol 255 Graphic | Used by:256 | |
Symbol 256 MovieClip | Uses:255 | Used by:257 |
Symbol 257 MovieClip {strip_darts_fla.ssdkfjlsdfjls_123} | Uses:256 | Used by:270 |
Symbol 258 Graphic | Used by:259 | |
Symbol 259 MovieClip | Uses:258 126 | Used by:260 |
Symbol 260 MovieClip | Uses:259 144 | Used by:270 |
Symbol 261 Graphic | Used by:262 | |
Symbol 262 MovieClip | Uses:261 | Used by:270 |
Symbol 263 Graphic | Used by:264 | |
Symbol 264 MovieClip | Uses:263 | Used by:270 |
Symbol 265 Graphic | Used by:266 | |
Symbol 266 MovieClip | Uses:265 | Used by:270 |
Symbol 267 MovieClip | Uses:241 243 | Used by:270 |
Symbol 268 Graphic | Used by:269 | |
Symbol 269 MovieClip | Uses:268 | Used by:270 |
Symbol 270 MovieClip {strip_darts_fla.bent_over_breathingg_120} | Uses:252 96 98 100 254 131 181 76 179 133 138 140 144 257 193 260 218 220 222 262 264 266 267 126 269 | Used by:271 |
Symbol 271 MovieClip | Uses:270 | Used by:272 |
Symbol 272 MovieClip {strip_darts_fla.rednecca_strip_symbols_32} | Uses:76 212 213 214 215 216 249 250 271 | Used by:Timeline |
Symbol 273 Graphic | Used by:274 | |
Symbol 274 MovieClip | Uses:273 | Used by:Timeline |
Symbol 275 Graphic | Used by:276 | |
Symbol 276 MovieClip | Uses:275 | Used by:Timeline |
Symbol 277 Graphic | Used by:278 | |
Symbol 278 MovieClip | Uses:277 | Used by:Timeline |
Symbol 279 Font | Used by:280 | |
Symbol 280 EditableText | Uses:279 | Used by:Timeline |
Symbol 281 Graphic | Used by:282 | |
Symbol 282 MovieClip | Uses:281 | Used by:Timeline |
Symbol 283 Font | Used by:284 330 331 332 333 357 358 362 | |
Symbol 284 Text | Uses:283 | Used by:Timeline |
Symbol 285 Graphic | Used by:286 | |
Symbol 286 MovieClip | Uses:285 | Used by:291 |
Symbol 287 Graphic | Used by:288 | |
Symbol 288 MovieClip | Uses:287 | Used by:291 |
Symbol 289 Graphic | Used by:290 | |
Symbol 290 MovieClip | Uses:289 | Used by:291 |
Symbol 291 MovieClip | Uses:286 288 290 | Used by:Timeline |
Symbol 292 Graphic | Used by:293 | |
Symbol 293 MovieClip | Uses:292 | Used by:Timeline |
Symbol 294 Graphic | Used by:295 | |
Symbol 295 MovieClip | Uses:294 | Used by:Timeline |
Symbol 296 Graphic | Used by:297 | |
Symbol 297 MovieClip | Uses:296 | Used by:329 |
Symbol 298 Font | Used by:299 300 301 302 303 304 305 306 307 308 309 310 311 312 315 316 317 318 319 320 321 322 324 326 327 328 | |
Symbol 299 Text | Uses:298 | Used by:329 |
Symbol 300 Text | Uses:298 | Used by:329 |
Symbol 301 Text | Uses:298 | Used by:329 |
Symbol 302 Text | Uses:298 | Used by:329 |
Symbol 303 Text | Uses:298 | Used by:329 |
Symbol 304 Text | Uses:298 | Used by:329 |
Symbol 305 Text | Uses:298 | Used by:329 |
Symbol 306 Text | Uses:298 | Used by:329 |
Symbol 307 Text | Uses:298 | Used by:329 |
Symbol 308 Text | Uses:298 | Used by:329 |
Symbol 309 Text | Uses:298 | Used by:329 |
Symbol 310 Text | Uses:298 | Used by:329 |
Symbol 311 Text | Uses:298 | Used by:329 |
Symbol 312 Text | Uses:298 | Used by:329 |
Symbol 313 Graphic | Used by:314 | |
Symbol 314 MovieClip | Uses:313 | Used by:329 |
Symbol 315 Text | Uses:298 | Used by:329 |
Symbol 316 Text | Uses:298 | Used by:329 |
Symbol 317 Text | Uses:298 | Used by:329 |
Symbol 318 Text | Uses:298 | Used by:329 |
Symbol 319 Text | Uses:298 | Used by:329 |
Symbol 320 Text | Uses:298 | Used by:329 |
Symbol 321 Text | Uses:298 | Used by:329 |
Symbol 322 Text | Uses:298 | Used by:329 |
Symbol 323 Graphic | Used by:325 | |
Symbol 324 Text | Uses:298 | Used by:325 |
Symbol 325 MovieClip | Uses:323 324 | Used by:329 |
Symbol 326 Text | Uses:298 | Used by:329 |
Symbol 327 Text | Uses:298 | Used by:329 |
Symbol 328 Text | Uses:298 | Used by:329 |
Symbol 329 MovieClip {strip_darts_fla.meanComments_142} | Uses:297 299 300 301 302 303 304 305 306 307 308 309 310 311 312 314 315 316 317 318 319 320 321 322 325 326 327 328 | Used by:Timeline |
Symbol 330 EditableText | Uses:283 | Used by:Timeline |
Symbol 331 Text | Uses:283 | Used by:Timeline |
Symbol 332 Text | Uses:283 | Used by:Timeline |
Symbol 333 EditableText | Uses:283 | Used by:Timeline |
Symbol 334 Graphic | Used by:344 | |
Symbol 335 Graphic | Used by:336 | |
Symbol 336 MovieClip | Uses:335 | Used by:344 |
Symbol 337 ShapeTweening | Used by:340 | |
Symbol 338 Graphic | Used by:340 | |
Symbol 339 Graphic | Used by:340 | |
Symbol 340 MovieClip {strip_darts_fla.volumebars_148} | Uses:337 338 339 | Used by:344 |
Symbol 341 Graphic | Used by:342 | |
Symbol 342 MovieClip | Uses:341 | Used by:344 |
Symbol 343 Graphic | Used by:344 | |
Symbol 344 MovieClip {strip_darts_fla.volume_meter_146} | Uses:334 336 340 342 343 | Used by:Timeline |
Symbol 345 Graphic | Used by:346 | |
Symbol 346 MovieClip | Uses:345 | Used by:367 |
Symbol 347 Graphic | Used by:353 | |
Symbol 348 Graphic | Used by:349 | |
Symbol 349 MovieClip | Uses:348 | Used by:352 |
Symbol 350 Graphic | Used by:351 | |
Symbol 351 MovieClip | Uses:350 | Used by:352 |
Symbol 352 MovieClip | Uses:349 351 | Used by:353 |
Symbol 353 MovieClip {strip_darts_fla.darr_152} | Uses:347 352 | Used by:367 |
Symbol 354 Graphic | Used by:355 | |
Symbol 355 MovieClip | Uses:354 | Used by:367 |
Symbol 356 Graphic | Used by:360 | |
Symbol 357 Text | Uses:283 | Used by:360 |
Symbol 358 Text | Uses:283 | Used by:360 |
Symbol 359 Graphic | Used by:360 | |
Symbol 360 MovieClip | Uses:356 357 358 359 | Used by:367 |
Symbol 361 Graphic | Used by:366 | |
Symbol 362 Text | Uses:283 | Used by:366 |
Symbol 363 Graphic | Used by:364 | |
Symbol 364 MovieClip | Uses:363 | Used by:365 |
Symbol 365 MovieClip | Uses:364 | Used by:366 |
Symbol 366 MovieClip | Uses:361 362 365 | Used by:367 |
Symbol 367 MovieClip {strip_darts_fla.circling_animation__150} | Uses:346 353 355 360 366 | Used by:Timeline |
Symbol 368 Graphic | Used by:369 | |
Symbol 369 MovieClip | Uses:368 | Used by:370 |
Symbol 370 MovieClip | Uses:369 | Used by:371 |
Symbol 371 MovieClip {strip_darts_fla.strip_arcade_logo_161} | Uses:15 370 250 | Used by:Timeline |
Instance Names
"clouds" | Frame 54 | Symbol 25 MovieClip |
"rednecca" | Frame 54 | Symbol 272 MovieClip {strip_darts_fla.rednecca_strip_symbols_32} |
"toHit" | Frame 54 | Symbol 280 EditableText |
"mean_comments" | Frame 54 | Symbol 329 MovieClip {strip_darts_fla.meanComments_142} |
"yourHit" | Frame 54 | Symbol 330 EditableText |
"miss_count" | Frame 54 | Symbol 333 EditableText |
"volume_meter" | Frame 54 | Symbol 344 MovieClip {strip_darts_fla.volume_meter_146} |
"dart_stuff" | Frame 54 | Symbol 367 MovieClip {strip_darts_fla.circling_animation__150} |
"logo_button" | Frame 54 | Symbol 371 MovieClip {strip_darts_fla.strip_arcade_logo_161} |
"star1" | Symbol 155 MovieClip {strip_darts_fla.boobs_with_bikini_57} Frame 1 | Symbol 148 MovieClip |
"star2" | Symbol 155 MovieClip {strip_darts_fla.boobs_with_bikini_57} Frame 1 | Symbol 150 MovieClip |
"boob_half1" | Symbol 155 MovieClip {strip_darts_fla.boobs_with_bikini_57} Frame 1 | Symbol 152 MovieClip {strip_darts_fla.bikini_half1_67} |
"boob_half2" | Symbol 155 MovieClip {strip_darts_fla.boobs_with_bikini_57} Frame 1 | Symbol 154 MovieClip |
"beer_hat2" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 94 MovieClip |
"boot2" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 108 MovieClip |
"boot1" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 116 MovieClip |
"belly" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 128 MovieClip |
"hair2" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 131 MovieClip |
"boobs" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 155 MovieClip {strip_darts_fla.boobs_with_bikini_57} |
"head" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 179 MovieClip |
"hair" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 186 MovieClip |
"bottoms" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 195 MovieClip |
"shorts" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 197 MovieClip |
"beer_hat" | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} Frame 1 | Symbol 204 MovieClip |
"hair2" | Symbol 237 MovieClip {strip_darts_fla.top_half_behind_104} Frame 1 | Symbol 227 MovieClip |
"belly" | Symbol 237 MovieClip {strip_darts_fla.top_half_behind_104} Frame 1 | Symbol 231 MovieClip |
"hair" | Symbol 237 MovieClip {strip_darts_fla.top_half_behind_104} Frame 1 | Symbol 233 MovieClip |
"hair" | Symbol 257 MovieClip {strip_darts_fla.ssdkfjlsdfjls_123} Frame 1 | Symbol 256 MovieClip |
"belly" | Symbol 270 MovieClip {strip_darts_fla.bent_over_breathingg_120} Frame 1 | Symbol 254 MovieClip |
"hair2" | Symbol 270 MovieClip {strip_darts_fla.bent_over_breathingg_120} Frame 1 | Symbol 131 MovieClip |
"head" | Symbol 270 MovieClip {strip_darts_fla.bent_over_breathingg_120} Frame 1 | Symbol 179 MovieClip |
"rednecca" | Symbol 272 MovieClip {strip_darts_fla.rednecca_strip_symbols_32} Frame 1 | Symbol 212 MovieClip {strip_darts_fla.rednecca_stripPose1_33} |
"boundsRectangle" | Symbol 344 MovieClip {strip_darts_fla.volume_meter_146} Frame 1 | Symbol 336 MovieClip |
"volume_bar" | Symbol 344 MovieClip {strip_darts_fla.volume_meter_146} Frame 1 | Symbol 340 MovieClip {strip_darts_fla.volumebars_148} |
"vol_slider" | Symbol 344 MovieClip {strip_darts_fla.volume_meter_146} Frame 1 | Symbol 342 MovieClip |
"circle" | Symbol 367 MovieClip {strip_darts_fla.circling_animation__150} Frame 1 | Symbol 346 MovieClip |
"dart" | Symbol 367 MovieClip {strip_darts_fla.circling_animation__150} Frame 1 | Symbol 353 MovieClip {strip_darts_fla.darr_152} |
"dart_blur" | Symbol 367 MovieClip {strip_darts_fla.circling_animation__150} Frame 1 | Symbol 355 MovieClip |
"notes" | Symbol 367 MovieClip {strip_darts_fla.circling_animation__150} Frame 1 | Symbol 360 MovieClip |
"notes2" | Symbol 367 MovieClip {strip_darts_fla.circling_animation__150} Frame 1 | Symbol 366 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS3. |
Protect (24) | Timeline Frame 1 | 0 bytes "" |
Labels
"loop" | Symbol 272 MovieClip {strip_darts_fla.rednecca_strip_symbols_32} Frame 87 |
"shoot" | Symbol 353 MovieClip {strip_darts_fla.darr_152} Frame 2 |
|