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

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

EyeGame of Jyru.swf

This is the info page for
Flash #146165

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


Text
<p align="center"><font face="Times New Roman" size="28" color="#999999" letterSpacing="0.000000" kerning="1">100%</font></p>

<p align="center"><font face="Verdana" size="29" color="#000000" letterSpacing="0.000000" kerning="1">CLICK ON THE EYE</font></p>

<p align="center"><font face="Verdana" size="29" color="#000000" letterSpacing="0.000000" kerning="1">CREDIT:</font></p><p align="center"><font face="Verdana" size="29" color="#000000" letterSpacing="0.000000" kerning="1"> © music by DJ Tuning </font></p><p align="center"><font face="Verdana" size="29" color="#000000" letterSpacing="0.000000" kerning="1">© game by jyru</font></p>

score:

high score:

0

0

ActionScript [AS1/AS2]

Frame 1
function preload() { total = _root.getBytesTotal(); loaded = _root.getBytesLoaded(); pct = (loaded / total) * 100; pct_charge.text = Math.round(pct) + "%"; barre_charge._width = (fond_charge._width / 100) * pct; if (loaded == total) { clearInterval(pre_check); gotoAndPlay (2); } } stop(); preload(); pre_check = setInterval(preload, 100);
Instance of Symbol 30 MovieClip in Frame 1
onClipEvent (load) { Mouse.hide(); startDrag (this, true); }
Frame 2
stop();
Instance of Symbol 21 MovieClip [clock] "clock" in Frame 2
onClipEvent (enterFrame) { var time = new Date(); this.seconds._rotation = (time.getSeconds() * 6) - 90; this.minutes._rotation = (time.getMinutes() * 6) - 90; this.hours._rotation = ((time.getHours() % 12) * 30) - 90; }
Frame 3
stop();
Frame 4
stop();
Frame 5
stop();
Frame 6
stop();
Frame 7
stop();
Frame 8
stop();
Frame 9
stop();
Instance of Symbol 14 MovieClip [ball] in Frame 9
onClipEvent (load) { xvel = -8; yvel = -8; } onClipEvent (enterFrame) { _x = (_x + xvel); _y = (_y + yvel); if (_x > Stage.width) { _x = Stage.width; xvel = xvel * -1; } else if (_x < 0) { _x = 0; xvel = xvel * -1; } if (_y > Stage.height) { _y = Stage.height; yvel = yvel * -1; } else if (_y < 0) { _y = 0; yvel = yvel * -1; } }
Frame 10
stop(); var i = 0; while (i < 100) { duplicateMovieClip (_root.spark, "spark", i); i++; } this.createEmptyMovieClip("line", this.getNextHighestDepth()); Mouse.hide(); var score = 0; var highscore = 0; ballSpeedX = 0; ballSpeedY = 0; gravity = 1.5; stringLength = 50; stringElasticity = 40; onEnterFrame = function () { line.clear(); paddle._x = _xmouse; paddle._y = _ymouse; lengthX = _xmouse - ball._x; lengthY = _ymouse - ball._y; currentLength = Math.sqrt((lengthX * lengthX) + (lengthY * lengthY)); tensionX = lengthX * Math.abs(lengthX / currentLength); tensionY = lengthY * Math.abs(lengthY / currentLength); ballSpeedY = ballSpeedY + gravity; if ((lengthX < (-stringLength)) || (lengthX > stringLength)) { ballSpeedX = Math.max(-45, Math.min(45, ballSpeedX + (tensionX / stringElasticity))); } if ((lengthY < (-stringLength)) || (lengthY > stringLength)) { ballSpeedY = Math.max(-45, Math.min(45, ballSpeedY + (tensionY / stringElasticity))); } ball._x = ball._x + ballSpeedX; ball._y = ball._y + ballSpeedY; if (((ballSpeedY > 0) && (ball.hitTest(paddle.hitarea))) && (ballSpeedY > 5)) { ballSpeedY = ballSpeedY * -1; score = score + 1; } if (highscore < score) { highscore = score; } if (_ymouse < (ball._y - stringLength)) { score = 0; } line.lineStyle(3, 16711680, 100); line.moveTo(ball._x, ball._y); line.curveTo(((Math.random() * lengthX) / 2) + ball._x, ((Math.random() * lengthY) / 2) + ball._y, _xmouse, _ymouse); };
Instance of Symbol 90 MovieClip "spark" in Frame 10
onClipEvent (load) { _x = _root._xmouse; _y = _root._ymouse; var xmove = ((Math.random() * 10) - 5); var ymove = ((Math.random() * 10) - 5); var delayuntilfade = Math.floor((Math.random() * 40) - 40); var thiscolor = new Color(this); var randcolor = (Math.random() * 3); if (randcolor > 2) { thiscolor.setRGB(16711680); } else if (randcolor > 1) { thiscolor.setRGB(16750848); } else { thiscolor.setRGB(16776960); } } onClipEvent (enterFrame) { delayuntilfade--; if (delayuntilfade <= -20) { _alpha = 100; _x = _root._xmouse; _y = _root._ymouse; var xmove = ((Math.random() * 10) - 5); var ymove = ((Math.random() * 20) - 10); delayuntilfade = Math.floor(20 + (Math.random() * 50)); } _x = (_x + xmove); _y = (_y + ymove); ymove = ymove + 0.5; if (delayuntilfade <= 0) { _alpha = (_alpha - 5); } }
Symbol 42 Button
on (release) { nextFrame(); }
Symbol 60 Button
on (release) { nextFrame(); }
Symbol 75 Button
on (release) { nextFrame(); }
Symbol 81 Button
on (release) { nextFrame(); }

