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

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

The_Flashing_Button_Game.swf

This is the info page for
Flash #17338

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


Text
Pissed Panda

Productions

Pissed Panda

Productions

This is a very simple game,click on the
button, it moves around a bit and changes
shape.....
one other thing....it flashes

The Flashing Button Game

epileptics beware

epileptics beware

Begin

Begin

score =

Your score was

again?

again?

Highscores

Highscores

Name

Score

1 =

2 =

3 =

4 =

5 =

6 =

7 =

8 =

9 =

10 =

High Scores

High Scores

Your Score -

Your Name -

Submit

Submit

Again

Again

ActionScript [AS1/AS2]

Instance of Symbol 3 MovieClip [JCPreloaderMC] in Frame 1
//component parameters onClipEvent (initialize) { proceedAt = 99; showBar = true; showText = true; mcToPlay = ""; color2 = 3355443 /* 0x333333 */; color1 = 26112; color4 = 13421772 /* 0xCCCCCC */; color3 = 26112; color5 = 26112; sp = 2; lineWidth = 1; }
Frame 2
stop(); stop();
Frame 3
stop(); stop(); score = 0; time = 0;
Instance of Symbol 32 MovieClip "press" in Frame 3
onClipEvent (load) { _x = random(450); _y = random(450); } onClipEvent (enterFrame) { _root.time = _root.time + 0.01; if (_root.time >= 1) { _root.time = 0; this._width = random(50); this._height = random(50); } }
Instance of Symbol 39 MovieClip in Frame 3
onClipEvent (load) { Mouse.hide(); } onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; }
Frame 4
stop(); Mouse.show(); stop();
Instance of Symbol 86 MovieClip "scoretable" in Frame 5
onClipEvent (load) { _root.scoretable.filename = "scores/fit.sco"; _root.scoretable.scoresize = 10; _root.scoretable.action = "VIEW"; _root.scoretable.viewtype = "FLASH"; _root.scoretable.winname = _root.name; _root.scoretable.winscore = _root.score; _root.scoretable.loadVariables("http://www.goringjazzgig.co.uk/odyssey/media/play/scores.php", "GET"); }
Symbol 3 MovieClip [JCPreloaderMC] Frame 1
#initclip 1 function JCPreloaderClass() { this.orgWidth = 100; this.orgHeight = 20; this.factor = 0; this.proceedAt = 99; this.spacer = 2; this.init(); } JCPreloaderClass.prototype = new MovieClip(); JCPreloaderClass.prototype.init = function () { this.orgWidth = this._width; this.orgHeight = this._height; this._xscale = (this._yscale = 100); this.boundingBox_mc._visible = false; this.setSize(this.orgWidth, this.orgHeight); this._x = parseInt(this._x); this._y = parseInt(this._y); this.txtAttrib = new TextFormat(); this.txtAttrib.color = 16777215 /* 0xFFFFFF */; this.txtAttrib.font = "_sans"; this.txtAttrib.embedFonts = false; this.txtAttrib.size = (this.orgHeight / 2) + 3; this.txtAttrib.align = "center"; if (this.mcToPlay ne "") { this.playMC = this._parent[this.mcToPlay]; this.playMCLength = this.playMC._totalframes; } this.onEnterFrame = function () { this.bLoaded = this._parent.getBytesLoaded(); this.bTotal = this._parent.getBytesTotal(); this.factor = Math.ceil((this.bLoaded / this.bTotal) * 100); if (this.factor < this.proceedAt) { var nextFrameForMC = ((this.factor * this.playMCLength) / 100); this.playMC.gotoAndStop(nextFrameForMC); this._parent.stop(); } else if (!this.thisIsThepreview) { this._parent.play(); } this.redraw(); if (this.thisIsThepreview) { this.onEnterFrame = null; } }; }; JCPreloaderClass.prototype.setSize = function (w, h) { this.orgWidth = w; this.orgHeight = h; this.boundingBox_mc._width = w; this.boundingBox_mc._height = h; this.redraw(); }; JCPreloaderClass.prototype.redraw = function () { this.setText(); this.clear(); if (this.showBar) { var w1 = ((this.factor * this.orgWidth) / 100); var h1 = this.orgHeight; var w2 = this.orgWidth; this.drawRectangle(this.sp * -1, this.orgWidth + this.sp, this.sp * -1, this.orgHeight + this.sp, this.color5, this.color5, 100, false); if (this.factor > 0) { this.drawRectangle(0, w1, 0, h1, this.color1, this.color2, 100, true); } if (this.factor < 100) { this.drawRectangle(w1, w2, 0, h1, this.color3, this.color4, 100, true); } } }; JCPreloaderClass.prototype.setText = function () { if (this.thisIsThepreview) { this.factor = random(100); } if (this.showText) { if (this.factor < this.proceedAt) { this.percentloaded = this.factor + "% loaded..."; } else { this.percentloaded = "Here We Go!"; } } else { this.percentloaded = ""; } this.fontSize = (this.orgHeight / 2) + 3; this.txtAttrib.size = this.fontSize; this.yOffsetText = ((this.orgHeight / 2) - (this.fontSize / 2)) - 2; this.createTextField("percentTxt", 9, 0, this.yOffsetText, this.orgWidth, this.orgHeight + 3); this.percentTxt.setNewTextFormat(this.txtAttrib); this.percentTxt.text = this.percentloaded; this.percentTxt.selectable = false; }; JCPreloaderClass.prototype.drawRectangle = function (x1, x2, y1, y2, lineCol, fillCol, trans, shallWeFill) { this.lineStyle(this.lineWidth, lineCol); if (shallWeFill) { this.beginFill(fillCol, trans); } this.moveTo(x1, y1); this.lineTo(x2, y1); this.lineTo(x2, y2); this.lineTo(x1, y2); this.lineTo(x1, y1); if (shallWeFill) { this.endFill(); } }; JCPreloaderClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; JCPreloaderClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); this.arrangeLabel(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; JCPreloaderClass.prototype.setClickHandler = function (chng, obj) { this.handlerObj = ((arguments.length < 2) ? (this._parent) : (obj)); this.clickHandler = chng; }; JCPreloaderClass.prototype.executeCallBack = function () { this.handlerObj[this.clickHandler](this); }; Object.registerClass("JCPreloaderMC", JCPreloaderClass); #endinitclip
Symbol 23 Button
on (release) { gotoAndStop (3); }
Symbol 30 Button
on (press) { _root.press.gotoAndPlay(1); _x = random(500); _y = random(500); _root.score = _root.score + 1; }
Symbol 32 MovieClip Frame 20
_root.gotoAndStop("end");
Symbol 47 Button
on (release) { gotoAndStop (3); }
Symbol 53 Button
on (release) { gotoAndStop (5); }
Symbol 99 Button
on (release) { _root.scoretable.filename = "scores/fit.sco"; _root.scoretable.scoresize = 10; _root.scoretable.action = "INSERT"; _root.scoretable.viewtype = "FLASH"; _root.scoretable.winname = _root.name; _root.scoretable.winscore = _root.score; _root.scoretable.loadVariables("http://www.goringjazzgig.co.uk/odyssey/media/play/scores.php", "GET"); }
Symbol 103 Button
on (release) { gotoAndStop (3); }

