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

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

DailyDay3- Pong.swf

This is the info page for
Flash #39048

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


Text
HAPPy DAILY DAY

HAPPy DAILY DAY

HAPPy DAILY DAY

HAPPy DAILY DAY

HAPPy DAILY DAY

HAPPy DAILY DAY

HAPPy DAILY DAY

ActionScript [AS1/AS2]

Frame 1
function itemHandler1(obj, item) { getURL ("http://z7.invisionfree.com/Star_Syndicate/index.php?act=idx"); } function itemHandler2(obj, item) { getURL ("http://www.newgrounds.com/portal/search.php?terms=TheStarSyndicate&kind=a&x=7&y=12"); } function itemHandler3(obj, item) { getURL ("http://z7.invisionfree.com/Star_Syndicate/index.php?act=idx"); } var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); _root.menu = myMenu; item1 = new ContextMenuItem("Visit the Star Syndicate", itemHandler1); myMenu.customItems.push(item1); item2 = new ContextMenuItem("Check out Some More SS Movies", itemHandler2); myMenu.customItems.push(item2); item3 = new ContextMenuItem("Happy Daily Day!!!", itemHandler3); myMenu.customItems.push(item3);
Frame 26
function itemHandler1(obj, item) { getURL ("http://z7.invisionfree.com/Star_Syndicate/index.php?act=idx"); } function itemHandler2(obj, item) { getURL ("http://www.newgrounds.com/portal/search.php?terms=TheStarSyndicate&kind=a&x=7&y=12"); } function itemHandler3(obj, item) { getURL ("http://z7.invisionfree.com/Star_Syndicate/index.php?act=idx"); } var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); _root.menu = myMenu; item1 = new ContextMenuItem("Visit the Star Syndicate", itemHandler1); myMenu.customItems.push(item1); item2 = new ContextMenuItem("Check out Some More SS Movies", itemHandler2); myMenu.customItems.push(item2); item3 = new ContextMenuItem("Happy Daily Day!!!", itemHandler3); myMenu.customItems.push(item3); function createArea() { _root.createEmptyMovieClip("area", 0); with (_root.area) { moveTo(w / 2, 0); lineStyle(5, 16777215, 80); lineTo(w / 2, h + 10); } } function textBoxes(new_score_p, new_score_e) { _root.createTextField("player_score", 1, 20, 10, 40, 40); _root.createTextField("enemy_score", 2, w - 60, 10, 40, 40); score_style = new TextFormat(); score_style.font = "Verdana"; score_style.size = 20; score_style.bold = true; score_style.color = 16777215 /* 0xFFFFFF */; score_style.align = "center"; player_score.selectable = false; player_score.text = new_score_p; player_score.setTextFormat(score_style); enemy_score.text = new_score_e; enemy_score.selectable = false; enemy_score.setTextFormat(score_style); } function createPlayer(instancename, depth) { _root.createEmptyMovieClip(instancename, depth); with (_root[instancename]) { moveTo(0, 0); beginFill(16777215, 100); lineStyle(0, 16777215, 0); lineTo(10, 0); lineTo(10, 50); lineTo(0, 50); lineTo(0, 0); } } function createBall() { _root.createEmptyMovieClip("ball", 5); with (_root.ball) { moveTo(0, 0); lineStyle(0, 16777215, 0); beginFill(16777215, 100); curveTo(0, -5, 5, -5); curveTo(10, -5, 10, 0); curveTo(10, 5, 5, 5); curveTo(0, 5, 0, 0); } } function int_stuff() { _root.ball._x = (w / 2) - 5; _root.ball._y = (h / 2) - 5; _root.enemy._x = w - 30; _root.enemy._y = (h / 2) - 30; } function click_2_play(message) { _root.createTextField("click2play", 10, 0, 20, w, 200); with (_root.click2play) { text = message; selectable = false; setTextFormat(score_style); } } function createBigButton() { _root.createEmptyMovieClip("big_button", 20); with (_root.big_button) { beginFill(0, 0); moveTo(0, 0); lineTo(w, 0); lineTo(w, h); lineTo(0, h); lineTo(0, 0); } } function controlPlayer() { if (playing) { _root.player._x = 20; _root.player._y = _root._ymouse - 25; } updateAfterEvent(); } function moveBall() { if (playing) { _root.ball._y = _root.ball._y + ball_y; if ((_root.ball._y <= 0) || ((_root.ball._y + 10) >= h)) { ball_y = ball_y * -1; } _root.ball._x = _root.ball._x + ball_speed; if (_root.ball.hitTest(_root.enemy) || (_root.ball.hitTest(_root.player))) { if ((ball_speed < max_speed) && (ball_speed > (-max_speed))) { ball_speed = ball_speed * -1.5; } else { ball_speed = ball_speed * -1; } } if (_root.ball.hitTest(_root.enemy)) { ball_y = (_root.ball._y - (_root.enemy._y + 25)) * 0.2; } if (_root.ball.hitTest(_root.player)) { ball_y = (_root.ball._y - (_root.player._y + 25)) * 0.2; } if ((_root.ball._x + 10) <= 0) { enemy_score_one = enemy_score_one + 1; click_2_play("Enemy scored. Click to continue."); textBoxes(player_score_one, enemy_score_one); playing = false; _root.ball._x = (w / 2) - 5; _root.ball._y = (h / 2) - 5; ball_y = 0; ball_speed = 1.2; } if (_root.ball._x > w) { player_score_one = player_score_one + 1; click_2_play("You scored! Click to continue."); textBoxes(player_score_one, enemy_score_one); playing = false; _root.ball._x = (w / 2) - 5; _root.ball._y = (h / 2) - 5; _root.ball_speed = -1.2; ball_y = 0; } } updateAfterEvent(); } function enemyMove() { if (playing) { stupidity = 7; if ((_root.ball._x + 10) >= (w / 2)) { _root.enemy._y = _root.enemy._y + ((_root.ball._y - (_root.enemy._y + 25)) / stupidity); } } updateAfterEvent(); } Mouse.hide(); w = Stage.width; h = Stage.height; ball_speed = -1.2; ball_y = 0; max_speed = 4; enemy_score_one = 0; player_score_one = 0; fps = 120; interval = Math.round(1000 / fps); (_root.onLoad = createArea()); createBall(); textBoxes(player_score_one, enemy_score_one); createPlayer("player", 3); createPlayer("enemy", 4); int_stuff(); click_2_play("Click Anywhere To Play"); createBigButton(); _root.big_button.onPress = function () { playing = true; click_2_play(""); }; setInterval(moveBall, interval); setInterval(controlPlayer, interval); setInterval(enemyMove, interval); stop();
Symbol 13 Button
on (release) { _root.play(); }
Symbol 14 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { loadbarbar._xscale = PercentLoaded; } else { gotoAndStop ("loaded"); }
Symbol 14 MovieClip Frame 2
gotoAndPlay (1);
Symbol 14 MovieClip Frame 3
stop();

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 BitmapUsed by:3
Symbol 3 GraphicUses:2Used by:15
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:15
Symbol 6 GraphicUsed by:14
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:14
Symbol 9 GraphicUsed by:14
Symbol 10 GraphicUsed by:13
Symbol 11 GraphicUsed by:13
Symbol 12 GraphicUsed by:13
Symbol 13 ButtonUses:10 11 12Used by:14
Symbol 14 MovieClipUses:6 8 9 13Used by:15
Symbol 15 MovieClipUses:3 5 14Used by:Timeline
Symbol 16 ShapeTweeningUsed by:Timeline
Symbol 17 GraphicUsed by:Timeline
Symbol 18 GraphicUsed by:21
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:21
Symbol 21 MovieClipUses:18 20Used by:22
Symbol 22 MovieClipUses:21Used by:23
Symbol 23 MovieClipUses:22Used by:Timeline
Symbol 24 MovieClipUses:SS1Used by:Timeline
Symbol 25 FontUsed by:26 27 28 29 30 31 32
Symbol 26 TextUses:25Used by:33
Symbol 27 TextUses:25Used by:33
Symbol 28 TextUses:25Used by:33
Symbol 29 TextUses:25Used by:33
Symbol 30 TextUses:25Used by:33
Symbol 31 TextUses:25Used by:33
Symbol 32 TextUses:25Used by:33
Symbol 33 MovieClipUses:26 27 28 29 30 31 32Used by:Timeline
Streaming Sound 1Used by:Symbol 24 MovieClip

Instance Names

"loadbar"Symbol 14 MovieClip Frame 1Symbol 8 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.

Labels

"loaded"Symbol 14 MovieClip Frame 3




http://swfchan.com/8/39048/info.shtml
Created: 12/5 -2019 17:04:57 Last modified: 12/5 -2019 17:04:57 Server time: 05/05 -2024 20:24:01