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

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

Shooting Gallery.swf

This is the info page for
Flash #46793

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


Text
Presents

Play

Instructions

More Games

High Scores

The purpose of this game is to aim accurately
and shoot as many of the targets and gain as
many points as possible. Points are here as follows:

10pts

15pts

20pts

40pts

+10 ammo

+35 time

Back

Ammo:

Time:

Score:

Game Over

OK

Your Score:

Your Name here:

Enter name here

Player

Score

Ok

ActionScript [AS1/AS2]

Frame 1
i = "1"; alpha = "0.9"; maxlight = "10"; while (Number(i) <= Number(maxlight)) { duplicateMovieClip ("ray0", "ray" add i, 800 - i); setProperty("/ray" add i, _xscale , getProperty("/ray" add (i - 1), _xscale) + (i * alpha)); setProperty("/ray" add i, _yscale , getProperty("/ray" add (i - 1), _yscale) + (i * alpha)); setProperty("/ray" add i, _alpha , 10 - (i * 0.01)); i = Number(i) + 1; } setProperty("ray0", _visible , "0"); stop(); stop();
Frame 5
stop();
Frame 10
gotoAndPlay (12);
Frame 11
stop(); ammo = 100; time = 250; score = 0; _root.bigcan._visible = false; _root.happyface._visible = false; _root.glass._visible = false; _root.bottle._visible = false; _root.line1._visible = false; _root.line2._visible = false; _root.line3._visible = false; _root.line4._visible = false; duplicateMovieClip ("line1", line11, 1000); duplicateMovieClip ("line2", line12, 1001); duplicateMovieClip ("line3", line13, 1003); duplicateMovieClip ("line4", line14, 1004); _root.line11._visible = true; _root.line12._visible = true; _root.line13._visible = true; _root.line14._visible = true; _root.ammobox1._visible = true; _root.timebox1._visible = true; smallspacer = 30; bottleSpacer = 40; facespacer = 30; glasslim = 20; y = 11; while (y < 23) { newface = "happyface" + y; duplicateMovieClip ("happyface", newface, y + 1); _root[newface]._visible = true; _root[newface]._y = 170; _root[newface]._x = (_root[newface]._width + facespacer) * (y - 10); y++; } x = 1; while (x < 10) { newName = "bigcan" + x; duplicateMovieClip ("bigcan", newName, x + 1); _root[newName]._visible = true; _root[newName]._y = 100; _root[newName]._x = (_root[newName]._width + bottleSpacer) * x; x++; } z = 24; while (z < 49) { newglass = "glass" + z; duplicateMovieClip ("glass", newglass, z + 1); _root[newglass]._visible = true; _root[newglass]._y = 220; _root[newglass]._x = (_root[newglass]._width + glasslim) * (z - 22); z++; } n = 50; while (n < 64) { newbottle = "bottle" + n; duplicateMovieClip ("bottle", newbottle, n + 1); _root[newbottle]._visible = true; _root[newbottle]._y = 290; _root[newbottle]._x = (_root[newbottle]._width + smallspacer) * (n - 45); n++; }
Instance of Symbol 35 MovieClip "bottle" in Frame 11
onClipEvent (load) { function reset() { this._y = 290; this._x = 570; dead = 0; } dead = 0; } onClipEvent (mouseDown) { if (this.hitTest(_root.aimer) && (this.dead == 0)) { if (this._name != "bottle") { _root.score = _root.score + 40; breaksound = new Sound(this); breaksound.attachSound("slash"); breaksound.start(0, 1); this.dead = 1; } } } onClipEvent (enterFrame) { if (this.dead == 1) { this.gotoAndPlay(2); } else { this.gotoAndPlay(1); } this._x = this._x - 15; this.widthreset = 9 * (this._width - 15); if (this._x < widthreset) { reset(); } if ((_root.time < 0) || (_root.ammo < 0)) { this.removeMovieClip(); } }
Instance of Symbol 30 MovieClip "happyface" in Frame 11
onClipEvent (load) { function reset() { this._y = 170; this._x = 570; dead = 0; } dead = 0; } onClipEvent (mouseDown) { if (this.hitTest(_root.aimer) && (this.dead == 0)) { if (this._name != "happyface") { _root.score = _root.score + 15; breaksound = new Sound(this); breaksound.attachSound("slash"); breaksound.start(0, 1); this.dead = 1; } } } onClipEvent (enterFrame) { if (this.dead == 1) { this.gotoAndPlay(2); } else { this.gotoAndPlay(1); } this._x = this._x - 15; this.widthreset = 9 * (this._width - 30); if (this._x < widthreset) { reset(); } if ((_root.time < 0) || (_root.ammo < 0)) { this.removeMovieClip(); } }
Instance of Symbol 39 MovieClip "ammobox" in Frame 11
onClipEvent (load) { function reset() { blah = 0; this._x = random(500) + 20; this._y = -30; speed = random(15) + 12; } blah = 0; reset(); } onClipEvent (mouseDown) { if (this.hitTest(_root.aimer) && (this.blah == 0)) { _root.ammo = _root.ammo + 10; this.blah = 1; beep = new Sound(this); beep.attachSound("buttonbeep"); beep.start(0, 1); } } onClipEvent (enterFrame) { if (this.blah == 1) { this.gotoAndPlay(2); } else { this.gotoAndPlay(1); } this._y = this._y + speed; if (this._y > 450) { reset(); } if ((_root.time < 0) || (_root.ammo < 0)) { this.removeMovieClip(); } }
Instance of Symbol 43 MovieClip "timebox" in Frame 11
onClipEvent (load) { function reset() { blah = 0; this._x = random(500) + 20; this._y = -30; speed = random(15) + 12; } blah = 0; reset(); } onClipEvent (mouseDown) { if (this.hitTest(_root.aimer) && (this.blah == 0)) { _root.time = _root.time + 35; this.blah = 1; beep = new Sound(this); beep.attachSound("buttonbeep"); beep.start(0, 1); } } onClipEvent (enterFrame) { if (this.blah == 1) { this.gotoAndPlay(2); } else { this.gotoAndPlay(1); } this._y = this._y + speed; if (this._y > 450) { reset(); } if ((_root.time < 0) || (_root.ammo < 0)) { this.removeMovieClip(); } }
Instance of Symbol 26 MovieClip "bigcan" in Frame 11
onClipEvent (load) { function reset() { this._y = 100; this._x = -20; this.dead = 0; } dead = 0; } onClipEvent (mouseDown) { if (this.hitTest(_root.aimer) && (this.dead == 0)) { if (this._name != "bigcan") { _root.score = _root.score + 10; breaksound = new Sound(this); breaksound.attachSound("slash"); breaksound.start(0, 1); this.dead = 1; } } } onClipEvent (enterFrame) { if (this.dead == 1) { this.gotoAndPlay(2); } else { this.gotoAndPlay(1); } this._x = this._x + 10; this.widthreset = 9 * (this._width + 40); if (this._x > widthreset) { reset(); } if ((_root.time < 0) || (_root.ammo < 0)) { this.removeMovieClip(); } }
Instance of Symbol 52 MovieClip "line1" in Frame 11
onClipEvent (load) { this._y = 130; } onClipEvent (enterFrame) { if ((_root.time < 0) || (_root.ammo < 0)) { this.removeMovieClip(); } }
Instance of Symbol 54 MovieClip "line2" in Frame 11
onClipEvent (load) { this._y = 190; } onClipEvent (enterFrame) { if ((_root.time < 0) || (_root.ammo < 0)) { this.removeMovieClip(); } }
Instance of Symbol 56 MovieClip "line3" in Frame 11
onClipEvent (load) { this._y = 240; } onClipEvent (enterFrame) { if ((_root.time < 0) || (_root.ammo < 0)) { this.removeMovieClip(); } }
Instance of Symbol 58 MovieClip "line4" in Frame 11
onClipEvent (load) { this._y = 303; } onClipEvent (enterFrame) { if ((_root.time < 0) || (_root.ammo < 0)) { this.removeMovieClip(); } }
Instance of Symbol 50 MovieClip "glass" in Frame 11
onClipEvent (load) { function reset() { this._y = 220; this._x = -10; this.dead = 0; } dead = 0; } onClipEvent (mouseDown) { if (this.hitTest(_root.aimer) && (this.dead == 0)) { if (this._name != "glass") { _root.score = _root.score + 20; breaksound = new Sound(this); breaksound.attachSound("slash"); breaksound.start(0, 1); this.dead = 1; } } } onClipEvent (enterFrame) { if (this.dead == 1) { this.gotoAndPlay(2); } else { this.gotoAndPlay(1); } this._x = this._x + 17; this.widthreset = 14 * (this._width + 20); if (this._x > widthreset) { reset(); } if ((_root.time < 0) || (_root.ammo < 0)) { this.removeMovieClip(); } }
Instance of Symbol 67 MovieClip "aimer" in Frame 11
onClipEvent (load) { startDrag (this, true); Mouse.hide(); this.swapDepths(100000); msdown = 0; } onClipEvent (mouseDown) { _root.ammo--; shotsound = new Sound(this); shotsound.attachSound("slap"); shotsound.start(0, 1); } onClipEvent (enterFrame) { _root.time--; if ((_root.time < 0) || (_root.ammo < 0)) { _root.gotoAndPlay(10); this.removeMovieClip(); } }
Frame 12
startDrag (_root.aimer); Mouse.show(); stop(); ok.onRelease = function () { gotoAndStop (1); };
Frame 13
loadVariablesNum ("http://www.flashninjaclan.com/games/shootinggallery/scores.php", 0); stop();
Symbol 9 Button
on (release) { gotoAndPlay (11); }
Symbol 12 Button
on (release) { gotoAndPlay (5); }
Symbol 15 Button
on (release) { getURL ("http://www.java-gaming.com", "_blank"); }
Symbol 18 Button
on (release) { gotoAndPlay (13); }
Symbol 22 Button
on (release) { getURL ("http://www.flashninjaclan.com", "_blank"); }
Symbol 26 MovieClip Frame 1
stop();
Symbol 26 MovieClip Frame 2
stop();
Symbol 30 MovieClip Frame 1
stop();
Symbol 30 MovieClip Frame 2
stop();
Symbol 35 MovieClip Frame 1
stop();
Symbol 35 MovieClip Frame 2
stop();
Symbol 39 MovieClip Frame 1
stop();
Symbol 39 MovieClip Frame 2
stop();
Symbol 43 MovieClip Frame 1
stop();
Symbol 43 MovieClip Frame 2
stop();
Symbol 47 Button
on (release) { gotoAndPlay (1); }
Symbol 50 MovieClip Frame 1
stop();
Symbol 50 MovieClip Frame 2
stop();
Symbol 67 MovieClip Frame 1
stop();
Symbol 67 MovieClip Frame 2
stop();
Symbol 72 Button
on (release) { _root.thename = _root.scorename; _root.score = _root.score; loadVariablesNum ("http://www.flashninjaclan.com/games/shootinggallery/newscore.php", 0, "POST"); gotoAndPlay (1); }
Symbol 102 Button
on (release) { gotoAndPlay (1); }

