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/97467147?noj=FRM97467147-16DC" width="1" height="1"></div>

Stack'em.swf

This is the info page for
Flash #67524

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


Text
7300

Highscore

0

score

STACK'em

0

Level

Copyright © Pier-Jean Lizotte | All rights reserved.

PLAY

PLAY

help

help

more games

more games

credits

credits

(press space)

back

back

Press space to stop your row of
squares
Try to always place it directly
above the previous one
Any overheaping block will be
removed
make a perfect tower to the top

Actionscript and art by
pier-jean Lizotte

music by
Notseri

original idea by
lai games

bonus

900

100%

CONTINUE

ActionScript [AS3]

Section 1
//bonus (classes.bonus) package classes { import flash.events.*; public class bonus extends bonusMC { public function bonus(_arg1, _arg2, _arg3, _arg4):void{ x = _arg1; y = _arg2; txt.text = _arg3; txt2.text = String(_arg4); addEventListener(Event.ENTER_FRAME, enter_frame); } private function enter_frame(_arg1:Event):void{ y--; alpha = (alpha - 0.05); if (alpha <= 0){ removeEventListener(Event.ENTER_FRAME, enter_frame); parent.removeChild(this); }; } } }//package classes
Section 2
//game (classes.game) package classes { import flash.events.*; import flash.media.*; import flash.display.*; import flash.utils.*; public class game extends MovieClip { const START_DELAY:Number = 500; var delayTick:Number;// = 500 var level:Number;// = 1 var timer:Timer; var Menu:menu; var count:Number;// = 0 var multiplyer:Number;// = 9 var gameBoard:Array; var Hud; var Parent; var soundFX:Sound; var perfectStreak:Number;// = -1 var rowAt:Number;// = 14 var gameEnabled:Boolean;// = true var nbLights:Number;// = 3 var startWithOnes:Boolean;// = false var Arrows:MovieClip; var lastLeft:Boolean;// = true var direction:Number;// = 1 public function game(_arg1, _arg2, _arg3):void{ gameBoard = [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]]; timer = new Timer(0); soundFX = new buzz(); Menu = new menu(this); super(); Parent = _arg1; Hud = _arg2; Arrows = _arg3; Menu.x = 30; Menu.y = 200; Parent.addChild(Menu); Arrows.x = 30; Parent.addEventListener(KeyboardEvent.KEY_DOWN, key_down); Parent.addEventListener(KeyboardEvent.KEY_UP, key_up); gameOver(); } private function key_down(_arg1:KeyboardEvent):void{ var _local2:int; if ((((_arg1.keyCode == 32)) && (gameEnabled))){ gameEnabled = false; if (rowAt < 13){ _local2 = 0; while (_local2 < 7) { if (gameBoard[rowAt][_local2] == 1){ if (gameBoard[(rowAt + 1)][_local2] != 1){ nbLights--; gameBoard[rowAt][_local2] = 0; animationLoseLight(rowAt, _local2); }; }; _local2++; }; Hud.edit("score", (nbLights * 100), 50, (rowAt * 32), " "); Hud.edit("score", (multiplyer * 100), 150, ((rowAt * 32) - 32), "Speed bonus!"); }; render(); if (rowAt > 0){ addRow(); render(); } else { if (nbLights >= 1){ if (nbLights == 3){ Hud.edit("score", 15000, 200, 100, "Perfect tower!"); perfectStreak++; Hud.edit("score", (perfectStreak * 10000), 200, 200, ("Perfect streak x" + String(perfectStreak))); } else { perfectStreak = -1; if (nbLights == 1){ if (startWithOnes){ Hud.edit("score", 15000, 200, 100, "Slim tower"); }; }; }; levelUp(); } else { gameOver(); }; }; if (nbLights <= 0){ gameOver(); }; }; } private function levelUp():void{ Hud.edit("level", 1); Hud.edit("score", 10000, 75, 100, "Level up!"); rowAt = 14; level++; direction = 1; nbLights = 3; lastLeft = true; delayTick = (START_DELAY - (level * 15)); startWithOnes = false; reset(gameBoard); addRow(); render(); } private function gameOver():void{ timer.removeEventListener(TimerEvent.TIMER, gameTick); Parent.removeEventListener(KeyboardEvent.KEY_DOWN, key_down); Menu.addEvent(); Hud.save(); Menu.visible = true; rowAt = 14; placeArrows(); render(); } private function addRow():void{ var _local1:Number = 0; if ((((rowAt == 12)) && ((nbLights == 1)))){ startWithOnes = true; }; soundFX.play(); multiplyer = 6; placeArrows(); rowAt--; delayTick = (delayTick - (delayTick / 10)); trace(("Tick delay : " + Math.round(delayTick))); timer.removeEventListener(TimerEvent.TIMER, gameTick); timer = new Timer(delayTick); timer.addEventListener(TimerEvent.TIMER, gameTick); timer.start(); lastLeft = !(lastLeft); if (lastLeft){ _local1 = (7 - nbLights); }; var _local2:int; while (_local2 < nbLights) { gameBoard[rowAt][(_local2 + _local1)] = 1; _local2++; }; } private function animationLoseLight(_arg1, _arg2):void{ var enter_frame:Function; var i = _arg1; var j = _arg2; enter_frame = function ():void{ count++; if (gameBoard[i][j] == 0){ gameBoard[i][j] = 2; } else { if (gameBoard[i][j] == 2){ gameBoard[i][j] = 0; }; }; if (count > 20){ removeEventListener(Event.ENTER_FRAME, enter_frame); gameBoard[i][j] = 0; if (gameBoard[i][(j + 1)] == 2){ gameBoard[i][(j + 1)] = 0; } else { if (gameBoard[i][(j - 1)] == 2){ gameBoard[i][(j + 1)] = 0; }; }; }; render(); }; count = 0; addEventListener(Event.ENTER_FRAME, enter_frame); } private function reset(_arg1):void{ var _local3:int; var _local2:int; while (_local2 < _arg1.length) { _local3 = 0; while (_local3 < _arg1[0].length) { _arg1[_local2][_local3] = 0; _local3++; }; _local2++; }; } public function newGame():void{ Hud.reset("level", 1); Hud.reset("score", 0); rowAt = 14; level = 1; direction = 1; nbLights = 3; lastLeft = true; delayTick = START_DELAY; Menu.visible = false; startWithOnes = false; Parent.addEventListener(KeyboardEvent.KEY_DOWN, key_down); reset(gameBoard); addRow(); render(); } private function gameTick(_arg1:TimerEvent):void{ var _local2:Array = new Array(); if (multiplyer > 0){ multiplyer--; }; if ((((((gameBoard[rowAt][6] == 1)) && ((direction == 1)))) || ((((gameBoard[rowAt][0] == 1)) && ((direction == -1)))))){ direction = -(direction); }; var _local3:int; while (_local3 < 7) { if (gameBoard[rowAt][_local3] == 1){ _local2.push((_local3 + direction)); gameBoard[rowAt][_local3] = 0; }; _local3++; }; _local3 = 0; while (_local3 < _local2.length) { gameBoard[rowAt][_local2[_local3]] = 1; _local3++; }; render(); } private function placeArrows():void{ Arrows.y = ((rowAt * 32) + 16); } private function render():void{ var _local6:int; var _local7:tileMC; var _local8:Object; var _local1:Array = new Array(); var _local2:MovieClip = new MovieClip(); while (numChildren) { removeChildAt(0); }; var _local3:backgroundMC = new backgroundMC(); _local2.addChild(_local3); var _local4:int; while (_local4 < 14) { _local6 = 0; while (_local6 < 7) { _local7 = new tileMC(); _local7.x = (2 + (_local6 * 32)); _local7.y = (2 + (_local4 * 32)); _local7.stop(); if (gameBoard[_local4][_local6] != 0){ _local1.push(_local7); }; _local2.addChild(_local7); _local6++; }; _local4++; }; var _local5:int; while (_local5 < _local1.length) { _local8 = _local1[_local5]; _local8.nextFrame(); _local8.parent.setChildIndex(_local8, (_local8.parent.numChildren - 1)); _local5++; }; addChild(_local2); } private function key_up(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 32){ gameEnabled = true; }; } } }//package classes
Section 3
//hud (classes.hud) package classes { import flash.events.*; import flash.media.*; public class hud extends hudMC { const ADDER:Number = 591; var level:Number;// = 1 var music:Sound; var sndTransform:SoundTransform; var highscore:Number;// = 0 var Parent; var score:Number;// = 0 var channel:SoundChannel; var musicEnabled:Boolean;// = true public function hud(_arg1, _arg2):void{ music = new song(); sndTransform = new SoundTransform(0.5); super(); Parent = _arg1; highscore = _arg2; txt_highscore.text = String(highscore); channel = music.play(0, 99); channel.soundTransform = sndTransform; update(); btn_music.addEventListener(MouseEvent.MOUSE_DOWN, music_click); addEventListener(Event.ENTER_FRAME, enter_frame); } private function update():void{ txt_level.text = String(level); } public function reset(_arg1, _arg2):void{ switch (_arg1){ case "level": level = 1; break; case "score": score = 0; break; }; update(); } private function music_click(_arg1:MouseEvent):void{ if (musicEnabled){ SoundMixer.stopAll(); } else { channel = music.play(0, 99); channel.soundTransform = sndTransform; }; musicEnabled = !(musicEnabled); } public function edit(_arg1, _arg2, _arg3:Number=0, _arg4:Number=0, _arg5:String=""):void{ if (((!((_arg5 == ""))) && ((_arg2 > 0)))){ addChild(new bonus(_arg3, _arg4, _arg5, _arg2)); }; switch (_arg1){ case "level": level = (level + _arg2); break; case "score": score = (score + _arg2); break; }; save(); update(); } public function save():void{ Parent.AutoSave(Number(txt_highscore.text)); } private function enter_frame(_arg1:Event):void{ if (Number(txt_score.text) < (score - ADDER)){ txt_score.text = String((Number(txt_score.text) + ADDER)); } else { txt_score.text = String(score); }; if (Number(txt_highscore.text) < (highscore - ADDER)){ txt_highscore.text = String((Number(txt_highscore.text) + ADDER)); } else { txt_highscore.text = String(highscore); }; if (score > highscore){ highscore = score; }; } } }//package classes
Section 4
//menu (classes.menu) package classes { import flash.events.*; import flash.net.*; public class menu extends menuMC { var Parent; public function menu(_arg1):void{ Parent = _arg1; addFrameScript(0, frame1); addFrameScript(1, frame2); addFrameScript(2, frame3); } private function key_down(_arg1:KeyboardEvent):void{ play_click(); } private function credits_click(_arg1:MouseEvent):void{ gotoAndStop("credits"); } private function frame1():void{ stop(); addEvent(); btn_play.addEventListener(MouseEvent.MOUSE_DOWN, play_click); btn_help.addEventListener(MouseEvent.MOUSE_DOWN, help_click); btn_moregames.addEventListener(MouseEvent.MOUSE_DOWN, moregames_click); btn_credits.addEventListener(MouseEvent.MOUSE_DOWN, credits_click); } private function frame2():void{ btn_back.addEventListener(MouseEvent.MOUSE_DOWN, back_click); } private function frame3():void{ btn_back.addEventListener(MouseEvent.MOUSE_DOWN, back_click); } private function help_click(_arg1:MouseEvent):void{ gotoAndStop("help"); } private function back_click(_arg1:MouseEvent):void{ gotoAndStop("main"); } private function moregames_click(_arg1:MouseEvent):void{ var _local2:URLRequest = new URLRequest("http://www.minijuegos.com/"); navigateToURL(_local2); } public function addEvent():void{ stage.addEventListener(KeyboardEvent.KEY_DOWN, key_down); } private function play_click(_arg1:MouseEvent=null):void{ stage.removeEventListener(KeyboardEvent.KEY_DOWN, key_down); Parent.newGame(); } } }//package classes
Section 5
//AdLoader (CPMStar.AdLoader) package CPMStar { import flash.events.*; import flash.display.*; import flash.net.*; import flash.system.*; public class AdLoader extends Sprite { private var cpmstarLoader:Loader; private var contentspotid:String; public function AdLoader(_arg1:String){ this.contentspotid = _arg1; addEventListener(Event.ADDED, addedHandler); } private function dispatchHandler(_arg1:Event):void{ dispatchEvent(_arg1); } private function addedHandler(_arg1:Event):void{ removeEventListener(Event.ADDED, addedHandler); Security.allowDomain("server.cpmstar.com"); var _local2 = "http://server.cpmstar.com/adviewas3.swf"; var _local3:DisplayObjectContainer = parent; cpmstarLoader = new Loader(); cpmstarLoader.contentLoaderInfo.addEventListener(Event.INIT, dispatchHandler); cpmstarLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, dispatchHandler); cpmstarLoader.load(new URLRequest(((_local2 + "?contentspotid=") + contentspotid))); addChild(cpmstarLoader); } } }//package CPMStar
Section 6
//loader_3 (stackem_fla.loader_3) package stackem_fla { import flash.display.*; public dynamic class loader_3 extends MovieClip { public function loader_3(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package stackem_fla
Section 7
//MainTimeline (stackem_fla.MainTimeline) package stackem_fla { import flash.events.*; import flash.media.*; import CPMStar.*; import flash.display.*; import flash.text.*; import classes.*; import flash.net.*; import flash.utils.*; import flash.system.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.geom.*; import flash.printing.*; import flash.profiler.*; import flash.sampler.*; import flash.ui.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var Game:game; public var Hud:hud; public var ad:DisplayObject; public var CPMStarContentSpotID:String; public var saved_info:SharedObject; public var adBox:MovieClip; public var btn_continue:SimpleButton; public var minijuegos:MovieClip; public var Arrows:arrowsMC; public var txt_percent:TextField; public var highscore:Number; public function MainTimeline(){ addFrameScript(0, frame1, 2, frame3, 3, frame4); } public function preload(_arg1:Event):void{ var _local2:Number = Math.round(((this.loaderInfo.bytesLoaded / this.loaderInfo.bytesTotal) * 100)); txt_percent.text = (String(_local2) + "%"); if (_local2 == 100){ removeEventListener(Event.ENTER_FRAME, preload); btn_continue.visible = true; txt_percent.visible = false; btn_continue.addEventListener(MouseEvent.MOUSE_DOWN, continue_click); }; } public function AutoLoad():void{ highscore = saved_info.data.Highscore; if (!highscore){ trace("No highscore found. Reset at 7300"); highscore = 7300; } else { trace(("Loaded highscore : " + highscore)); }; } function frame4(){ stop(); Arrows = new arrowsMC(); Hud = new hud(this, highscore); Game = new game(stage, Hud, Arrows); Game.x = 30; Game.y = 30; addChild(Game); addChild(Hud); addChild(Arrows); } function frame3(){ stop(); } public function continue_click(_arg1:MouseEvent):void{ gotoAndStop("intro"); } public function AutoSave(_arg1):void{ if (saved_info.data.Highscore < _arg1){ saved_info.data.Highscore = new Number(_arg1); trace(("Saved highscore : " + saved_info.data.Highscore)); }; } function frame1(){ stop(); highscore = 7300; saved_info = SharedObject.getLocal("user_data2"); btn_continue.visible = false; CPMStarContentSpotID = "443QC19CC609"; ad = new AdLoader(CPMStarContentSpotID); adBox.addChild(ad); addEventListener(Event.ENTER_FRAME, preload); AutoLoad(); } } }//package stackem_fla
Section 8
//MINIJUEGOS_4 (stackem_fla.MINIJUEGOS_4) package stackem_fla { import flash.display.*; public dynamic class MINIJUEGOS_4 extends MovieClip { public function MINIJUEGOS_4(){ addFrameScript(99, frame100); } function frame100(){ MovieClip(parent).play(); } } }//package stackem_fla
Section 9
//arrowsMC (arrowsMC) package { import flash.display.*; public dynamic class arrowsMC extends MovieClip { } }//package
Section 10
//backgroundMC (backgroundMC) package { import flash.display.*; public dynamic class backgroundMC extends MovieClip { } }//package
Section 11
//bonusMC (bonusMC) package { import flash.display.*; import flash.text.*; public dynamic class bonusMC extends MovieClip { public var txt:TextField; public var txt2:TextField; } }//package
Section 12
//buzz (buzz) package { import flash.media.*; public dynamic class buzz extends Sound { } }//package
Section 13
//hudMC (hudMC) package { import flash.display.*; import flash.text.*; public dynamic class hudMC extends MovieClip { public var txt_highscore:TextField; public var txt_score:TextField; public var txt_level:TextField; public var btn_music:SimpleButton; } }//package
Section 14
//menuMC (menuMC) package { import flash.display.*; public dynamic class menuMC extends MovieClip { public var btn_play:SimpleButton; public var btn_credits:SimpleButton; public var btn_moregames:SimpleButton; public var btn_back:SimpleButton; public var btn_help:SimpleButton; } }//package
Section 15
//song (song) package { import flash.media.*; public dynamic class song extends Sound { } }//package
Section 16
//tileMC (tileMC) package { import flash.display.*; public dynamic class tileMC extends MovieClip { } }//package

