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

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

The Golf Song.swf

This is the info page for
Flash #77116

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


Text
LOADING...

.

G

N

I

D

A

O

Play

Play

In

Out

To the
Golf Cave

Gonna go out and play some golf

Yeah! Yeah!

Forged Technetium
Q-Hybrid HyperIron

My golf bag's full of the latest stuff

Cold Pressed Latinum
Stereophonic Driver

Laser-Guided
Tartrazine Core Balls

Internet Enabled
WiFi Tees

Beer
(brewed Tuesday)

I'm gonna go out and play some golf

My putter alone was a thousand bucks

I'm gonna go out

and suck at golf

Think I better take a mulligan

I think I better take a mulligan

I put my ball in the pond again

I tee it up, take a swing and then

WATER

SPLASH!

Can I get another mulligan?

Get up!

Get up!

Get down!

Get down!

Hurray!

Hurray!

Slow down!

Slow down!

Don't hit the tree!

Don't hit the tree!

Please hit the tree!

There must be something wrong

with my putter

All my friends hit it farther than me

Yeah!

I just hope I clear the ladies' tee

Yards

150

300

Everybody hits it farther than me

200

400

Just eight more strokes

and I reach the par three

That kid just hit it farther than me

Slow down ball!

Slow down! down! down!

PLEASE HIT THE TREE!

I took the day off for this?!?

Never be as good at Tiger Woods

No! No!

Never be as good as Tiger Woods

My ball's always going off

into the woods

I'm hooking my irons

and I'm pulling my woods

WHAT?!?

Get up!

Get up!

Get up!

Get up!

Get Down!

Get Down!

Hurray!

Hurray!

Hurray!

Hurray!

Hurray!

Hurray!

Hurray!

Slow Down!

SLOW DOWN !!!

Don't hit the tree!

Don't hit the tree!

HIT THE TREE!!!

HIT THE TREE!!!

I really hate this stupid game!

The Golf Song

Dedicated to: Doug Poapst
"Birth, Death, and in-between there's Golf"

Music: The Arrogant Worms
"The Golf Song" - used with permission

Music: The Arrogant Worms
"The Golf Song"

Animation: Stephen Sutherland

Replay

Replay

ActionScript [AS1/AS2]

