| STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229923 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2598 · P5196 |
![]() | This is the info page for Flash #163781 |
Section 1//ComicSystemLauncher_1 (Bibliophilia_fla.ComicSystemLauncher_1) package Bibliophilia_fla { import flash.display.*; public dynamic class ComicSystemLauncher_1 extends MovieClip { public var Comic:MovieClip; public var init:Boolean; public var i:int; public var CS:ComicSystem; public function ComicSystemLauncher_1(){ addFrameScript(0, frame1); } function frame1(){ Comic = (root as MovieClip); Comic.stop(); init = false; i = 0; while (i < Comic.numChildren) { if ((Comic.getChildAt(i) is ComicSystem)){ init = true; break; }; i++; }; if (!init){ CS = new ComicSystem(); Comic.addChild(CS); }; Comic.removeChild(this); } } }//package Bibliophilia_flaSection 2//ComicSystem (ComicSystem) package { import flash.events.*; import flash.display.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.geom.*; import flash.media.*; import flash.net.*; import flash.printing.*; import flash.profiler.*; import flash.sampler.*; import flash.system.*; import flash.text.*; import flash.ui.*; import flash.utils.*; import flash.xml.*; public dynamic class ComicSystem extends MovieClip { public var Comic:MovieClip; public var Init:Boolean; public var Preloader:PreloaderScreen; public var GUI_Holder:MovieClip; public var GUI_Base:MovieClip; public var GUI_NavPrev:MovieClip; public var GUI_NavNext:MovieClip; public var GUI_PageCount:MovieClip; public var KeyDown:Boolean; public function ComicSystem(){ addFrameScript(0, frame1); } public function Initialize():void{ stage.addEventListener(KeyboardEvent.KEY_DOWN, KeyPressed, false, 0, true); stage.addEventListener(KeyboardEvent.KEY_UP, KeyReleased, false, 0, true); stage.align = StageAlign.TOP_LEFT; stage.scaleMode = StageScaleMode.NO_SCALE; GUI_Holder.addChild(GUI_Base); GUI_Base.gotoAndStop(9); GUI_Holder.addChild(GUI_PageCount); GUI_PageCount.gotoAndStop(10); GUI_Holder.addChild(GUI_NavPrev); GUI_NavPrev.gotoAndStop(1); GUI_NavPrev.base = 1; GUI_NavPrev.buttonMode = true; GUI_Holder.addChild(GUI_NavNext); GUI_NavNext.gotoAndStop(5); GUI_NavNext.base = 5; GUI_NavNext.buttonMode = true; addChild(GUI_Holder); GUI_NavPrev.addEventListener(MouseEvent.MOUSE_OVER, MouseOver, false, 0, true); GUI_NavPrev.addEventListener(MouseEvent.MOUSE_OUT, MouseOut, false, 0, true); GUI_NavPrev.addEventListener(MouseEvent.MOUSE_DOWN, MouseDown, false, 0, true); GUI_NavPrev.addEventListener(MouseEvent.CLICK, ButtonPrev, false, 0, true); GUI_NavNext.addEventListener(MouseEvent.MOUSE_OVER, MouseOver, false, 0, true); GUI_NavNext.addEventListener(MouseEvent.MOUSE_OUT, MouseOut, false, 0, true); GUI_NavNext.addEventListener(MouseEvent.MOUSE_DOWN, MouseDown, false, 0, true); GUI_NavNext.addEventListener(MouseEvent.CLICK, ButtonNext, false, 0, true); Init = true; } public function Update(_arg1:Event):void{ var _local2:Rectangle; if (!Init){ if (KeyDown){ if ((Comic.loaderInfo.bytesLoaded / Comic.loaderInfo.bytesTotal) >= 1){ Initialize(); } else { Preloader = new PreloaderScreen(); Comic.addChild(Preloader); }; KeyDown = false; }; if ((Comic.loaderInfo.bytesLoaded / Comic.loaderInfo.bytesTotal) >= 1){ Initialize(); }; } else { GUI_Holder.y = stage.stageHeight; if (Comic.currentFrame == 1){ GUI_NavPrev.gotoAndStop(4); GUI_NavPrev.buttonMode = false; } else { if (!GUI_NavPrev.buttonMode){ GUI_NavPrev.gotoAndStop(1); GUI_NavPrev.buttonMode = true; }; }; if (Comic.currentFrame == Comic.totalFrames){ GUI_NavNext.gotoAndStop(8); GUI_NavNext.buttonMode = false; } else { if (!GUI_NavNext.buttonMode){ GUI_NavNext.gotoAndStop(5); GUI_NavNext.buttonMode = true; }; }; _local2 = GUI_Base.getBounds(GUI_Holder); GUI_Base.x = (GUI_Base.x - _local2.x); GUI_Base.y = (GUI_Base.y - (GUI_Base.height + _local2.y)); GUI_Base.width = stage.stageWidth; _local2 = GUI_PageCount.getBounds(GUI_Holder); GUI_PageCount.x = (((stage.stageWidth - GUI_PageCount.width) / 2) + (GUI_PageCount.x - _local2.x)); GUI_PageCount.y = (GUI_PageCount.y - (GUI_PageCount.height + _local2.y)); if (GUI_PageCount.height < GUI_Base.height){ GUI_PageCount.y = (GUI_PageCount.y - ((GUI_Base.height - GUI_PageCount.height) / 2)); }; _local2 = GUI_NavPrev.getBounds(GUI_Holder); GUI_NavPrev.x = (GUI_NavPrev.x - _local2.x); GUI_NavPrev.y = (GUI_NavPrev.y - (GUI_NavPrev.height + _local2.y)); if (GUI_NavPrev.height < GUI_Base.height){ GUI_NavPrev.y = (GUI_NavPrev.y - ((GUI_Base.height - GUI_NavPrev.height) / 2)); }; _local2 = GUI_NavNext.getBounds(GUI_Holder); GUI_NavNext.x = ((stage.stageWidth - GUI_NavNext.width) + (GUI_NavNext.x - _local2.x)); GUI_NavNext.y = (GUI_NavNext.y - (GUI_NavNext.height + _local2.y)); if (GUI_NavNext.height < GUI_Base.height){ GUI_NavNext.y = (GUI_NavNext.y - ((GUI_Base.height - GUI_NavNext.height) / 2)); }; Comic.stop(); }; } public function MouseScroll(_arg1:MouseEvent):void{ if (_arg1.delta < 0){ Comic.nextFrame(); } else { if (_arg1.delta > 0){ Comic.prevFrame(); }; }; UpdateGUI(); } public function MouseOver(_arg1:MouseEvent):void{ if (_arg1.target.buttonMode){ _arg1.target.gotoAndStop((_arg1.target.base + 1)); }; Update(_arg1); } public function MouseOut(_arg1:MouseEvent):void{ if (_arg1.target.buttonMode){ _arg1.target.gotoAndStop(_arg1.target.base); }; Update(_arg1); } public function MouseDown(_arg1:MouseEvent):void{ if (_arg1.target.buttonMode){ _arg1.target.gotoAndStop((_arg1.target.base + 2)); }; Update(_arg1); } public function ButtonNext(_arg1:MouseEvent):void{ _arg1.target.gotoAndStop((_arg1.target.base + 1)); Comic.nextFrame(); UpdateGUI(); } public function ButtonPrev(_arg1:MouseEvent):void{ _arg1.target.gotoAndStop((_arg1.target.base + 1)); Comic.prevFrame(); UpdateGUI(); } public function KeyPressed(_arg1:KeyboardEvent):void{ var _local2:int; if (!KeyDown){ _local2 = _arg1.keyCode; if ((((((((((((((((_local2 == 32)) || ((_local2 == 13)))) || ((_local2 == 34)))) || ((_local2 == 39)))) || ((_local2 == 190)))) || ((_local2 == 187)))) || ((_local2 == 107)))) || ((_local2 == 68)))){ Comic.nextFrame(); } else { if ((((((((((((((((((_local2 == 8)) || ((_local2 == 46)))) || ((_local2 == 110)))) || ((_local2 == 33)))) || ((_local2 == 37)))) || ((_local2 == 188)))) || ((_local2 == 189)))) || ((_local2 == 109)))) || ((_local2 == 65)))){ Comic.prevFrame(); } else { if ((((_local2 == 27)) || ((_local2 == 82)))){ Comic.gotoAndStop(1); }; }; }; KeyDown = true; UpdateGUI(); }; } public function KeyReleased(_arg1:KeyboardEvent):void{ KeyDown = false; } public function UpdateGUI():void{ Comic.removeChild(this); Comic.addChild(this); } function frame1(){ Comic = (root as MovieClip); Init = false; GUI_Holder = new MovieClip(); GUI_Base = new GUIParts(); GUI_NavPrev = new GUIParts(); GUI_NavNext = new GUIParts(); GUI_PageCount = new GUIParts(); KeyDown = true; addEventListener(Event.ENTER_FRAME, Update, false, 0, true); } } }//packageSection 3//GUIParts (GUIParts) package { import flash.display.*; public dynamic class GUIParts extends MovieClip { } }//packageSection 4//PreloaderScreen (PreloaderScreen) package { import flash.events.*; import flash.display.*; public dynamic class PreloaderScreen extends MovieClip { public var Progress:MovieClip; public var Comic:MovieClip; public var FadeCounter; public function PreloaderScreen(){ addFrameScript(0, frame1); } public function Update(_arg1:Event):void{ var _local2:DisplayObject; this.x = (stage.stageWidth / 2); this.y = (stage.stageHeight / 2); _local2 = this.getChildByName("Backdrop"); if (_local2 != null){ _local2.width = stage.stageWidth; _local2.height = stage.stageHeight; _local2.x = (-(stage.stageWidth) / 2); _local2.y = (-(stage.stageHeight) / 2); }; if (Comic.currentFrame > 1){ Comic.gotoAndStop(1); }; var _local3:Number = ((Comic.loaderInfo.bytesLoaded / Comic.loaderInfo.bytesTotal) * 100); Progress.scaleX = (1 - (_local3 / 100)); if (_local3 >= 100){ FadeCounter++; alpha = ((30 - FadeCounter) / 30); if (FadeCounter >= 30){ removeEventListener(Event.ENTER_FRAME, Update); Comic.removeChild(this); }; }; } function frame1(){ Comic = (root as MovieClip); addEventListener(Event.ENTER_FRAME, Update); FadeCounter = 0; blendMode = BlendMode.LAYER; } } }//package
Library Items
Symbol 1 Graphic | Used by:2 7 | |
Symbol 2 MovieClip | Uses:1 | Used by:7 |
Symbol 3 Graphic | Used by:4 | |
Symbol 4 MovieClip | Uses:3 | Used by:7 |
Symbol 5 Graphic | Used by:6 | |
Symbol 6 MovieClip | Uses:5 | Used by:7 |
Symbol 7 MovieClip {PreloaderScreen} | Uses:1 2 4 6 | |
Symbol 8 Graphic | Used by:15 | |
Symbol 9 Graphic | Used by:15 | |
Symbol 10 Graphic | Used by:15 | |
Symbol 11 Graphic | Used by:15 | |
Symbol 12 Graphic | Used by:15 | |
Symbol 13 Graphic | Used by:15 | |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip {GUIParts} | Uses:8 9 10 11 12 13 14 | |
Symbol 16 MovieClip {ComicSystem} | ||
Symbol 17 Bitmap | Used by:18 | |
Symbol 18 Graphic | Uses:17 | Used by:Timeline |
Symbol 19 Graphic | Used by:20 | |
Symbol 20 MovieClip {Bibliophilia_fla.ComicSystemLauncher_1} | Uses:19 | Used by:Timeline |
Symbol 21 Bitmap | Used by:22 | |
Symbol 22 Graphic | Uses:21 | Used by:Timeline |
Symbol 23 Bitmap | Used by:24 | |
Symbol 24 Graphic | Uses:23 | Used by:Timeline |
Symbol 25 Bitmap | Used by:26 | |
Symbol 26 Graphic | Uses:25 | Used by:Timeline |
Symbol 27 Bitmap | Used by:28 | |
Symbol 28 Graphic | Uses:27 | Used by:Timeline |
Symbol 29 Bitmap | Used by:30 | |
Symbol 30 Graphic | Uses:29 | Used by:Timeline |
Symbol 31 Bitmap | Used by:32 | |
Symbol 32 Graphic | Uses:31 | Used by:Timeline |
Symbol 33 Bitmap | Used by:34 | |
Symbol 34 Graphic | Uses:33 | Used by:Timeline |
Symbol 35 Bitmap | Used by:36 | |
Symbol 36 Graphic | Uses:35 | Used by:Timeline |
Symbol 37 Bitmap | Used by:38 | |
Symbol 38 Graphic | Uses:37 | Used by:Timeline |
Symbol 39 Bitmap | Used by:40 | |
Symbol 40 Graphic | Uses:39 | Used by:Timeline |
Symbol 41 Bitmap | Used by:42 | |
Symbol 42 Graphic | Uses:41 | Used by:Timeline |
Symbol 43 Bitmap | Used by:44 | |
Symbol 44 Graphic | Uses:43 | Used by:Timeline |
Symbol 45 Bitmap | Used by:46 | |
Symbol 46 Graphic | Uses:45 | Used by:Timeline |
Symbol 47 Bitmap | Used by:48 | |
Symbol 48 Graphic | Uses:47 | Used by:Timeline |
Symbol 49 Bitmap | Used by:50 | |
Symbol 50 Graphic | Uses:49 | Used by:Timeline |
Symbol 51 Bitmap | Used by:52 | |
Symbol 52 Graphic | Uses:51 | Used by:Timeline |
Symbol 53 Bitmap | Used by:54 | |
Symbol 54 Graphic | Uses:53 | Used by:Timeline |
Symbol 55 Bitmap | Used by:56 | |
Symbol 56 Graphic | Uses:55 | Used by:Timeline |
Symbol 57 Bitmap | Used by:58 | |
Symbol 58 Graphic | Uses:57 | Used by:Timeline |
Symbol 59 Bitmap | Used by:60 | |
Symbol 60 Graphic | Uses:59 | Used by:Timeline |
Symbol 61 Bitmap | Used by:62 | |
Symbol 62 Graphic | Uses:61 | Used by:Timeline |
Symbol 63 Bitmap | Used by:64 | |
Symbol 64 Graphic | Uses:63 | Used by:Timeline |
Symbol 65 Bitmap | Used by:66 | |
Symbol 66 Graphic | Uses:65 | Used by:Timeline |
Symbol 67 Bitmap | Used by:68 | |
Symbol 68 Graphic | Uses:67 | Used by:Timeline |
Symbol 69 Bitmap | Used by:70 | |
Symbol 70 Graphic | Uses:69 | Used by:Timeline |
Symbol 71 Bitmap | Used by:72 | |
Symbol 72 Graphic | Uses:71 | Used by:Timeline |
Symbol 73 Bitmap | Used by:74 | |
Symbol 74 Graphic | Uses:73 | Used by:Timeline |
Symbol 75 Bitmap | Used by:76 | |
Symbol 76 Graphic | Uses:75 | Used by:Timeline |
Symbol 77 Bitmap | Used by:78 | |
Symbol 78 Graphic | Uses:77 | Used by:Timeline |
Symbol 79 Bitmap | Used by:80 | |
Symbol 80 Graphic | Uses:79 | Used by:Timeline |
Symbol 81 Bitmap | Used by:82 | |
Symbol 82 Graphic | Uses:81 | Used by:Timeline |
Symbol 83 Bitmap | Used by:84 | |
Symbol 84 Graphic | Uses:83 | Used by:Timeline |
Symbol 85 Bitmap | Used by:86 | |
Symbol 86 Graphic | Uses:85 | Used by:Timeline |
Symbol 87 Bitmap | Used by:88 | |
Symbol 88 Graphic | Uses:87 | Used by:Timeline |
Symbol 89 Bitmap | Used by:90 | |
Symbol 90 Graphic | Uses:89 | Used by:Timeline |
Symbol 91 Bitmap | Used by:92 | |
Symbol 92 Graphic | Uses:91 | Used by:Timeline |
Symbol 93 Bitmap | Used by:94 | |
Symbol 94 Graphic | Uses:93 | Used by:Timeline |
Symbol 95 Bitmap | Used by:96 | |
Symbol 96 Graphic | Uses:95 | Used by:Timeline |
Symbol 97 Bitmap | Used by:98 | |
Symbol 98 Graphic | Uses:97 | Used by:Timeline |
Symbol 99 Bitmap | Used by:100 | |
Symbol 100 Graphic | Uses:99 | Used by:Timeline |
Symbol 101 Bitmap | Used by:102 | |
Symbol 102 Graphic | Uses:101 | Used by:Timeline |
Symbol 103 Bitmap | Used by:104 | |
Symbol 104 Graphic | Uses:103 | Used by:Timeline |
Symbol 105 Bitmap | Used by:106 | |
Symbol 106 Graphic | Uses:105 | Used by:Timeline |
Symbol 107 Bitmap | Used by:108 | |
Symbol 108 Graphic | Uses:107 | Used by:Timeline |
Symbol 109 Bitmap | Used by:110 | |
Symbol 110 Graphic | Uses:109 | Used by:Timeline |
Symbol 111 Bitmap | Used by:112 | |
Symbol 112 Graphic | Uses:111 | Used by:Timeline |
Symbol 113 Bitmap | Used by:114 | |
Symbol 114 Graphic | Uses:113 | Used by:Timeline |
Symbol 115 Bitmap | Used by:116 | |
Symbol 116 Graphic | Uses:115 | Used by:Timeline |
Symbol 117 Bitmap | Used by:118 | |
Symbol 118 Graphic | Uses:117 | Used by:Timeline |
Symbol 119 Bitmap | Used by:120 | |
Symbol 120 Graphic | Uses:119 | Used by:Timeline |
Symbol 121 Bitmap | Used by:122 | |
Symbol 122 Graphic | Uses:121 | Used by:Timeline |
Symbol 123 Bitmap | Used by:124 | |
Symbol 124 Graphic | Uses:123 | Used by:Timeline |
Symbol 125 Bitmap | Used by:126 | |
Symbol 126 Graphic | Uses:125 | Used by:Timeline |
Symbol 127 Bitmap | Used by:128 | |
Symbol 128 Graphic | Uses:127 | Used by:Timeline |
Symbol 129 Bitmap | Used by:130 | |
Symbol 130 Graphic | Uses:129 | Used by:Timeline |
Symbol 131 Bitmap | Used by:132 | |
Symbol 132 Graphic | Uses:131 | Used by:Timeline |
Symbol 133 Bitmap | Used by:134 | |
Symbol 134 Graphic | Uses:133 | Used by:Timeline |
Symbol 135 Bitmap | Used by:136 | |
Symbol 136 Graphic | Uses:135 | Used by:Timeline |
Symbol 137 Bitmap | Used by:138 | |
Symbol 138 Graphic | Uses:137 | Used by:Timeline |
Symbol 139 Bitmap | Used by:140 | |
Symbol 140 Graphic | Uses:139 | Used by:Timeline |
Symbol 141 Bitmap | Used by:142 | |
Symbol 142 Graphic | Uses:141 | Used by:Timeline |
Symbol 143 Bitmap | Used by:144 | |
Symbol 144 Graphic | Uses:143 | Used by:Timeline |
Symbol 145 Bitmap | Used by:146 | |
Symbol 146 Graphic | Uses:145 | Used by:Timeline |
Symbol 147 Bitmap | Used by:148 | |
Symbol 148 Graphic | Uses:147 | Used by:Timeline |
Symbol 149 Bitmap | Used by:150 | |
Symbol 150 Graphic | Uses:149 | Used by:Timeline |
Symbol 151 Bitmap | Used by:152 | |
Symbol 152 Graphic | Uses:151 | Used by:Timeline |
Symbol 153 Bitmap | Used by:154 | |
Symbol 154 Graphic | Uses:153 | Used by:Timeline |
Symbol 155 Bitmap | Used by:156 | |
Symbol 156 Graphic | Uses:155 | Used by:Timeline |
Symbol 157 Bitmap | Used by:158 | |
Symbol 158 Graphic | Uses:157 | Used by:Timeline |
Symbol 159 Bitmap | Used by:160 | |
Symbol 160 Graphic | Uses:159 | Used by:Timeline |
Symbol 161 Bitmap | Used by:162 | |
Symbol 162 Graphic | Uses:161 | Used by:Timeline |
Symbol 163 Bitmap | Used by:164 | |
Symbol 164 Graphic | Uses:163 | Used by:Timeline |
Symbol 165 Bitmap | Used by:166 | |
Symbol 166 Graphic | Uses:165 | Used by:Timeline |
Symbol 167 Bitmap | Used by:168 | |
Symbol 168 Graphic | Uses:167 | Used by:Timeline |
Symbol 169 Bitmap | Used by:170 | |
Symbol 170 Graphic | Uses:169 | Used by:Timeline |
Symbol 171 Bitmap | Used by:172 | |
Symbol 172 Graphic | Uses:171 | Used by:Timeline |
Symbol 173 Bitmap | Used by:174 | |
Symbol 174 Graphic | Uses:173 | Used by:Timeline |
Symbol 175 Bitmap | Used by:176 | |
Symbol 176 Graphic | Uses:175 | Used by:Timeline |
Symbol 177 Bitmap | Used by:178 | |
Symbol 178 Graphic | Uses:177 | Used by:Timeline |
Symbol 179 Bitmap | Used by:180 | |
Symbol 180 Graphic | Uses:179 | Used by:Timeline |
Symbol 181 Bitmap | Used by:182 | |
Symbol 182 Graphic | Uses:181 | Used by:Timeline |
Symbol 183 Bitmap | Used by:184 | |
Symbol 184 Graphic | Uses:183 | Used by:Timeline |
Symbol 185 Bitmap | Used by:186 | |
Symbol 186 Graphic | Uses:185 | Used by:Timeline |
Symbol 187 Bitmap | Used by:188 | |
Symbol 188 Graphic | Uses:187 | Used by:Timeline |
Symbol 189 Bitmap | Used by:190 | |
Symbol 190 Graphic | Uses:189 | Used by:Timeline |
Symbol 191 Bitmap | Used by:192 | |
Symbol 192 Graphic | Uses:191 | Used by:Timeline |
Symbol 193 Bitmap | Used by:194 | |
Symbol 194 Graphic | Uses:193 | Used by:Timeline |
Symbol 195 Bitmap | Used by:196 | |
Symbol 196 Graphic | Uses:195 | Used by:Timeline |
Symbol 197 Bitmap | Used by:198 | |
Symbol 198 Graphic | Uses:197 | Used by:Timeline |
Symbol 199 Bitmap | Used by:200 | |
Symbol 200 Graphic | Uses:199 | Used by:Timeline |
Symbol 201 Bitmap | Used by:202 | |
Symbol 202 Graphic | Uses:201 | Used by:Timeline |
Symbol 203 Bitmap | Used by:204 | |
Symbol 204 Graphic | Uses:203 | Used by:Timeline |
Symbol 205 Bitmap | Used by:206 | |
Symbol 206 Graphic | Uses:205 | Used by:Timeline |
Symbol 207 Bitmap | Used by:208 | |
Symbol 208 Graphic | Uses:207 | Used by:Timeline |
Symbol 209 Bitmap | Used by:210 | |
Symbol 210 Graphic | Uses:209 | Used by:Timeline |
Symbol 211 Bitmap | Used by:212 | |
Symbol 212 Graphic | Uses:211 | Used by:Timeline |
Symbol 213 Bitmap | Used by:214 | |
Symbol 214 Graphic | Uses:213 | Used by:Timeline |
Symbol 215 Bitmap | Used by:216 | |
Symbol 216 Graphic | Uses:215 | Used by:Timeline |
Symbol 217 Bitmap | Used by:218 | |
Symbol 218 Graphic | Uses:217 | Used by:Timeline |
Symbol 219 Bitmap | Used by:220 | |
Symbol 220 Graphic | Uses:219 | Used by:Timeline |
Symbol 221 Bitmap | Used by:222 | |
Symbol 222 Graphic | Uses:221 | Used by:Timeline |
Symbol 223 Bitmap | Used by:224 | |
Symbol 224 Graphic | Uses:223 | Used by:Timeline |
Symbol 225 Bitmap | Used by:226 | |
Symbol 226 Graphic | Uses:225 | Used by:Timeline |
Symbol 227 Bitmap | Used by:228 | |
Symbol 228 Graphic | Uses:227 | Used by:Timeline |
Symbol 229 Bitmap | Used by:230 | |
Symbol 230 Graphic | Uses:229 | Used by:Timeline |
Symbol 231 Bitmap | Used by:232 | |
Symbol 232 Graphic | Uses:231 | Used by:Timeline |
Symbol 233 Bitmap | Used by:234 | |
Symbol 234 Graphic | Uses:233 | Used by:Timeline |
Symbol 235 Bitmap | Used by:236 | |
Symbol 236 Graphic | Uses:235 | Used by:Timeline |
Instance Names
"Progress" | Symbol 7 MovieClip {PreloaderScreen} Frame 1 | Symbol 2 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata present, AS3. |
SWFMetaData (77) | Timeline Frame 1 | 1296 bytes "<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmln ..." |
|