Library Items

Symbol 1 GraphicUsed by:2 15
Symbol 2 MovieClip [paddlehitarea]Uses:1Used by:9
Symbol 3 GraphicUsed by:9
Symbol 4 GraphicUsed by:8
Symbol 5 GraphicUsed by:8
Symbol 6 GraphicUsed by:8
Symbol 7 GraphicUsed by:8
Symbol 8 ButtonUses:4 5 6 7Used by:9
Symbol 9 MovieClip [paddle]Uses:3 2 8Used by:Timeline
Symbol 10 GraphicUsed by:14
Symbol 11 GraphicUsed by:14
Symbol 12 GraphicUsed by:14
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClip [ball]Uses:10 11 12 13Used by:Timeline
Symbol 15 MovieClip [seconds]Uses:1Used by:21
Symbol 16 GraphicUsed by:21
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:21
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:19Used by:21
Symbol 21 MovieClip [clock]Uses:16 18 20 15Used by:Timeline
Symbol 22 GraphicUsed by:Timeline
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:Timeline
Symbol 25 FontUsed by:26
Symbol 26 EditableTextUses:25Used by:Timeline
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:Timeline
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:Timeline
Symbol 31 GraphicUsed by:Timeline
Symbol 32 GraphicUsed by:Timeline
Symbol 33 GraphicUsed by:35
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:33 34Used by:Timeline
Symbol 36 GraphicUsed by:Timeline
Symbol 37 GraphicUsed by:42
Symbol 38 GraphicUsed by:42
Symbol 39 GraphicUsed by:42
Symbol 40 GraphicUsed by:42
Symbol 41 SoundUsed by:42 75
Symbol 42 ButtonUses:37 38 39 40 41Used by:Timeline
Symbol 43 SoundUsed by:Timeline
Symbol 44 GraphicUsed by:Timeline
Symbol 45 GraphicUsed by:Timeline
Symbol 46 GraphicUsed by:51 60
Symbol 47 GraphicUsed by:51 60
Symbol 48 GraphicUsed by:51
Symbol 49 GraphicUsed by:51
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:46 47 48 49 50Used by:60  Timeline
Symbol 52 GraphicUsed by:Timeline
Symbol 53 GraphicUsed by:Timeline
Symbol 54 GraphicUsed by:60
Symbol 55 GraphicUsed by:60
Symbol 56 GraphicUsed by:60
Symbol 57 GraphicUsed by:60
Symbol 58 GraphicUsed by:60
Symbol 59 SoundUsed by:60 81
Symbol 60 ButtonUses:54 51 55 56 57 58 46 47 59Used by:Timeline
Symbol 61 GraphicUsed by:Timeline
Symbol 62 FontUsed by:63 82
Symbol 63 EditableTextUses:62Used 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 GraphicUsed by:Timeline
Symbol 71 GraphicUsed by:Timeline
Symbol 72 GraphicUsed by:Timeline
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:75
Symbol 75 ButtonUses:74 41Used by:Timeline
Symbol 76 GraphicUsed by:Timeline
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:81
Symbol 79 GraphicUsed by:81
Symbol 80 GraphicUsed by:81
Symbol 81 ButtonUses:78 79 80 59Used by:Timeline
Symbol 82 EditableTextUses:62Used by:Timeline
Symbol 83 FontUsed by:84 85 86 87
Symbol 84 TextUses:83Used by:Timeline
Symbol 85 TextUses:83Used by:Timeline
Symbol 86 EditableTextUses:83Used by:Timeline
Symbol 87 EditableTextUses:83Used by:Timeline
Symbol 88 GraphicUsed by:Timeline
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:Timeline

Instance Names

"fond_charge"Frame 1Symbol 24 MovieClip
"pct_charge"Frame 1Symbol 26 EditableText
"barre_charge"Frame 1Symbol 28 MovieClip
"clock"Frame 2Symbol 21 MovieClip [clock]
"paddle"Frame 10Symbol 9 MovieClip [paddle]
"ball"Frame 10Symbol 14 MovieClip [ball]
"spark"Frame 10Symbol 90 MovieClip
"hitarea"Symbol 9 MovieClip [paddle] Frame 1Symbol 2 MovieClip [paddlehitarea]
"hours"Symbol 21 MovieClip [clock] Frame 1Symbol 18 MovieClip
"minutes"Symbol 21 MovieClip [clock] Frame 1Symbol 20 MovieClip
"seconds"Symbol 21 MovieClip [clock] Frame 1Symbol 15 MovieClip [seconds]

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 2 as "paddlehitarea"
ExportAssets (56)Timeline Frame 1Symbol 9 as "paddle"
ExportAssets (56)Timeline Frame 1Symbol 14 as "ball"
ExportAssets (56)Timeline Frame 1Symbol 15 as "seconds"
ExportAssets (56)Timeline Frame 1Symbol 21 as "clock"

Dynamic Text Variables

scoreSymbol 86 EditableText"0"
highscoreSymbol 87 EditableText"0"




http://swfchan.com/30/146165/info.shtml
Created: 26/10 -2018 09:19:27 Last modified: 26/10 -2018 09:19:27 Server time: 26/04 -2024 05:27:52