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

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

Jeu Vote.swf

This is the info page for
Flash #24359

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


Text
LOADING ...

Jeu vote

skip

21 avril 2002

LES fn invaders
avancent jusqu'a
des limites
preocupantes ...

COMMENT
EVITER LE
GAME OVER ?

1. Déplacez-vous
avec les fleches de
votre clavier pour
eviter l'attack des
fn invaders

2. Pressez la TOUCHE
space pour
combattre les FN
INVADERS ...

VOUS AVEZ TOUJOURS la
possibilité DE VOUS
ABSTENIR

Je JOUE

<P ALIGN="RIGHT"><FONT FACE="standard 07_56" SIZE="8" COLOR="#FAD87A"><A HREF="http://www.margarida-romero.net ">www.margarida-romero.net </A></FONT></P><P ALIGN="RIGHT"><FONT FACE="standard 07_56" SIZE="8" COLOR="#FFFFFF">avec la collaboration de<FONT COLOR="#FAD87A"><A HREF="http:// www.schawack.com"> www.schawack.com</A></FONT></FONT></P>

GAME OVER,
France over

BRAVO !
vous avez evité la FN
invasion dans ce jeu;
la vrai reste a
combatre...

ActionScript [AS1/AS2]

Frame 1
play();
Frame 3
tFrame = _root._totalframes; ifFrameLoaded (tFrame) { gotoAndStop (5); }
Frame 4
prevFrame();
Frame 5
play();
Frame 739
stop();
Frame 740
function FuncInit() { ListeSpaces = new Array(); colspace = 3; maxspace = 8; points = 0; j = 1; while (colspace >= j) { i = 0; while (i < maxspace) { duplicateMovieClip (j + "space", (j + "space") + i, (10 * j) + i); setProperty((j + "space") + i, _x , 15 + (30 * i)); i++; } j++; } gameover.counter = 3; _root.live0._visible = 1; _root.live1._visible = 1; _root.live2._visible = 1; with (eval (_root.spaceship)) { _visible = true; gotoAndStop(1); moveSpeed = 10; _root.laser._visible = false; laserCounter = 1; maxLasers = 4; depthCounter = 1; } } function FuncGameOver() { gameover.gotoAndPlay(2); spaceship._visible = false; live0._visible = 0; live1._visible = 0; live2._visible = 0; i = 1; while (ListeSpaces.length >= i) { var KelSpace = ListeSpaces[i]; this[KelSpace].removeMovieClip(); i++; } } play();
Frame 741
FuncInit(); stop();
Instance of Symbol 37 MovieClip "gameover" in Frame 741
onClipEvent (enterFrame) { if (_root.computer._visible == false) { if (counter == 0) { _parent.FuncGameOver(); } if (counter == 1) { _root.live1._visible = 0; } if (counter == 2) { _root.live2._visible = 0; } } }
Instance of Symbol 39 MovieClip "spaceship" in Frame 741
onClipEvent (load) { moveSpeed = 10; _root.laser._visible = false; laserCounter = 1; maxLasers = 4; depthCounter = 1; } onClipEvent (enterFrame) { if (Key.isDown(39) and (this._x < 290)) { this._x = this._x + moveSpeed; } else if (Key.isDown(37) and (10 < this._x)) { this._x = this._x - moveSpeed; } if (Key.isDown(32) and (maxLasers >= laserCounter)) { laserCounter++; _root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter); _root["laser" + depthCounter]._visible = true; depthCounter++; if (maxLasers < depthCounter) { depthCounter = 1; } } }
Instance of Symbol 41 MovieClip "laser" in Frame 741
onClipEvent (load) { laserMoveSpeed = 10; this._x = _root.spaceship._x; this._y = _root.spaceship._y - 10; } onClipEvent (enterFrame) { if (this._name != "laser") { this._y = this._y - laserMoveSpeed; if (this._y < 0) { _root.spaceship.laserCounter--; this.removeMovieClip(); } if (this._currentframe == this._totalframes) { _root.spaceship.laserCounter--; this.removeMovieClip(); } maxspace = 8; j = 1; while (j < 7) { i = 0; while (i < maxspace) { if (this.hitTest(_root[(j + "space") + i])) { tellTarget (this) { gotoAndPlay (2); }; } i++; } j++; } } }
Instance of Symbol 44 MovieClip "computer" in Frame 741
onClipEvent (load) { _visible = false; total = _parent.colspace * _parent.maxspace; laserCounter = 1; maxLasers = 10; depthCounter = 1; } onClipEvent (enterFrame) { if (this.total == 0) { _visible = true; } if (maxLasers >= laserCounter) { laserCounter++; _root.shot.duplicateMovieClip("shot" + depthCounter, depthCounter + 1200); depthCounter++; if (maxLasers < depthCounter) { depthCounter = 1; } } }
Instance of Symbol 46 MovieClip "3space" in Frame 741
onClipEvent (load) { _parent.ListeSpaces.push(_name); speed = 2; dir = 1; distance = 0; SpaceDead = false; } onClipEvent (enterFrame) { i = 1; while (_root.spaceship.maxLasers >= i) { if (this.hitTest(_root["laser" + i])) { this.gotoAndPlay(2); SpaceDead = true; } i++; } if (SpaceDead == false) { this._x = this._x + (speed * dir); distance++; if (30 < distance) { distance = 0; dir = dir * -1; } if (random(48) == 3) { _root.computer.x = this._x; _root.computer.y = this._y; _root.computer.h = this._height; } } }
Instance of Symbol 46 MovieClip "1space" in Frame 741
onClipEvent (load) { _parent.ListeSpaces.push(_name); speed = 2; dir = 1; distance = 0; SpaceDead = false; } onClipEvent (enterFrame) { i = 1; while (_root.spaceship.maxLasers >= i) { if (this.hitTest(_root["laser" + i])) { this.gotoAndPlay(2); SpaceDead = true; } i++; } if (SpaceDead == false) { this._x = this._x + (speed * dir); distance++; if (30 < distance) { distance = 0; dir = dir * -1; } if (random(48) == 1) { _root.computer.x = this._x; _root.computer.y = this._y; _root.computer.h = this._height; } } }
Instance of Symbol 46 MovieClip "2space" in Frame 741
onClipEvent (load) { _parent.ListeSpaces.push(_name); speed = 2; dir = 1; distance = 0; SpaceDead = false; } onClipEvent (enterFrame) { i = 1; while (_root.spaceship.maxLasers >= i) { if (this.hitTest(_root["laser" + i])) { this.gotoAndPlay(2); SpaceDead = true; } i++; } if (280 < _y) { _parent.FuncGameOver(); } if (SpaceDead == false) { this._x = this._x + (speed * dir); distance++; if (30 < distance) { distance = 0; dir = dir * -1; } if (random(48) == 2) { _root.computer.x = this._x; _root.computer.y = this._y; _root.computer.h = this._height; } } }
Instance of Symbol 41 MovieClip "shot" in Frame 741
onClipEvent (load) { laserMoveSpeed = 2; this._x = _root.computer.x; this._y = _root.computer.y + _root.computer.h; if (this._name != "shot") { this._visible = true; } else { this._visible = false; } } onClipEvent (enterFrame) { if (this._name != "shot") { this._y = this._y + laserMoveSpeed; if (300 < this._y) { _root.computer.laserCounter--; this.removeMovieClip(); } if (this._currentframe == this._totalframes) { _root.computer.laserCounter--; this.removeMovieClip(); } if (this.hitTest(_root.spaceship)) { tellTarget (this) { gotoAndPlay (2); }; _root.spaceship.gotoAndPlay(2); } } }
Symbol 10 Button
on (release) { gotoAndStop (740); }
Symbol 25 Button
on (release) { gotoAndStop (740); }
Symbol 32 Button
on (release) { getURL ("http://www.margarida-romero.net", "_blank"); getURL ("http://www.schawack.com", "_blank"); }
Symbol 35 Button
on (release) { gotoAndStop (1); _parent.gotoAndPlay(1); }
Symbol 37 MovieClip Frame 1
stop();
Symbol 37 MovieClip Frame 2
j = 1; while (j < _parent.colspace) { i = 0; while (i < _parent.maxspace) { removeMovieClip(_root[(j + "space") + i]); i++; } j++; } play();
Symbol 37 MovieClip Frame 18
stop();
Symbol 39 MovieClip Frame 1
stop();
Symbol 39 MovieClip Frame 2
play();
Symbol 39 MovieClip Frame 3
_root.gameover.counter--;
Symbol 41 MovieClip Frame 1
stop();
Symbol 42 Button
on (release) { _visible = 0; _parent.gotoAndPlay(1); }
Symbol 46 MovieClip Frame 1
stop();
Symbol 46 MovieClip Frame 2
play();
Symbol 46 MovieClip Frame 4
_root.computer.total--; _root.points = _root.points + 20; this.removeMovieClip(); stop();
Symbol 47 MovieClip Frame 1
play();
Symbol 47 MovieClip Frame 15
i = 1; while (_parent.ListeSpaces.length >= i) { var KelSpace = _parent.ListeSpaces[i]; _parent[KelSpace]._y = _parent[KelSpace]._y + 2; i++; }

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 GraphicUsed by:Timeline
Symbol 3 FontUsed by:4 11 15 16 17 18 19 20 36 43
Symbol 4 TextUses:3Used by:5
Symbol 5 MovieClipUses:4Used by:Timeline
Symbol 6 FontUsed by:7
Symbol 7 TextUses:6Used by:Timeline
Symbol 8 GraphicUsed by:10 24 25 35 42
Symbol 9 GraphicUsed by:10 24 25 35 42
Symbol 10 ButtonUses:8 9Used by:Timeline
Symbol 11 TextUses:3Used by:Timeline
Symbol 12 GraphicUsed by:38 39  Timeline
Symbol 13 GraphicUsed by:38 39  Timeline
Symbol 14 GraphicUsed by:Timeline
Symbol 15 TextUses:3Used by:Timeline
Symbol 16 TextUses:3Used by:Timeline
Symbol 17 TextUses:3Used by:Timeline
Symbol 18 TextUses:3Used by:Timeline
Symbol 19 TextUses:3Used by:Timeline
Symbol 20 TextUses:3Used by:Timeline
Symbol 21 GraphicUsed by:39  Timeline
Symbol 22 FontUsed by:23
Symbol 23 TextUses:22Used by:24 25 35 42
Symbol 24 ButtonUses:8 9 23Used by:Timeline
Symbol 25 ButtonUses:8 9 23Used by:Timeline
Symbol 26 GraphicUsed by:32
Symbol 27 GraphicUsed by:32
Symbol 28 GraphicUsed by:32
Symbol 29 FontUsed by:30
Symbol 30 EditableTextUses:29Used by:32
Symbol 31 GraphicUsed by:32
Symbol 32 ButtonUses:26 27 28 30 31Used by:Timeline
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:37
Symbol 35 ButtonUses:8 9 23Used by:37
Symbol 36 TextUses:3Used by:37
Symbol 37 MovieClipUses:34 35 36Used by:Timeline
Symbol 38 MovieClipUses:12 13Used by:Timeline
Symbol 39 MovieClipUses:12 13 21Used by:Timeline
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:Timeline
Symbol 42 ButtonUses:8 9 23Used by:44
Symbol 43 TextUses:3Used by:44
Symbol 44 MovieClipUses:42 43Used by:Timeline
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClipUses:45Used by:Timeline
Symbol 47 MovieClipUsed by:Timeline

Instance Names

"gameover"Frame 741Symbol 37 MovieClip
"live1"Frame 741Symbol 38 MovieClip
"live0"Frame 741Symbol 38 MovieClip
"live2"Frame 741Symbol 38 MovieClip
"spaceship"Frame 741Symbol 39 MovieClip
"laser"Frame 741Symbol 41 MovieClip
"computer"Frame 741Symbol 44 MovieClip
"3space"Frame 741Symbol 46 MovieClip
"1space"Frame 741Symbol 46 MovieClip
"2space"Frame 741Symbol 46 MovieClip
"shot"Frame 741Symbol 41 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""




http://swfchan.com/5/24359/info.shtml
Created: 25/5 -2019 03:43:35 Last modified: 25/5 -2019 03:43:35 Server time: 11/05 -2024 18:25:22