Frame 1
this.PlayButton.enabled = false; PlayButton.onRelease = function () { gotoAndPlay ("StartMovie"); }; ReplayButton.onRelease = function () { gotoAndPlay ("StartMovie"); }; AWButton.onRelease = function () { getURL ("http://www.arrogant-worms.com/", "_blank"); };
Frame 2
function onPreloaderOut() { preloader_mc.removeEventListener("onPreloaderOut", this); gotoAndPlay ("SITE"); } stop(); preloader_mc.addEventListener("onPreloaderOut", this); preloader_mc.startPreload(this);
Frame 28
this.PlayButton.enabled = true; this.ReplayButton.enabled = true; stop();
Frame 1391
ReplayButton.onRelease = function () { gotoAndPlay ("StartMovie"); }; AWButton.onRelease = function () { getURL ("http://www.arrogant-worms.com/", "_blank"); }; SSButton.onRelease = function () { getURL ("http://www.members.shaw.ca/stephen.sutherland/", "_blank"); }; stop();
Symbol 19 MovieClip [preloader_mc] Frame 1
#initclip 3 Object.registerClass("preloader_mc", Preloader); #endinitclip stop();
Symbol 19 MovieClip [preloader_mc] Frame 3
onAnimateIn();
Symbol 19 MovieClip [preloader_mc] Frame 4
onAnimateOut();
Symbol 244 MovieClip [__Packages.Preloader] Frame 0
class Preloader extends MovieClip { var target_mc, gotoAndPlay, stop, onEnterFrame, progress_mc, pct_str, dispatchEvent; function Preloader () { super(); mx.events.EventDispatcher.initialize(this); } function startPreload(t) { target_mc = t; gotoAndPlay("IN"); } function onAnimateIn() { stop(); onEnterFrame = checkLoadProgress; } function checkLoadProgress() { var _local5 = target_mc.getBytesLoaded(); var _local4 = target_mc.getBytesTotal(); var _local6 = _local5 / _local4; var _local3 = progress_mc._currentframe; var _local2 = progress_mc._totalframes; var _local7 = Math.ceil(_local2 * _local6); if (_local7 > _local3) { progress_mc.play(); } else { progress_mc.stop(); } pct_str = Math.round((_local3 / _local2) * 100).toString(); if ((((_local4 > 20) && (_local5 == _local4)) && (_local3 == _local2)) && (progress_mc)) { onPreloadComplete(); } } function onPreloadComplete() { onEnterFrame = null; gotoAndPlay("OUT"); } function onAnimateOut() { stop(); dispatchEvent({target:this, type:"onPreloaderOut"}); } }
Symbol 245 MovieClip [__Packages.mx.events.EventDispatcher] Frame 0
class mx.events.EventDispatcher { function EventDispatcher () { } static function _removeEventListener(queue, event, handler) { if (queue != undefined) { var _local4 = queue.length; var _local1; _local1 = 0; while (_local1 < _local4) { var _local2 = queue[_local1]; if (_local2 == handler) { queue.splice(_local1, 1); return(undefined); } _local1++; } } } static function initialize(object) { if (_fEventDispatcher == undefined) { _fEventDispatcher = new mx.events.EventDispatcher(); } object.addEventListener = _fEventDispatcher.addEventListener; object.removeEventListener = _fEventDispatcher.removeEventListener; object.dispatchEvent = _fEventDispatcher.dispatchEvent; object.dispatchQueue = _fEventDispatcher.dispatchQueue; } function dispatchQueue(queueObj, eventObj) { var _local7 = "__q_" + eventObj.type; var _local4 = queueObj[_local7]; if (_local4 != undefined) { var _local5; for (_local5 in _local4) { var _local1 = _local4[_local5]; var _local3 = typeof(_local1); if ((_local3 == "object") || (_local3 == "movieclip")) { if (_local1.handleEvent != undefined) { _local1.handleEvent(eventObj); } if (_local1[eventObj.type] != undefined) { if (exceptions[eventObj.type] == undefined) { _local1[eventObj.type](eventObj); } } } else { _local1.apply(queueObj, [eventObj]); } } } } function dispatchEvent(eventObj) { if (eventObj.target == undefined) { eventObj.target = this; } this[eventObj.type + "Handler"](eventObj); dispatchQueue(this, eventObj); } function addEventListener(event, handler) { var _local3 = "__q_" + event; if (this[_local3] == undefined) { this[_local3] = new Array(); } _global.ASSetPropFlags(this, _local3, 1); _removeEventListener(this[_local3], event, handler); this[_local3].push(handler); } function removeEventListener(event, handler) { var _local2 = "__q_" + event; _removeEventListener(this[_local2], event, handler); } static var _fEventDispatcher = undefined; static var exceptions = {move:1, draw:1}; }

Library Items