Library Items

Symbol 1 GraphicUsed by:4 153  Timeline
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:4
Symbol 4 MovieClip {tileMC}Uses:1 3
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClip {backgroundMC}Uses:5
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClip {arrowsMC}Uses:7
Symbol 9 GraphicUsed by:22
Symbol 10 FontUsed by:11 12 13 14 15 16 17 25 26 28 29 31 32 34 35 37 39 40 42 43 44 45 47 48 52 55
Symbol 11 EditableTextUses:10Used by:22
Symbol 12 TextUses:10Used by:22
Symbol 13 EditableTextUses:10Used by:22
Symbol 14 TextUses:10Used by:22
Symbol 15 TextUses:10Used by:22
Symbol 16 EditableTextUses:10Used by:22
Symbol 17 TextUses:10Used by:22
Symbol 18 FontUsed by:19
Symbol 19 TextUses:18Used by:22
Symbol 20 GraphicUsed by:21
Symbol 21 ButtonUses:20Used by:22
Symbol 22 MovieClip {hudMC}Uses:9 11 12 13 14 15 16 17 19 21
Symbol 23 GraphicUsed by:46
Symbol 24 GraphicUsed by:27 30 33 36 41 56
Symbol 25 TextUses:10Used by:27
Symbol 26 TextUses:10Used by:27
Symbol 27 ButtonUses:24 25 26Used by:46
Symbol 28 TextUses:10Used by:30 46
Symbol 29 TextUses:10Used by:30
Symbol 30 ButtonUses:24 28 29Used by:46
Symbol 31 TextUses:10Used by:33
Symbol 32 TextUses:10Used by:33
Symbol 33 ButtonUses:24 31 32Used by:46
Symbol 34 TextUses:10Used by:36 46
Symbol 35 TextUses:10Used by:36
Symbol 36 ButtonUses:24 34 35Used by:46
Symbol 37 TextUses:10Used by:46
Symbol 38 GraphicUsed by:46
Symbol 39 TextUses:10Used by:41
Symbol 40 TextUses:10Used by:41
Symbol 41 ButtonUses:24 39 40Used by:46
Symbol 42 TextUses:10Used by:46
Symbol 43 TextUses:10Used by:46
Symbol 44 TextUses:10Used by:46
Symbol 45 TextUses:10Used by:46
Symbol 46 MovieClip {menuMC}Uses:23 27 30 33 36 37 38 28 41 42 34 43 44 45
Symbol 47 EditableTextUses:10Used by:49
Symbol 48 EditableTextUses:10Used by:49
Symbol 49 MovieClip {bonusMC}Uses:47 48
Symbol 50 BitmapUsed by:51
Symbol 51 GraphicUses:50Used by:Timeline
Symbol 52 EditableTextUses:10Used by:Timeline
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:Timeline
Symbol 55 TextUses:10Used by:56
Symbol 56 ButtonUses:24 55Used by:Timeline
Symbol 57 GraphicUsed by:60
Symbol 58 Sound {buzz}Used by:60
Symbol 59 Sound {song}Used by:60
Symbol 60 MovieClip {stackem_fla.loader_3}Uses:57 58 59Used by:Timeline
Symbol 61 BitmapUsed by:62 65
Symbol 62 GraphicUses:61Used by:153
Symbol 63 ShapeTweeningUsed by:153
Symbol 64 ShapeTweeningUsed by:153
Symbol 65 GraphicUses:61Used by:153
Symbol 66 BitmapUsed by:67 75
Symbol 67 GraphicUses:66Used by:153
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:153
Symbol 70 BitmapUsed by:71
Symbol 71 GraphicUses:70Used by:153
Symbol 72 BitmapUsed by:73 74
Symbol 73 GraphicUses:72Used by:153
Symbol 74 GraphicUses:72Used by:153
Symbol 75 GraphicUses:66Used by:153
Symbol 76 GraphicUsed by:153
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:153
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:153
Symbol 81 GraphicUsed by:153
Symbol 82 GraphicUsed by:153
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:153
Symbol 85 GraphicUsed by:153
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:153
Symbol 88 GraphicUsed by:153
Symbol 89 BitmapUsed by:90 91 92
Symbol 90 GraphicUses:89Used by:153
Symbol 91 GraphicUses:89Used by:153
Symbol 92 GraphicUses:89Used by:153
Symbol 93 GraphicUsed by:153
Symbol 94 GraphicUsed by:153
Symbol 95 GraphicUsed by:153
Symbol 96 GraphicUsed by:153
Symbol 97 GraphicUsed by:153
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:153
Symbol 100 GraphicUsed by:153
Symbol 101 GraphicUsed by:106
Symbol 102 GraphicUsed by:106 140
Symbol 103 GraphicUsed by:106
Symbol 104 GraphicUsed by:106 110 115 120 125 130 135 140 145
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:101 102 103 104 105Used by:146
Symbol 107 GraphicUsed by:110
Symbol 108 GraphicUsed by:110
Symbol 109 GraphicUsed by:110
Symbol 110 MovieClipUses:107 108 104 109Used by:146
Symbol 111 GraphicUsed by:115
Symbol 112 GraphicUsed by:115
Symbol 113 GraphicUsed by:115
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:111 112 113 104 114Used by:146
Symbol 116 GraphicUsed by:120
Symbol 117 GraphicUsed by:120
Symbol 118 GraphicUsed by:120
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:116 117 118 104 119Used by:146
Symbol 121 GraphicUsed by:125
Symbol 122 GraphicUsed by:125
Symbol 123 GraphicUsed by:125
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:121 122 123 104 124Used by:146
Symbol 126 GraphicUsed by:130
Symbol 127 GraphicUsed by:130
Symbol 128 GraphicUsed by:130
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:126 127 128 104 129Used by:146
Symbol 131 GraphicUsed by:135 140
Symbol 132 GraphicUsed by:135
Symbol 133 GraphicUsed by:135 140
Symbol 134 GraphicUsed by:135 140
Symbol 135 MovieClipUses:131 132 133 104 134Used by:146
Symbol 136 GraphicUsed by:139
Symbol 137 GraphicUsed by:139
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:136 137 138Used by:146
Symbol 140 MovieClipUses:131 102 133 104 134Used by:146
Symbol 141 GraphicUsed by:145
Symbol 142 GraphicUsed by:145
Symbol 143 GraphicUsed by:145
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:141 142 143 104 144Used by:146
Symbol 146 MovieClipUses:106 110 115 120 125 130 135 139 140 145Used by:153
Symbol 147 ShapeTweeningUsed by:153
Symbol 148 ShapeTweeningUsed by:153
Symbol 149 GraphicUsed by:153
Symbol 150 GraphicUsed by:153
Symbol 151 GraphicUsed by:153
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClip {stackem_fla.MINIJUEGOS_4}Uses:1 62 63 64 65 67 69 71 73 74 75 76 78 80 81 82 84 85 87 88 90 91 92 93 94 95 96 97 99 100 146 147 148 149 150 151 152Used by:Timeline

