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

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

Seal Ball.swf

This is the info page for
Flash #11065

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


Text
Chodzenie

111111111

111111111

111111111

111111111

FLASH GAMES

.COM

000

067

543

123

285

211

065

003

106

723

247

to play more games like this press go

to play more games like this press go

play more games

games by email

download

games for your website

FLASH GAMES

.COM

247

You came across a pack of hunters trying to catch two seals and
sell them for leather, meat and fat. You decided to help poor seals
and told hunters, that it's very unwise to butch such intelligent
creatures - it is much more profitable to sell them to the circus.
Now, seals compete against each other playing volleyball. The one
which proves more intelligent and agile by winning, will be sold to
the circus, and, as all animals there - will suffer terribly, but hey -
that's still better, than dying instantly, isn't it ? (^_^)
Controls:      Player1:                           Player2:

You came across a pack of hunters trying to catch two seals and
sell them for leather, meat and fat. You decided to help poor seals
and told hunters, that it's very unwise to butch such intelligent
creatures - it is much more profitable to sell them to the circus.
Now, seals compete against each other playing volleyball. The one
which proves more intelligent and agile by winning, will be sold to
the circus, and, as all animals there - will suffer terribly, but hey -
that's still better, than dying instantly, isn't it ? (^_^)
Controls:      Player1:                           Player2:

a

w

Pause

Pause

score

00000

GAME
OVER

ActionScript [AS1/AS2]