Symbol 1 GraphicUsed by:236 238  Timeline
Symbol 2 GraphicUsed by:16  Timeline
Symbol 3 FontUsed by:4 9 10 11 12 13 14 15 59 111 154 157 161 164 233 234 235 237 240 241
Symbol 4 TextUses:3Used by:16
Symbol 5 GraphicUsed by:16  Timeline
Symbol 6 GraphicUsed by:16  Timeline
Symbol 7 GraphicUsed by:16  Timeline
Symbol 8 GraphicUsed by:16  Timeline
Symbol 9 TextUses:3Used by:16
Symbol 10 TextUses:3Used by:16
Symbol 11 TextUses:3Used by:16
Symbol 12 TextUses:3Used by:16
Symbol 13 TextUses:3Used by:16
Symbol 14 TextUses:3Used by:16
Symbol 15 TextUses:3Used by:16
Symbol 16 MovieClipUses:2 4 5 6 7 8 9 10 11 12 13 14 15Used by:19
Symbol 17 FontUsed by:18 70 73 79 88 95 101 102 104 105 108 109 116 120 126 128 130 134 140 141 143 145 146 150 158 165 166 170 171 172 173 174 177 188 191 195 196 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 230
Symbol 18 EditableTextUses:17Used by:19
Symbol 19 MovieClip [preloader_mc]Uses:16 18Used by:Timeline
Symbol 20 GraphicUsed by:25  Timeline
Symbol 21 GraphicUsed by:25  Timeline
Symbol 22 FontUsed by:23 24 43 44 153 228 232 234 235 237
Symbol 23 TextUses:22Used by:25
Symbol 24 TextUses:22Used by:25
Symbol 25 ButtonUses:20 21 23 24Used by:Timeline
Symbol 244 MovieClip [__Packages.Preloader]
Symbol 245 MovieClip [__Packages.mx.events.EventDispatcher]
Symbol 26 GraphicUsed by:Timeline
Symbol 27 GraphicUsed by:Timeline
Symbol 28 GraphicUsed by:Timeline
Symbol 29 GraphicUsed by:Timeline
Symbol 30 BitmapUsed by:31
Symbol 31 GraphicUses:30Used by:Timeline
Symbol 32 GraphicUsed by:Timeline
Symbol 33 GraphicUsed by:Timeline
Symbol 34 GraphicUsed by:Timeline
Symbol 35 GraphicUsed by:Timeline
Symbol 36 GraphicUsed by:Timeline
Symbol 37 GraphicUsed by:Timeline
Symbol 38 GraphicUsed by:Timeline
Symbol 39 GraphicUsed by:Timeline
Symbol 40 GraphicUsed by:Timeline
Symbol 41 GraphicUsed by:Timeline
Symbol 42 GraphicUsed by:Timeline
Symbol 43 EditableTextUses:22Used by:Timeline
Symbol 44 EditableTextUses:22Used by:Timeline
Symbol 45 GraphicUsed by:Timeline
Symbol 46 GraphicUsed by:Timeline
Symbol 47 GraphicUsed by:Timeline
Symbol 48 GraphicUsed by:Timeline
Symbol 49 GraphicUsed by:Timeline
Symbol 50 GraphicUsed by:Timeline
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:Timeline
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:Timeline
Symbol 55 GraphicUsed by:Timeline
Symbol 56 GraphicUsed by:Timeline
Symbol 57 GraphicUsed by:Timeline
Symbol 58 GraphicUsed by:Timeline
Symbol 59 EditableTextUses:3Used by:Timeline
Symbol 60 GraphicUsed by:Timeline
Symbol 61 GraphicUsed by:Timeline
Symbol 62 GraphicUsed by:Timeline
Symbol 63 GraphicUsed by:Timeline
Symbol 64 GraphicUsed by:Timeline
Symbol 65 GraphicUsed by:Timeline
Symbol 66 GraphicUsed by:Timeline
Symbol 67 GraphicUsed by:Timeline
Symbol 68 GraphicUsed by:Timeline
Symbol 69 GraphicUsed by:Timeline
Symbol 70 TextUses:17Used by:Timeline
Symbol 71 GraphicUsed by:Timeline
Symbol 72 GraphicUsed by:Timeline
Symbol 73 TextUses:17Used by:Timeline
Symbol 74 GraphicUsed by:Timeline
Symbol 75 GraphicUsed by:Timeline
Symbol 76 GraphicUsed by:Timeline
Symbol 77 FontUsed by:78 81 82 83 85
Symbol 78 EditableTextUses:77Used by:Timeline
Symbol 79 TextUses:17Used by:Timeline
Symbol 80 GraphicUsed by:Timeline
Symbol 81 EditableTextUses:77Used by:Timeline
Symbol 82 EditableTextUses:77Used by:Timeline
Symbol 83 EditableTextUses:77Used by:Timeline
Symbol 84 GraphicUsed by:Timeline
Symbol 85 EditableTextUses:77Used by:Timeline
Symbol 86 GraphicUsed by:Timeline
Symbol 87 GraphicUsed by:Timeline
Symbol 88 TextUses:17Used by:Timeline
Symbol 89 GraphicUsed by:Timeline
Symbol 90 GraphicUsed by:Timeline
Symbol 91 GraphicUsed by:Timeline
Symbol 92 GraphicUsed by:Timeline
Symbol 93 GraphicUsed by:Timeline
Symbol 94 GraphicUsed by:Timeline
Symbol 95 TextUses:17Used by:Timeline
Symbol 96 GraphicUsed by:Timeline
Symbol 97 GraphicUsed by:Timeline
Symbol 98 GraphicUsed by:Timeline
Symbol 99 GraphicUsed by:Timeline
Symbol 100 GraphicUsed by:Timeline
Symbol 101 TextUses:17Used by:Timeline
Symbol 102 TextUses:17Used by:Timeline
Symbol 103 GraphicUsed by:Timeline
Symbol 104 TextUses:17Used by:Timeline
Symbol 105 TextUses:17Used by:Timeline
Symbol 106 GraphicUsed by:Timeline
Symbol 107 GraphicUsed by:Timeline
Symbol 108 TextUses:17Used by:Timeline
Symbol 109 TextUses:17Used by:Timeline
Symbol 110 GraphicUsed by:Timeline
Symbol 111 EditableTextUses:3Used by:Timeline
Symbol 112 GraphicUsed by:Timeline
Symbol 113 FontUsed by:114
Symbol 114 TextUses:113Used by:Timeline
Symbol 115 GraphicUsed by:Timeline
Symbol 116 TextUses:17Used by:Timeline
Symbol 117 GraphicUsed by:Timeline
Symbol 118 GraphicUsed by:Timeline
Symbol 119 GraphicUsed by:Timeline
Symbol 120 TextUses:17Used by:Timeline
Symbol 121 GraphicUsed by:Timeline
Symbol 122 GraphicUsed by:Timeline
Symbol 123 FontUsed by:124 127 129 131 139
Symbol 124 TextUses:123Used by:Timeline
Symbol 125 GraphicUsed by:Timeline
Symbol 126 TextUses:17Used by:Timeline
Symbol 127 TextUses:123Used by:Timeline
Symbol 128 TextUses:17Used by:Timeline
Symbol 129 TextUses:123Used by:Timeline
Symbol 130 TextUses:17Used by:Timeline
Symbol 131 TextUses:123Used by:Timeline
Symbol 132 GraphicUsed by:Timeline
Symbol 133 GraphicUsed by:Timeline
Symbol 134 TextUses:17Used by:Timeline
Symbol 135 GraphicUsed by:Timeline
Symbol 136 GraphicUsed by:Timeline
Symbol 137 GraphicUsed by:Timeline
Symbol 138 GraphicUsed by:Timeline
Symbol 139 TextUses:123Used by:Timeline
Symbol 140 TextUses:17Used by:Timeline
Symbol 141 TextUses:17Used by:Timeline
Symbol 142 ShapeTweeningUsed by:Timeline
Symbol 143 TextUses:17Used by:Timeline
Symbol 144 GraphicUsed by:Timeline
Symbol 145 TextUses:17Used by:Timeline
Symbol 146 TextUses:17Used by:Timeline
Symbol 147 GraphicUsed by:Timeline
Symbol 148 GraphicUsed by:Timeline
Symbol 149 GraphicUsed by:Timeline
Symbol 150 TextUses:17Used by:Timeline
Symbol 151 GraphicUsed by:Timeline
Symbol 152 GraphicUsed by:Timeline
Symbol 153 TextUses:22Used by:Timeline
Symbol 154 TextUses:3Used by:Timeline
Symbol 155 BitmapUsed by:156
Symbol 156 GraphicUses:155Used by:Timeline
Symbol 157 TextUses:3Used by:Timeline
Symbol 158 TextUses:17Used by:Timeline
Symbol 159 BitmapUsed by:160
Symbol 160 GraphicUses:159Used by:Timeline
Symbol 161 TextUses:3Used by:Timeline
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:Timeline
Symbol 164 TextUses:3Used by:Timeline
Symbol 165 TextUses:17Used by:Timeline
Symbol 166 TextUses:17Used by:Timeline
Symbol 167 GraphicUsed by:Timeline
Symbol 168 GraphicUsed by:Timeline
Symbol 169 GraphicUsed by:Timeline
Symbol 170 TextUses:17Used by:Timeline
Symbol 171 TextUses:17Used by:Timeline
Symbol 172 TextUses:17Used by:Timeline
Symbol 173 TextUses:17Used by:Timeline
Symbol 174 TextUses:17Used by:Timeline
Symbol 175 BitmapUsed by:176
Symbol 176 GraphicUses:175Used by:Timeline
Symbol 177 TextUses:17Used by:Timeline
Symbol 178 BitmapUsed by:179
Symbol 179 GraphicUses:178Used by:Timeline
Symbol 180 BitmapUsed by:181
Symbol 181 GraphicUses:180Used by:Timeline
Symbol 182 BitmapUsed by:183
Symbol 183 GraphicUses:182Used by:Timeline
Symbol 184 BitmapUsed by:185
Symbol 185 GraphicUses:184Used by:Timeline
Symbol 186 BitmapUsed by:187
Symbol 187 GraphicUses:186Used by:Timeline
Symbol 188 TextUses:17Used by:Timeline
Symbol 189 BitmapUsed by:190
Symbol 190 GraphicUses:189Used by:Timeline
Symbol 191 TextUses:17Used by:Timeline
Symbol 192 GraphicUsed by:Timeline
Symbol 193 GraphicUsed by:Timeline
Symbol 194 GraphicUsed by:Timeline
Symbol 195 TextUses:17Used by:Timeline
Symbol 196 TextUses:17Used by:Timeline
Symbol 197 GraphicUsed by:Timeline
Symbol 198 GraphicUsed by:Timeline
Symbol 199 GraphicUsed by:Timeline
Symbol 200 GraphicUsed by:Timeline
Symbol 201 GraphicUsed by:Timeline
Symbol 202 GraphicUsed by:Timeline
Symbol 203 GraphicUsed by:Timeline
Symbol 204 GraphicUsed by:Timeline
Symbol 205 TextUses:17Used by:Timeline
Symbol 206 TextUses:17Used by:Timeline
Symbol 207 TextUses:17Used by:Timeline
Symbol 208 TextUses:17Used by:Timeline
Symbol 209 TextUses:17Used by:Timeline
Symbol 210 TextUses:17Used by:Timeline
Symbol 211 TextUses:17Used by:Timeline
Symbol 212 TextUses:17Used by:Timeline
Symbol 213 TextUses:17Used by:Timeline
Symbol 214 TextUses:17Used by:Timeline
Symbol 215 TextUses:17Used by:Timeline
Symbol 216 TextUses:17Used by:Timeline
Symbol 217 TextUses:17Used by:Timeline
Symbol 218 TextUses:17Used by:Timeline
Symbol 219 TextUses:17Used by:Timeline
Symbol 220 TextUses:17Used by:Timeline
Symbol 221 TextUses:17Used by:Timeline
Symbol 222 TextUses:17Used by:Timeline
Symbol 223 TextUses:17Used by:Timeline
Symbol 224 TextUses:17Used by:Timeline
Symbol 225 TextUses:17Used by:Timeline
Symbol 226 GraphicUsed by:Timeline
Symbol 227 GraphicUsed by:Timeline
Symbol 228 TextUses:22Used by:Timeline
Symbol 229 GraphicUsed by:Timeline
Symbol 230 TextUses:17Used by:Timeline
Symbol 231 GraphicUsed by:Timeline
Symbol 232 TextUses:22Used by:Timeline
Symbol 233 TextUses:3Used by:Timeline
Symbol 234 TextUses:3 22Used by:236
Symbol 235 TextUses:3 22Used by:236
Symbol 236 ButtonUses:1 234 235Used by:Timeline
Symbol 237 TextUses:3 22Used by:238
Symbol 238 ButtonUses:1 237Used by:Timeline
Symbol 239 GraphicUsed by:243
Symbol 240 TextUses:3Used by:243
Symbol 241 TextUses:3Used by:243
Symbol 242 GraphicUsed by:243
Symbol 243 ButtonUses:239 240 241 242Used by:Timeline
Streaming Sound 1Used by:Timeline

Instance Names

"preloader_mc"Frame 1Symbol 19 MovieClip [preloader_mc]
"PlayButton"Frame 1Symbol 25 Button
"AWButton"Frame 1391Symbol 236 Button
"SSButton"Frame 1391Symbol 238 Button
"ReplayButton"Frame 1391Symbol 243 Button
"progress_mc"Symbol 19 MovieClip [preloader_mc] Frame 3Symbol 16 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 19 as "preloader_mc"
ExportAssets (56)Timeline Frame 1Symbol 244 as "__Packages.Preloader"
ExportAssets (56)Timeline Frame 1Symbol 245 as "__Packages.mx.events.EventDispatcher"
ExportAssets (56)Timeline Frame 2Symbol 19 as "preloader_mc"

Labels

"SITE"Frame 3
"RESTART"Frame 28
"StartMovie"Frame 37
"IN"Symbol 19 MovieClip [preloader_mc] Frame 2
"OUT"Symbol 19 MovieClip [preloader_mc] Frame 4

Dynamic Text Variables

pct_strSymbol 18 EditableText""




http://swfchan.com/16/77116/info.shtml
Created: 4/4 -2019 05:13:23 Last modified: 4/4 -2019 05:13:23 Server time: 13/05 -2024 15:36:49