Instance Names

"txt_percent"Frame 1Symbol 52 EditableText
"adBox"Frame 1Symbol 54 MovieClip
"btn_continue"Frame 1Symbol 56 Button
"minijuegos"Frame 3Symbol 153 MovieClip {stackem_fla.MINIJUEGOS_4}
"txt_highscore"Symbol 22 MovieClip {hudMC} Frame 1Symbol 11 EditableText
"txt_score"Symbol 22 MovieClip {hudMC} Frame 1Symbol 13 EditableText
"txt_level"Symbol 22 MovieClip {hudMC} Frame 1Symbol 16 EditableText
"btn_music"Symbol 22 MovieClip {hudMC} Frame 1Symbol 21 Button
"btn_play"Symbol 46 MovieClip {menuMC} Frame 1Symbol 27 Button
"btn_help"Symbol 46 MovieClip {menuMC} Frame 1Symbol 30 Button
"btn_moregames"Symbol 46 MovieClip {menuMC} Frame 1Symbol 33 Button
"btn_credits"Symbol 46 MovieClip {menuMC} Frame 1Symbol 36 Button
"btn_back"Symbol 46 MovieClip {menuMC} Frame 2Symbol 41 Button
"txt"Symbol 49 MovieClip {bonusMC} Frame 1Symbol 47 EditableText
"txt2"Symbol 49 MovieClip {bonusMC} Frame 1Symbol 48 EditableText

Special Tags

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

Labels

"intro"Frame 3
"main"Frame 4
"main"Symbol 46 MovieClip {menuMC} Frame 1
"help"Symbol 46 MovieClip {menuMC} Frame 2
"credits"Symbol 46 MovieClip {menuMC} Frame 3




http://swfchan.com/14/67524/info.shtml
Created: 11/4 -2019 12:22:12 Last modified: 11/4 -2019 12:22:12 Server time: 16/05 -2024 11:27:53