Library Items

Symbol 1 Sound [slash]
Symbol 2 Sound [slap]
Symbol 3 Sound [buttonbeep]
Symbol 4 GraphicUsed by:Timeline
Symbol 5 FontUsed by:6 8 11 14 17 23 27 31 32 36 40 44 46 59 60 61 62 63 64 69 71 73 74 78 79
Symbol 6 TextUses:5Used by:Timeline
Symbol 7 GraphicUsed by:9
Symbol 8 TextUses:5Used by:9
Symbol 9 ButtonUses:7 8Used by:Timeline
Symbol 10 GraphicUsed by:12
Symbol 11 TextUses:5Used by:12
Symbol 12 ButtonUses:10 11Used by:Timeline
Symbol 13 GraphicUsed by:15
Symbol 14 TextUses:5Used by:15
Symbol 15 ButtonUses:13 14Used by:Timeline
Symbol 16 GraphicUsed by:18
Symbol 17 TextUses:5Used by:18
Symbol 18 ButtonUses:16 17Used by:Timeline
Symbol 19 GraphicUsed by:21 22
Symbol 20 GraphicUsed by:21 22
Symbol 21 MovieClipUses:19 20Used by:22
Symbol 22 ButtonUses:21 20 19Used by:Timeline
Symbol 23 TextUses:5Used by:Timeline
Symbol 24 GraphicUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:24 25Used by:Timeline
Symbol 27 TextUses:5Used by:Timeline
Symbol 28 GraphicUsed by:30
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:28 29Used by:Timeline
Symbol 31 TextUses:5Used by:Timeline
Symbol 32 TextUses:5Used by:Timeline
Symbol 33 GraphicUsed by:35
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:33 34Used by:Timeline
Symbol 36 TextUses:5Used by:Timeline
Symbol 37 GraphicUsed by:39
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:37 38Used by:Timeline
Symbol 40 TextUses:5Used by:Timeline
Symbol 41 GraphicUsed by:43
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:41 42Used by:Timeline
Symbol 44 TextUses:5Used by:Timeline
Symbol 45 GraphicUsed by:47
Symbol 46 TextUses:5Used by:47
Symbol 47 ButtonUses:45 46Used by:Timeline
Symbol 48 GraphicUsed by:50
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:48 49Used by:Timeline
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:Timeline
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:Timeline
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:Timeline
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:Timeline
Symbol 59 EditableTextUses:5Used by:Timeline
Symbol 60 EditableTextUses:5Used by:Timeline
Symbol 61 EditableTextUses:5Used by:Timeline
Symbol 62 TextUses:5Used by:Timeline
Symbol 63 TextUses:5Used by:Timeline
Symbol 64 TextUses:5Used by:Timeline
Symbol 65 GraphicUsed by:67
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:65 66Used by:Timeline
Symbol 68 GraphicUsed by:Timeline
Symbol 69 TextUses:5Used by:Timeline
Symbol 70 GraphicUsed by:72
Symbol 71 TextUses:5Used by:72
Symbol 72 ButtonUses:70 71Used by:Timeline
Symbol 73 TextUses:5Used by:Timeline
Symbol 74 EditableTextUses:5Used by:Timeline
Symbol 75 FontUsed by:76 77 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101
Symbol 76 TextUses:75Used by:Timeline
Symbol 77 EditableTextUses:75Used by:Timeline
Symbol 78 TextUses:5Used by:Timeline
Symbol 79 EditableTextUses:5Used by:Timeline
Symbol 80 EditableTextUses:75Used by:Timeline
Symbol 81 EditableTextUses:75Used by:Timeline
Symbol 82 EditableTextUses:75Used by:Timeline
Symbol 83 EditableTextUses:75Used by:Timeline
Symbol 84 EditableTextUses:75Used by:Timeline
Symbol 85 EditableTextUses:75Used by:Timeline
Symbol 86 EditableTextUses:75Used by:Timeline
Symbol 87 EditableTextUses:75Used by:Timeline
Symbol 88 EditableTextUses:75Used by:Timeline
Symbol 89 EditableTextUses:75Used by:Timeline
Symbol 90 EditableTextUses:75Used by:Timeline
Symbol 91 EditableTextUses:75Used by:Timeline
Symbol 92 EditableTextUses:75Used by:Timeline
Symbol 93 EditableTextUses:75Used by:Timeline
Symbol 94 EditableTextUses:75Used by:Timeline
Symbol 95 EditableTextUses:75Used by:Timeline
Symbol 96 EditableTextUses:75Used by:Timeline
Symbol 97 EditableTextUses:75Used by:Timeline
Symbol 98 EditableTextUses:75Used by:Timeline
Symbol 99 EditableTextUses:75Used by:Timeline
Symbol 100 GraphicUsed by:102
Symbol 101 TextUses:75Used by:102
Symbol 102 ButtonUses:100 101Used by:Timeline