Frame 1
function liga(f) { if (f == undefined) { gotoAndStop (97); } else { gotoAndStop (97); } } function starting(f) { if (f == undefined) { gotoAndStop (93); } else { gotoAndStop(f +92); } } function single(f) { if (f == undefined) { gotoAndStop (95); } else { gotoAndStop(f +94); } } function multi(f) { if (f == undefined) { gotoAndStop (96); } else { gotoAndStop(f +95); } } function instr(f) { if (f == undefined) { gotoAndStop (94); } else { gotoAndStop(f +93); } } function register(f) { if (f == undefined) { gotoAndStop (1); } else { gotoAndStop(f); } } function hof(f) { if (f == undefined) { gotoAndStop (97); } else { gotoAndStop (97); } } _root.__url = "http://67.18.146.218/php/"; this._socket = new XMLSocket();
Frame 2
Stage.scaleMode = "noScale"; fscommand ("trapallkeys", true); Stage.showMenu = false;
Frame 93
function intRface(tar, p1, p2) { this.tar = tar; var odbicie = new Sound(tar); var hlpSO = _root.createEmptyMovieClip("hlpSO", 200); var kwik = new Sound(hlpSO); odbicie.attachSound("bounce"); kwik.attachSound("kwik"); kwik.complete = 1; kwik.onSoundComplete = function () { this.complete = 1; }; odbicie.setVolume(300); var defs = {leapHeight:15, jumpDelay:5, playerSpeed:5, gravity:1, stageWidth:Stage.width, stageHeight:Stage.height, twoPlayers:1, dzwiek:odbicie, kwik:kwik}; var stageWidth = Stage.width; var stageHeight = Stage.height; var depth = 0; var numOfPlayers = 0; var paused = 0; var ball = null; var lives = tar.createEmptyMovieClip("hearts", depth++); var _obstacles = tar.createEmptyMovieClip("obs", depth++); var _players = new Array(); var obstacleInfo = new Array({id:"floor", x:stageWidth / 2, y:stageHeight}, {id:"centerWall", x:stageWidth / 2, y:stageHeight - 80}, {id:"sideWall", x:-20, y:stageHeight / 2}, {id:"sideWall", x:stageWidth + 20, y:stageHeight / 2}); var playerInfo = new Array({cl:0, left:37, right:39, up:38}, {cl:0, left:65, right:68, up:87}, {cl:1}, {cl:1}); var spawnObstacles = function () { for (var i in obstacleInfo) { _obstacles.attachMovie(obstacleInfo[i].id, obstacleInfo[i].id + depth, depth++, {_x:obstacleInfo[i].x, _y:obstacleInfo[i].y}); } }; var shadowFollow = function () { this._x = this.tar._x; this._xscale = (this._yscale = 100 - ((this._y - this.tar._y) / 5)); }; var ai = function () { this.oldX = this._x; if (this.ball._x > this.center) { this.tar = this.ball._x + 10; } else { this.tar = (3 * this.center) / 2; } if (((((this.ball._x > this.center) && (this.ball._y > (this._y - (this._height * 2)))) && (this.grv == 0)) && (this.ball.vX > 2)) && (this.jumpDelay <= 0)) { this.gotoAndStop(3); this.fly = this._defs.leapHeight; this.grv = this._defs.gravity; } this.jumpDelay--; this._y = this._y - ((this.fly = this.fly - this.grv)); if (this._obstacles.hitTest(this._x - (this._width / 2), this._y - 10, 1)) { this._x = this._x + this._defs.playerSpeed; } if (this._obstacles.hitTest(this._x + (this._width / 2), this._y - 10, 1)) { this._x = this._x - this._defs.playerSpeed; } if (this._obstacles.hitTest(this._x, this._y, 1)) { this.gotoAndStop(1); this._y = this._y - 5; this.fly = 0; this.grv = 0; this.jumpDelay = this._defs.jumpDelay; } if (Math.abs(this.tar - this._x) > 1) { this._x = this._x + ((this._defs.playerSpeed * (this.tar - this._x)) / Math.abs(this.tar - this._x)); } }; var playerMove = function () { this.oldX = this._x; if (Key.isDown(this.left)) { this._x = this._x - this._defs.playerSpeed; } if (Key.isDown(this.right)) { this._x = this._x + this._defs.playerSpeed; } if ((Key.isDown(this.up) && (this.grv == 0)) && (this.jumpDelay <= 0)) { this.gotoAndStop(3); this.fly = this._defs.leapHeight; this.grv = this._defs.gravity; } this.jumpDelay--; this._y = this._y - ((this.fly = this.fly - this.grv)); if (this._obstacles.hitTest(this._x - (this._width / 2), this._y - 10, 1)) { this._x = this._x + this._defs.playerSpeed; } if (this._obstacles.hitTest(this._x + (this._width / 2), this._y - 10, 1)) { this._x = this._x - this._defs.playerSpeed; } if (this._obstacles.hitTest(this._x, this._y, 1)) { this._y = this._y - 5; this.fly = 0; this.grv = 0; this.jumpDelay = this._defs.jumpDelay; this.gotoAndStop(1); } }; var spawnPlayers = function () { var localDefsObj = arguments.pop(); numOfPlayers = arguments.length; for (var i in arguments) { var shadow = tar.attachMovie("cien", "cien" + (depth - 100), depth - 100); var ref = tar.attachMovie("player", i, depth++, {_x:((int(i) + 1) * stageWidth) / (numOfPlayers + 1), _y:stageHeight - 15}); shadow.tar = ref; shadow._y = ref._y - 20; shadow.onEnterFrame = shadowFollow; if (ref._x > (stageWidth / 2)) { ref._xscale = -100; } var cell = playerInfo[arguments[i]]; if (cell.cl == 0) { ref.left = cell.left; ref.right = cell.right; ref.up = cell.up; ref.onEnterFrame = playerMove; } else { defs.twoPlayers = 0; ref.onEnterFrame = ai; ref.tar = 0; ref.center = stageWidth / 2; } ref._defs = defs; ref.spd = playerSpeed; ref.grav = gravity; ref.fly = (ref.grv = (ref.jumpDelay = 0)); ref._obstacles = _obstacles; _players.push(ref); delete ref; } delete localDefsObj; }; var ballMove = function () { this.vY = this.vY - this._defs.gravity; if (this._obstacles.hitTest(this._x - (this._width / 3), this._y, 1)) { this._defs.dzwiek.start(0.25, 1); this._x = this._x + 2; this.vX = this.vX * -1; } if (this._obstacles.hitTest(this._x + (this._width / 3), this._y, 1)) { this._defs.dzwiek.start(0.25, 1); this._x = this._x - 2; this.vX = this.vX * -1; } if (this._obstacles.hitTest(this._x, this._y + (this._height / 3), 1)) { this._defs.dzwiek.start(0.25, 1); if (this._y > ((3 * this._defs.stageHeight) / 4)) { if (this._x > (this._defs.stageWidth / 2)) { this._parent.lc = int(this._parent.lc) + 1; } else { this._parent.rc = int(this._parent.rc) + 1; if (!this._defs.twoPlayers) { this._parent.hearts["serce" + this._parent.rc].removeMovieClip(); if (this._parent.rc >= 10) { _root.scr = this._parent.lc; _root.hof(); } } } } this.vY = this.vY + 2; this._y = this._y - 2; this.vY = this.vY * -1; } for (i in this._players) { if (this._players[i].hitTest(this._x, this._y, 1)) { if (this.noBounce <= 0) { if (this._defs.kwik.complete) { this._defs.kwik.start(0, 1); this._defs.kwik.complete = 0; } this.vY = 15; this.vX = (this._x - this._players[i]._x) / 3; } } if (this._players[i].hitTest(this._x, this._y - this._height, 1)) { this.noBounce = 3; } } this.noBounce--; this._y = this._y - this.vY; this._x = this._x + this.vX; }; var spawnBall = function () { var shadow = tar.attachMovie("cien", "cien" + (depth - 100), depth - 100); ball = tar.attachMovie("ball", "piuka", depth++, {_x:stageWidth / (numOfPlayers + 1)}); shadow.tar = ball; shadow._y = _players[0]._y - 20; shadow.onenterFrame = shadowFollow; ball.onEnterFrame = ballMove; ball._defs = defs; ball._obstacles = _obstacles; ball._players = _players; for (i in _players) { _players[i].ball = ball; } ball.vX = 0; ball.vY = 0; ball.noBounce = 0; }; var spawnLives = function () { tar.lc = (tar.rc = 0); if (defs.twoPlayers == 0) { var i = 0; while (i < 10) { lives.attachMovie("serce", "serce" + int(10 - i), depth++, {_y:100, _x:30 + (30 * i)}); i++; } } }; this.pauseAll = function () { if (paused) { ball.onEnterFrame = ball.oldOEF; for (i in _players) { _players[i].onEnterFrame = _players[i].oldOEF; } } else { ball.oldOEF = ball.onEnterFrame; delete ball.onEnterFrame; for (i in _players) { _players[i].oldOEF = _players[i].onEnterFrame; delete _players[i].onEnterFrame; } } paused = !paused; }; spawnObstacles(); spawnPlayers(p1, p2, this); spawnBall(); spawnLives(); } stop(); if (!podklad) { this.createEmptyMovieClip("soundObj", this.getNextHighestDepth()); podklad = new Sound(soundObj); podklad.attachSound("podkl"); podklad.start(0, 9999); podklad.setVolume(40); }
Instance of Symbol 96 MovieClip in Frame 93
//component parameters onClipEvent (initialize) { label = "Two Players"; wide = 102; c1 = 0; c2 = 207; c3 = 255; hc1 = 0; hc2 = 207; hc3 = 255; baseMode = true; widthMode = true; rgb = 53247; rb = 255; gb = 255; bb = 255; hilitergb = 53247; } on (press) { _root.multi(); }
Instance of Symbol 96 MovieClip in Frame 93
//component parameters onClipEvent (initialize) { label = "Instructions"; wide = 80; c1 = 0; c2 = 207; c3 = 255; hc1 = 0; hc2 = 207; hc3 = 255; baseMode = true; widthMode = true; rgb = 53247; rb = 255; gb = 255; bb = 255; hilitergb = 53247; } on (press) { _root.instr(); }
Instance of Symbol 96 MovieClip in Frame 93
//component parameters onClipEvent (initialize) { label = "One Player"; wide = 80; c1 = 0; c2 = 207; c3 = 255; hc1 = 0; hc2 = 207; hc3 = 255; baseMode = true; widthMode = true; rgb = 53247; rb = 255; gb = 255; bb = 255; hilitergb = 53247; } on (press) { _root.single(); }
Instance of Symbol 96 MovieClip in Frame 93
//component parameters onClipEvent (initialize) { label = "GO"; wide = 75; c1 = 0; c2 = 153; c3 = 0; hc1 = 0; hc2 = 200; hc3 = 0; baseMode = true; widthMode = true; rgb = 39168; rb = 255; gb = 255; bb = 255; hilitergb = 51200; } on (press) { getURL ("http://www.FlashGames247.com", "_blank"); }
Instance of Symbol 96 MovieClip in Frame 94
//component parameters onClipEvent (initialize) { label = "One Player Game"; wide = 141; c1 = 0; c2 = 205; c3 = 255; hc1 = 0; hc2 = 207; hc3 = 255; baseMode = false; widthMode = false; rgb = 52735; rb = 255; gb = 255; bb = 255; hilitergb = 53247; } on (press) { _root.single(); }
Instance of Symbol 96 MovieClip in Frame 94
//component parameters onClipEvent (initialize) { label = "Two Players Game"; wide = 148; c1 = 0; c2 = 207; c3 = 255; hc1 = 0; hc2 = 207; hc3 = 255; baseMode = true; widthMode = false; rgb = 53247; rb = 255; gb = 255; bb = 255; hilitergb = 53247; } on (press) { _root.multi(); }
Frame 95
gra.ozd.swapDepths(100); sealBall = new intRface(gra, 0, 2); stop();
Frame 96
gra.ozd.swapDepths(100); sealBall = new intRface(gra, 0, 1); stop();
Frame 97
stop();
Instance of Symbol 96 MovieClip in Frame 97
//component parameters onClipEvent (initialize) { label = "GO"; wide = 75; c1 = 0; c2 = 153; c3 = 0; hc1 = 0; hc2 = 200; hc3 = 0; baseMode = true; widthMode = true; rgb = 39168; rb = 255; gb = 255; bb = 255; hilitergb = 51200; } on (press) { getURL ("http://www.FlashGames247.com", "_blank"); }
Instance of Symbol 96 MovieClip in Frame 97
//component parameters onClipEvent (initialize) { label = "New Game"; wide = 80; c1 = 0; c2 = 207; c3 = 255; hc1 = 0; hc2 = 207; hc3 = 255; baseMode = true; widthMode = true; rgb = 53247; rb = 255; gb = 255; bb = 255; hilitergb = 53247; } on (press) { _root.starting(); }
Symbol 13 MovieClip [player] Frame 1
stop();
Symbol 13 MovieClip [player] Frame 2
stop();
Symbol 13 MovieClip [player] Frame 3
stop();
Symbol 26 MovieClip [player] Frame 1
stop();
Symbol 26 MovieClip [player] Frame 2
stop();
Symbol 26 MovieClip [player] Frame 3
stop();
Symbol 42 MovieClip Frame 1
_root.stop(); Stage.scaleMode = "noScale"; fscommand ("trapallkeys", true); Stage.showMenu = false; this.sg = []; for (var i in this) { if (this[i]._totalframes == 1) { this.sg.push(this[i]); this[i]._alpha = 20; } } this._tm = getTimer(); this.onEnterFrame = function () { var ld = _root.getBytesLoaded(); var tt = _root.getBytesTotal(); this.bytes = ld; this.procent = ((tt > 0) ? ((100 * ld) / tt) : 0); this.time = (getTimer() - this._tm) / 1000; this.transfer = this.bytes / this.time; var pr = Math.floor(this.procent); var i = 100; while (i > (100 - pr)) { this.sg[i]._alpha = 40; i--; } if (pr >= 100) { this.onEnterFrame = null; _root.play(); } };
Symbol 69 MovieClip Frame 1
function sss(a) { var v = a.ss.getVolume(); if (v >= 100) { clearInterval(a.it); } else { a.ss.setVolume(v + 3); } } this.ss = new Sound(this); this.ss.attachSound("muza"); this.ss.setVolume(0); this.ss.start(0, 100000); this.it = setInterval(sss, 33, this);
Symbol 69 MovieClip Frame 56
stop();
Symbol 96 MovieClip Frame 1
this.onPress = function () { pressing = true; i = 1; while (i <= 3) { buttonColor = new Color(eval ("piece" + i).colorchip); buttonColor.setRGB(3355443); lowColor = new Color(eval ("piece" + i).bottomhilite); lowColorTransform = new Object(); lowColorTransform = {ra:"0", rb:"200", ga:"0", gb:"200", ba:"0", bb:"200", aa:"100", ab:"0"}; lowColor.setTransform(lowColorTransform); i++; } }; this.onRelease = function () { pressing = false; }; this.onReleaseOutside = function () { pressing = false; }; this.onEnterFrame = function () { if (pressing != true) { i = 1; while (i <= 3) { buttonColor = new Color(eval ("piece" + i).colorchip); buttonColor.setRGB(rgb); lowColor = new Color(eval ("piece" + i).bottomhilite); lowColorTransform = new Object(); lowColorTransform = {ra:"0", rb:hc1, ga:"0", gb:hc2, ba:"0", bb:hc3, aa:"100", ab:"0"}; lowColor.setTransform(lowColorTransform); i++; } } }; with (piece2) { _width = _parent.wide; piece1._x = _x - (_width / 2); piece3._x = _x + (_width / 2); _parent.midshadow._width = _width; _parent.leftshadow._x = _x - (_width / 2); _parent.rightshadow._x = _x + (_width / 2); } label1.autoSize = "center"; label2.autoSize = "center";
Symbol 99 MovieClip Frame 10
stop();
Symbol 102 MovieClip Frame 10
stop();
Symbol 103 MovieClip Frame 1
if (_root.liv == 0) { _root.lost(3); } this.gotoAndStop(_root.liv + 2); stop();
Symbol 114 Button
on (press) { getURL ("http://www.FlashGames247.com", "_blank"); }
Symbol 115 Button
on (press) { getURL ("http://www.FlashGames247.com/gamesbyemail", "_blank"); }
Symbol 116 Button
on (press) { getURL ("http://www.FlashGames247.com/addflashgames", "_blank"); }
Symbol 117 Button
on (press) { getURL ("http://www.FlashGames247.com/download/SealBallmx.exe", "_blank"); }
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
on (press) { getURL ("http://www.FlashGames247.com", "_blank"); }
Symbol 137 MovieClip Frame 1
pau._visible = 0;
Instance of Symbol 96 MovieClip in Symbol 137 MovieClip Frame 1
//component parameters onClipEvent (initialize) { label = "Pause"; wide = 80; c1 = 0; c2 = 207; c3 = 255; hc1 = 0; hc2 = 207; hc3 = 255; baseMode = true; widthMode = true; rgb = 53247; rb = 255; gb = 255; bb = 255; hilitergb = 53247; } on (press) { this._parent._parent.sealBall.pauseAll(); this._parent.pau._visible = !this._parent.pau._visible; }
Instance of Symbol 96 MovieClip in Symbol 137 MovieClip Frame 1
//component parameters onClipEvent (initialize) { label = "End Game"; wide = 80; c1 = 0; c2 = 207; c3 = 255; hc1 = 0; hc2 = 207; hc3 = 255; baseMode = true; widthMode = true; rgb = 53247; rb = 255; gb = 255; bb = 255; hilitergb = 53247; } on (press) { _root.starting(); }