Library Items

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

Instance Names

"press"Frame 3Symbol 32 MovieClip
"scoretable"Frame 5Symbol 86 MovieClip
"boundingBox_mc"Symbol 3 MovieClip [JCPreloaderMC] Frame 1Symbol 2 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 3 as "JCPreloaderMC"
ExportAssets (56)Timeline Frame 1Symbol 3 as "JCPreloaderMC"

Labels

"play"Frame 3
"end"Frame 4
"score"Frame 5

Dynamic Text Variables

timeSymbol 34 EditableText""
scoreSymbol 36 EditableText""
scoreSymbol 41 EditableText""
NAME0Symbol 56 EditableText""
NAME1Symbol 57 EditableText""
NAME2Symbol 58 EditableText""
NAME3Symbol 59 EditableText""
NAME4Symbol 60 EditableText""
NAME5Symbol 61 EditableText""
NAME6Symbol 62 EditableText""
NAME7Symbol 63 EditableText""
NAME8Symbol 64 EditableText""
NAME9Symbol 65 EditableText""
SCORE0Symbol 66 EditableText""
SCORE1Symbol 67 EditableText""
SCORE2Symbol 68 EditableText""
SCORE3Symbol 69 EditableText""
SCORE4Symbol 70 EditableText""
SCORE5Symbol 71 EditableText""
SCORE6Symbol 72 EditableText""
SCORE7Symbol 73 EditableText""
SCORE8Symbol 74 EditableText""
SCORE9Symbol 75 EditableText""
scoreSymbol 91 EditableText""
nameSymbol 93 EditableText""




http://swfchan.com/4/17338/info.shtml
Created: 1/6 -2019 03:00:45 Last modified: 1/6 -2019 03:00:45 Server time: 13/05 -2024 01:14:42