Instance Names

"bottle"Frame 11Symbol 35 MovieClip
"happyface"Frame 11Symbol 30 MovieClip
"ammobox"Frame 11Symbol 39 MovieClip
"timebox"Frame 11Symbol 43 MovieClip
"bigcan"Frame 11Symbol 26 MovieClip
"line1"Frame 11Symbol 52 MovieClip
"line2"Frame 11Symbol 54 MovieClip
"line3"Frame 11Symbol 56 MovieClip
"line4"Frame 11Symbol 58 MovieClip
"theammo"Frame 11Symbol 59 EditableText
"glass"Frame 11Symbol 50 MovieClip
"thescore"Frame 11Symbol 60 EditableText
"eltime"Frame 11Symbol 61 EditableText
"aimer"Frame 11Symbol 67 MovieClip
"ok"Frame 12Symbol 72 Button
"thename"Frame 12Symbol 77 EditableText
"players0"Frame 13Symbol 80 EditableText
"scores0"Frame 13Symbol 81 EditableText
"players1"Frame 13Symbol 82 EditableText
"scores1"Frame 13Symbol 83 EditableText
"players2"Frame 13Symbol 84 EditableText
"scores2"Frame 13Symbol 85 EditableText
"players3"Frame 13Symbol 86 EditableText
"scores3"Frame 13Symbol 87 EditableText
"players4"Frame 13Symbol 88 EditableText
"scores4"Frame 13Symbol 89 EditableText
"players5"Frame 13Symbol 90 EditableText
"scores5"Frame 13Symbol 91 EditableText
"players6"Frame 13Symbol 92 EditableText
"scores6"Frame 13Symbol 93 EditableText
"players7"Frame 13Symbol 94 EditableText
"scores7"Frame 13Symbol 95 EditableText
"players8"Frame 13Symbol 96 EditableText
"scores8"Frame 13Symbol 97 EditableText
"players9"Frame 13Symbol 98 EditableText
"scores9"Frame 13Symbol 99 EditableText

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "slash"
ExportAssets (56)Timeline Frame 1Symbol 2 as "slap"
ExportAssets (56)Timeline Frame 1Symbol 3 as "buttonbeep"

Dynamic Text Variables

ammoSymbol 59 EditableText""
scoreSymbol 60 EditableText""
timeSymbol 61 EditableText""
scoreSymbol 74 EditableText""
scorenameSymbol 77 EditableText"Enter name here"
players0Symbol 80 EditableText""
scores0Symbol 81 EditableText""
players1Symbol 82 EditableText""
scores1Symbol 83 EditableText""
players2Symbol 84 EditableText""
scores2Symbol 85 EditableText""
players3Symbol 86 EditableText""
scores3Symbol 87 EditableText""
players4Symbol 88 EditableText""
scores4Symbol 89 EditableText""
players5Symbol 90 EditableText""
scores5Symbol 91 EditableText""
players6Symbol 92 EditableText""
scores6Symbol 93 EditableText""
players7Symbol 94 EditableText""
scores7Symbol 95 EditableText""
players8Symbol 96 EditableText""
scores8Symbol 97 EditableText""
players9Symbol 98 EditableText""
scores9Symbol 99 EditableText""




http://swfchan.com/10/46793/info.shtml
Created: 3/5 -2019 01:38:10 Last modified: 3/5 -2019 01:38:10 Server time: 17/05 -2024 05:18:52