Library Items

Symbol 1 Sound [kwik]
Symbol 2 Sound [podkl]
Symbol 3 Sound [bounce]
Symbol 4 GraphicUsed by:13 26
Symbol 5 GraphicUsed by:13
Symbol 6 GraphicUsed by:10
Symbol 7 GraphicUsed by:10
Symbol 8 FontUsed by:9 95 104 105 125 127 132 133 134 135
Symbol 9 TextUses:8Used by:10 23
Symbol 10 MovieClipUses:6 7 9Used by:13
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:13
Symbol 13 MovieClip [player]Uses:4 5 10 12
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClip [cien]Uses:14
Symbol 16 GraphicUsed by:17 27
Symbol 17 MovieClip [sideWall]Uses:16
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClip [serce]Uses:18
Symbol 20 GraphicUsed by:26
Symbol 21 GraphicUsed by:23
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:21 22 9Used by:26
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:24Used by:26
Symbol 26 MovieClip [player]Uses:4 20 23 25
Symbol 27 MovieClip [floor]Uses:16
Symbol 28 BitmapUsed by:29
Symbol 29 GraphicUses:28Used by:30
Symbol 30 MovieClip [centerWall]Uses:29
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClip [ball]Uses:31
Symbol 33 GraphicUsed by:Timeline
Symbol 34 GraphicUsed by:42
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:42
Symbol 37 FontUsed by:38 39 40 41
Symbol 38 EditableTextUses:37Used by:42
Symbol 39 EditableTextUses:37Used by:42
Symbol 40 EditableTextUses:37Used by:42
Symbol 41 EditableTextUses:37Used by:42
Symbol 42 MovieClipUses:34 36 38 39 40 41Used by:Timeline
Symbol 43 SoundUsed by:69
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:69
Symbol 46 GraphicUsed by:51
Symbol 47 FontUsed by:48 49 56 58 59 60 61 62 63 64 65 66 67 119 120 121
Symbol 48 TextUses:47Used by:50
Symbol 49 TextUses:47Used by:50
Symbol 50 MovieClipUses:48 49Used by:51
Symbol 51 MovieClipUses:46 50Used by:69
Symbol 52 ShapeTweeningUsed by:69
Symbol 53 ShapeTweeningUsed by:69
Symbol 54 ShapeTweeningUsed by:69
Symbol 55 GraphicUsed by:69
Symbol 56 TextUses:47Used by:69
Symbol 57 SoundUsed by:69
Symbol 58 TextUses:47Used by:69
Symbol 59 TextUses:47Used by:69
Symbol 60 TextUses:47Used by:69
Symbol 61 TextUses:47Used by:69
Symbol 62 TextUses:47Used by:69
Symbol 63 TextUses:47Used by:69
Symbol 64 TextUses:47Used by:69
Symbol 65 TextUses:47Used by:69
Symbol 66 TextUses:47Used by:69
Symbol 67 TextUses:47Used by:69
Symbol 68 SoundUsed by:69
Symbol 69 MovieClipUses:43 45 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68Used by:Timeline
Symbol 70 BitmapUsed by:71
Symbol 71 GraphicUses:70Used by:72
Symbol 72 MovieClipUses:71Used by:137  Timeline
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:Timeline
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:75Used by:96
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:77Used by:96
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:79Used by:85
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:81Used by:85
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClipUses:83Used by:85
Symbol 85 MovieClipUses:80 82 84Used by:96
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:92
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:92
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:92
Symbol 92 MovieClipUses:87 89 91Used by:96
Symbol 93 FontUsed by:94
Symbol 94 EditableTextUses:93Used by:96
Symbol 95 EditableTextUses:8Used by:96
Symbol 96 MovieClipUses:76 78 85 92 94 95Used by:137  Timeline
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:97Used by:99
Symbol 99 MovieClipUses:98Used by:102 103
Symbol 100 GraphicUsed by:103
Symbol 101 GraphicUsed by:103
Symbol 102 MovieClipUses:99Used by:103
Symbol 103 MovieClipUses:99 100 101 102Used by:Timeline
Symbol 104 TextUses:8Used by:Timeline
Symbol 105 TextUses:8Used by:Timeline
Symbol 106 GraphicUsed by:123
Symbol 107 FontUsed by:108 109 110 111 138 139 140
Symbol 108 TextUses:107Used by:123
Symbol 109 TextUses:107Used by:123
Symbol 110 TextUses:107Used by:123
Symbol 111 TextUses:107Used by:123
Symbol 112 GraphicUsed by:114 115 116 117
Symbol 113 GraphicUsed by:114 115 116 117
Symbol 114 ButtonUses:112 113Used by:123
Symbol 115 ButtonUses:112 113Used by:123
Symbol 116 ButtonUses:112 113Used by:123
Symbol 117 ButtonUses:112 113Used by:123
Symbol 118 GraphicUsed by:122
Symbol 119 TextUses:47Used by:122
Symbol 120 TextUses:47Used by:122
Symbol 121 TextUses:47Used by:122
Symbol 122 MovieClipUses:118 119 120 121Used by:123
Symbol 123 MovieClipUses:106 108 109 110 111 114 115 116 117 122Used by:Timeline
Symbol 124 GraphicUsed by:Timeline
Symbol 125 TextUses:8Used by:Timeline
Symbol 126 GraphicUsed by:Timeline
Symbol 127 TextUses:8Used by:Timeline
Symbol 128 BitmapUsed by:129 130
Symbol 129 GraphicUses:128Used by:131
Symbol 130 GraphicUses:128Used by:131
Symbol 131 MovieClipUses:129 130Used by:137
Symbol 132 EditableTextUses:8Used by:137
Symbol 133 EditableTextUses:8Used by:137
Symbol 134 TextUses:8Used by:136
Symbol 135 TextUses:8Used by:136
Symbol 136 MovieClipUses:134 135Used by:137
Symbol 137 MovieClipUses:72 131 132 133 96 136Used by:Timeline
Symbol 138 TextUses:107Used by:Timeline
Symbol 139 EditableTextUses:107Used by:Timeline
Symbol 140 TextUses:107Used by:Timeline

Instance Names

"intro"Frame 2Symbol 69 MovieClip
"gra"Frame 95Symbol 137 MovieClip
"gra"Frame 96Symbol 137 MovieClip
"pkt"Frame 97Symbol 139 EditableText
"colorchip"Symbol 85 MovieClip Frame 1Symbol 80 MovieClip
"bottomhilite"Symbol 85 MovieClip Frame 1Symbol 82 MovieClip
"tophilite"Symbol 85 MovieClip Frame 1Symbol 84 MovieClip
"colorchip"Symbol 92 MovieClip Frame 1Symbol 87 MovieClip
"bottomhilite"Symbol 92 MovieClip Frame 1Symbol 89 MovieClip
"tophilite"Symbol 92 MovieClip Frame 1Symbol 91 MovieClip
"midshadow"Symbol 96 MovieClip Frame 1Symbol 76 MovieClip
"rightshadow"Symbol 96 MovieClip Frame 1Symbol 78 MovieClip
"leftshadow"Symbol 96 MovieClip Frame 1Symbol 78 MovieClip
"piece2"Symbol 96 MovieClip Frame 1Symbol 85 MovieClip
"piece1"Symbol 96 MovieClip Frame 1Symbol 92 MovieClip
"piece3"Symbol 96 MovieClip Frame 1Symbol 92 MovieClip
"label2"Symbol 96 MovieClip Frame 1Symbol 94 EditableText
"label1"Symbol 96 MovieClip Frame 1Symbol 95 EditableText
"ozd"Symbol 137 MovieClip Frame 1Symbol 131 MovieClip
"pau"Symbol 137 MovieClip Frame 1Symbol 136 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "kwik"
ExportAssets (56)Timeline Frame 1Symbol 2 as "podkl"
ExportAssets (56)Timeline Frame 1Symbol 3 as "bounce"
ExportAssets (56)Timeline Frame 1Symbol 13 as "player"
ExportAssets (56)Timeline Frame 1Symbol 15 as "cien"
ExportAssets (56)Timeline Frame 1Symbol 17 as "sideWall"
ExportAssets (56)Timeline Frame 1Symbol 19 as "serce"
ExportAssets (56)Timeline Frame 1Symbol 26 as "player"
ExportAssets (56)Timeline Frame 1Symbol 27 as "floor"
ExportAssets (56)Timeline Frame 1Symbol 30 as "centerWall"
ExportAssets (56)Timeline Frame 1Symbol 32 as "ball"

Labels

#"Symbol_7"Symbol 76 MovieClip Frame 1
#"Symbol_8"Symbol 78 MovieClip Frame 1
#"Symbol_14"Symbol 80 MovieClip Frame 1
#"Symbol_13"Symbol 82 MovieClip Frame 1
#"Symbol_12"Symbol 84 MovieClip Frame 1
#"Symbol_9"Symbol 87 MovieClip Frame 1
#"Symbol_11"Symbol 89 MovieClip Frame 1
#"Symbol_10"Symbol 91 MovieClip Frame 1
#"Symbol_3"Symbol 92 MovieClip Frame 1

Dynamic Text Variables

timeSymbol 38 EditableText"111111111"
transferSymbol 39 EditableText"111111111"
procentSymbol 40 EditableText"111111111"
bytesSymbol 41 EditableText"111111111"
labelSymbol 94 EditableText"       "
labelSymbol 95 EditableText"       "
lcSymbol 132 EditableText"a"
rcSymbol 133 EditableText"w"
_root.scrSymbol 139 EditableText"00000"




http://swfchan.com/3/11065/info.shtml
Created: 7/6 -2019 17:50:36 Last modified: 7/6 -2019 17:50:36 Server time: 16/05 -2024 08:21:02