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

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

Maze Level Editor.swf

This is the info page for
Flash #77474

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


Text
---
Move your cursor to the desired location and...

Press 1 to add a wall
Press 2 to add lava (instant death)
Press 3 to add a portal (there CAN be more than 1)
Press 4 to place the portal exit (there is only ONE)
Press 5 to place the player start position
Press 6 to place the maze exit
Press 0 to clear/erase the selected square

Close

This

Close

This

Close

This

Toggle

Grid

Toggle

Grid

Toggle

Grid

Toggle

Grid

View

Code

View

Code

View

Code

Directions

Directions

Directions

Clear

Clear

Clear

This Object can only be placed once. 
Please erase this object before you move it.

ActionScript [AS1/AS2]

Frame 1
map_disp1.borderColor = 16748544; map_disp1.backgroundColor = 16776960; map_disp1.tabEnabled = false; dir_disp1.borderColor = 16748544; dir_disp1.backgroundColor = 16776960; dir_disp1.tabEnabled = false; setProperty("end1", _visible , 1); setProperty("guy1", _visible , 1); setProperty("portal1", _visible , 1); setProperty("maze_grid1", _visible , 1); setProperty("selection1", _visible , 1); setProperty("map_disp1", _visible , 0); setProperty("dir_disp1", _visible , 0); setProperty("closeedit1", _visible , 0); setProperty("gridshowhide1", _visible , 1); setProperty("menu1", _visible , 1); menu1.gotoAndPlay(1); setProperty("alert1", _visible , 0); _top_depth = 72; function start() { gotoAndPlay(1); } stage = Stage; graphics = this; portal_exit_x = 0; portal_exit_y = 0; draw_location = 0; guyX = 320; guyY = 240; grid_show = true; row1 = new String("111111111111111111111111111111111"); row2 = new String("1P0E0=000000000000000000000000001"); row3 = new String("100000000000000000000000000000001"); row4 = new String("100000000000000000000000000000001"); row5 = new String("100000000000000000000000000000001"); row6 = new String("100000000000000000000000000000001"); row7 = new String("100000000000000000000000000000001"); row8 = new String("100000000000000000000000000000001"); row9 = new String("100000000000000000000000000000001"); row10 = new String("100000000000000000000000000000001"); row11 = new String("100000000000000000000000000000001"); row12 = new String("100000000000000000000000000000001"); row13 = new String("100000000000000000000000000000001"); row14 = new String("100000000000000000000000000000001"); row15 = new String("100000000000000000000000000000001"); row16 = new String("100000000000000000000000000000001"); row17 = new String("100000000000000000000000000000001"); row18 = new String("100000000000000000000000000000001"); row19 = new String("100000000000000000000000000000001"); row20 = new String("100000000000000000000000000000001"); row21 = new String("100000000000000000000000000000001"); row22 = new String("100000000000000000000000000000001"); row23 = new String("100000000000000000000000000000001"); row24 = new String("100000000000000000000000000000001"); row25 = new String("111111111111111111111111111111111"); row = row1; MAP = new String(""); player_row = row1; end_row = row2; portal_out_row = row2; grid_mouse = new flash.geom.Point(0, 0); function add(obj) { row_part1 = row.substring(0, grid_mouse._x); row_part2 = row.substring(grid_mouse._x + 1, 34); row_part1.length--; row_part1 = row_part1 + obj; row = row_part1 + row_part2; if (grid_mouse._y == 0) { row1 = row; } if (grid_mouse._y == 1) { row2 = row; } if (grid_mouse._y == 2) { row3 = row; } if (grid_mouse._y == 3) { row4 = row; } if (grid_mouse._y == 4) { row5 = row; } if (grid_mouse._y == 5) { row6 = row; } if (grid_mouse._y == 6) { row7 = row; } if (grid_mouse._y == 7) { row8 = row; } if (grid_mouse._y == 8) { row9 = row; } if (grid_mouse._y == 9) { row10 = row; } if (grid_mouse._y == 10) { row11 = row; } if (grid_mouse._y == 11) { row12 = row; } if (grid_mouse._y == 12) { row13 = row; } if (grid_mouse._y == 13) { row14 = row; } if (grid_mouse._y == 14) { row15 = row; } if (grid_mouse._y == 15) { row16 = row; } if (grid_mouse._y == 16) { row17 = row; } if (grid_mouse._y == 17) { row18 = row; } if (grid_mouse._y == 18) { row19 = row; } if (grid_mouse._y == 19) { row20 = row; } if (grid_mouse._y == 20) { row21 = row; } if (grid_mouse._y == 21) { row22 = row; } if (grid_mouse._y == 22) { row23 = row; } if (grid_mouse._y == 23) { row24 = row; } if (grid_mouse._y == 24) { row25 = row; } _root.redraw(); } function movePlayer() { if (player_row.charAt(_root.guy1._x / 20) != "P") { row_part1 = row.substring(0, grid_mouse._x); row_part2 = row.substring(grid_mouse._x + 1, 34); row_part1.length--; row_part1 = row_part1 + "P"; row = row_part1 + row_part2; if (grid_mouse._y == 0) { row1 = row; } if (grid_mouse._y == 1) { row2 = row; } if (grid_mouse._y == 2) { row3 = row; } if (grid_mouse._y == 3) { row4 = row; } if (grid_mouse._y == 4) { row5 = row; } if (grid_mouse._y == 5) { row6 = row; } if (grid_mouse._y == 6) { row7 = row; } if (grid_mouse._y == 7) { row8 = row; } if (grid_mouse._y == 8) { row9 = row; } if (grid_mouse._y == 9) { row10 = row; } if (grid_mouse._y == 10) { row11 = row; } if (grid_mouse._y == 11) { row12 = row; } if (grid_mouse._y == 12) { row13 = row; } if (grid_mouse._y == 13) { row14 = row; } if (grid_mouse._y == 14) { row15 = row; } if (grid_mouse._y == 15) { row16 = row; } if (grid_mouse._y == 16) { row17 = row; } if (grid_mouse._y == 17) { row18 = row; } if (grid_mouse._y == 18) { row19 = row; } if (grid_mouse._y == 19) { row20 = row; } if (grid_mouse._y == 20) { row21 = row; } if (grid_mouse._y == 21) { row22 = row; } if (grid_mouse._y == 22) { row23 = row; } if (grid_mouse._y == 23) { row24 = row; } if (grid_mouse._y == 24) { row25 = row; } _root.redraw(); } else { _root.alert1._visible = 1; } } function moveEnd() { if (end_row.charAt(_root.end1._x / 20) != "E") { row_part1 = row.substring(0, grid_mouse._x); row_part2 = row.substring(grid_mouse._x + 1, 34); row_part1.length--; row_part1 = row_part1 + "E"; row = row_part1 + row_part2; if (grid_mouse._y == 0) { row1 = row; } if (grid_mouse._y == 1) { row2 = row; } if (grid_mouse._y == 2) { row3 = row; } if (grid_mouse._y == 3) { row4 = row; } if (grid_mouse._y == 4) { row5 = row; } if (grid_mouse._y == 5) { row6 = row; } if (grid_mouse._y == 6) { row7 = row; } if (grid_mouse._y == 7) { row8 = row; } if (grid_mouse._y == 8) { row9 = row; } if (grid_mouse._y == 9) { row10 = row; } if (grid_mouse._y == 10) { row11 = row; } if (grid_mouse._y == 11) { row12 = row; } if (grid_mouse._y == 12) { row13 = row; } if (grid_mouse._y == 13) { row14 = row; } if (grid_mouse._y == 14) { row15 = row; } if (grid_mouse._y == 15) { row16 = row; } if (grid_mouse._y == 16) { row17 = row; } if (grid_mouse._y == 17) { row18 = row; } if (grid_mouse._y == 18) { row19 = row; } if (grid_mouse._y == 19) { row20 = row; } if (grid_mouse._y == 20) { row21 = row; } if (grid_mouse._y == 21) { row22 = row; } if (grid_mouse._y == 22) { row23 = row; } if (grid_mouse._y == 23) { row24 = row; } if (grid_mouse._y == 24) { row25 = row; } _root.redraw(); } else { _root.alert1._visible = 1; } } function movePort() { if (portal_out_row.charAt(_root.portal1._x / 20) != "=") { row_part1 = row.substring(0, grid_mouse._x); row_part2 = row.substring(grid_mouse._x + 1, 34); row_part1.length--; row_part1 = row_part1 + "="; row = row_part1 + row_part2; if (grid_mouse._y == 0) { row1 = row; } if (grid_mouse._y == 1) { row2 = row; } if (grid_mouse._y == 2) { row3 = row; } if (grid_mouse._y == 3) { row4 = row; } if (grid_mouse._y == 4) { row5 = row; } if (grid_mouse._y == 5) { row6 = row; } if (grid_mouse._y == 6) { row7 = row; } if (grid_mouse._y == 7) { row8 = row; } if (grid_mouse._y == 8) { row9 = row; } if (grid_mouse._y == 9) { row10 = row; } if (grid_mouse._y == 10) { row11 = row; } if (grid_mouse._y == 11) { row12 = row; } if (grid_mouse._y == 12) { row13 = row; } if (grid_mouse._y == 13) { row14 = row; } if (grid_mouse._y == 14) { row15 = row; } if (grid_mouse._y == 15) { row16 = row; } if (grid_mouse._y == 16) { row17 = row; } if (grid_mouse._y == 17) { row18 = row; } if (grid_mouse._y == 18) { row19 = row; } if (grid_mouse._y == 19) { row20 = row; } if (grid_mouse._y == 20) { row21 = row; } if (grid_mouse._y == 21) { row22 = row; } if (grid_mouse._y == 22) { row23 = row; } if (grid_mouse._y == 23) { row24 = row; } if (grid_mouse._y == 24) { row25 = row; } _root.redraw(); } else { _root.alert1._visible = 1; } } function deadClick() { } function mySite() { getURL ("http://zoranan.tripod.com/", _top); } function ScriptElementHandler() { (my);// not popped menu = new ContextMenu(); (my);// not popped (menu.hideBuiltInItems());// not popped copyright = new ContextMenuItem("", deadClick); gotomySite = new ContextMenuItem("Zoranan Productions", mySite); (my);// not popped (menu.customItems.push(copyright, gotomySite));// not popped } function onEnterFrame() { if (_root.guy1._y == 0) { player_row = row1; } if (_root.guy1._y == 20) { player_row = row2; } if (_root.guy1._y == 40) { player_row = row3; } if (_root.guy1._y == 60) { player_row = row4; } if (_root.guy1._y == 80) { player_row = row5; } if (_root.guy1._y == 100) { player_row = row6; } if (_root.guy1._y == 120) { player_row = row7; } if (_root.guy1._y == 140) { player_row = row8; } if (_root.guy1._y == 160) { player_row = row9; } if (_root.guy1._y == 180) { player_row = row10; } if (_root.guy1._y == 200) { player_row = row11; } if (_root.guy1._y == 220) { player_row = row12; } if (_root.guy1._y == 240) { player_row = row13; } if (_root.guy1._y == 260) { player_row = row14; } if (_root.guy1._y == 280) { player_row = row15; } if (_root.guy1._y == 300) { player_row = row16; } if (_root.guy1._y == 320) { player_row = row17; } if (_root.guy1._y == 340) { player_row = row18; } if (_root.guy1._y == 360) { player_row = row19; } if (_root.guy1._y == 380) { player_row = row20; } if (_root.guy1._y == 400) { player_row = row21; } if (_root.guy1._y == 420) { player_row = row22; } if (_root.guy1._y == 440) { player_row = row23; } if (_root.guy1._y == 460) { player_row = row24; } if (_root.guy1._y == 480) { player_row = row25; } if (_root.end1._y == 0) { end_row = row1; } if (_root.end1._y == 20) { end_row = row2; } if (_root.end1._y == 40) { end_row = row3; } if (_root.end1._y == 60) { end_row = row4; } if (_root.end1._y == 80) { end_row = row5; } if (_root.end1._y == 100) { end_row = row6; } if (_root.end1._y == 120) { end_row = row7; } if (_root.end1._y == 140) { end_row = row8; } if (_root.end1._y == 160) { end_row = row9; } if (_root.end1._y == 180) { end_row = row10; } if (_root.end1._y == 200) { end_row = row11; } if (_root.end1._y == 220) { end_row = row12; } if (_root.end1._y == 240) { end_row = row13; } if (_root.end1._y == 260) { end_row = row14; } if (_root.end1._y == 280) { end_row = row15; } if (_root.end1._y == 300) { end_row = row16; } if (_root.end1._y == 320) { end_row = row17; } if (_root.end1._y == 340) { end_row = row18; } if (_root.end1._y == 360) { end_row = row19; } if (_root.end1._y == 380) { end_row = row20; } if (_root.end1._y == 400) { end_row = row21; } if (_root.end1._y == 420) { end_row = row22; } if (_root.end1._y == 440) { end_row = row23; } if (_root.end1._y == 460) { end_row = row24; } if (_root.end1._y == 480) { end_row = row25; } if (_root.portal1._y == 0) { portal_out_row = row1; } if (_root.portal1._y == 20) { portal_out_row = row2; } if (_root.portal1._y == 40) { portal_out_row = row3; } if (_root.portal1._y == 60) { portal_out_row = row4; } if (_root.portal1._y == 80) { portal_out_row = row5; } if (_root.portal1._y == 100) { portal_out_row = row6; } if (_root.portal1._y == 120) { portal_out_row = row7; } if (_root.portal1._y == 140) { portal_out_row = row8; } if (_root.portal1._y == 160) { portal_out_row = row9; } if (_root.portal1._y == 180) { portal_out_row = row10; } if (_root.portal1._y == 200) { portal_out_row = row11; } if (_root.portal1._y == 220) { portal_out_row = row12; } if (_root.portal1._y == 240) { portal_out_row = row13; } if (_root.portal1._y == 260) { portal_out_row = row14; } if (_root.portal1._y == 280) { portal_out_row = row15; } if (_root.portal1._y == 300) { portal_out_row = row16; } if (_root.portal1._y == 320) { portal_out_row = row17; } if (_root.portal1._y == 340) { portal_out_row = row18; } if (_root.portal1._y == 360) { portal_out_row = row19; } if (_root.portal1._y == 380) { portal_out_row = row20; } if (_root.portal1._y == 400) { portal_out_row = row21; } if (_root.portal1._y == 420) { portal_out_row = row22; } if (_root.portal1._y == 440) { portal_out_row = row23; } if (_root.portal1._y == 460) { portal_out_row = row24; } if (_root.portal1._y == 480) { portal_out_row = row25; } if (player_row.charAt(_root.guy1._x / 20) != "P") { _root.guy1._visible = 0; } if (player_row.charAt(_root.guy1._x / 20) == "P") { _root.guy1._visible = 1; } if (end_row.charAt(_root.end1._x / 20) != "E") { _root.end1._visible = 0; } if (end_row.charAt(_root.end1._x / 20) == "E") { _root.end1._visible = 1; } if (portal_out_row.charAt(_root.portal1._x / 20) != "=") { _root.portal1._visible = 0; } if (portal_out_row.charAt(_root.portal1._x / 20) == "=") { _root.portal1._visible = 1; } fscommand ("showmenu", false); Y = Math.round(_root.guy1._y / 20); X = Math.round(_root.guy1._x / 20); grid_mouse._x = Math.round(_xmouse / 20); grid_mouse._y = Math.round(_ymouse / 20); _root.selection1._x = grid_mouse._x * 20; _root.selection1._y = grid_mouse._y * 20; if (grid_mouse._y == 0) { row = row1; } if (grid_mouse._y == 1) { row = row2; } if (grid_mouse._y == 2) { row = row3; } if (grid_mouse._y == 3) { row = row4; } if (grid_mouse._y == 4) { row = row5; } if (grid_mouse._y == 5) { row = row6; } if (grid_mouse._y == 6) { row = row7; } if (grid_mouse._y == 7) { row = row8; } if (grid_mouse._y == 8) { row = row9; } if (grid_mouse._y == 9) { row = row10; } if (grid_mouse._y == 10) { row = row11; } if (grid_mouse._y == 11) { row = row12; } if (grid_mouse._y == 12) { row = row13; } if (grid_mouse._y == 13) { row = row14; } if (grid_mouse._y == 14) { row = row15; } if (grid_mouse._y == 15) { row = row16; } if (grid_mouse._y == 16) { row = row17; } if (grid_mouse._y == 17) { row = row18; } if (grid_mouse._y == 18) { row = row19; } if (grid_mouse._y == 19) { row = row20; } if (grid_mouse._y == 20) { row = row21; } if (grid_mouse._y == 21) { row = row22; } if (grid_mouse._y == 22) { row = row23; } if (grid_mouse._y == 23) { row = row24; } if (grid_mouse._y == 24) { row = row25; } current_char = row.substr(grid_mouse._x, 1); _root.portal1._x = portal_exit_x; _root.portal1._y = portal_exit_y; _root.map_disp1.text = (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((("row1 = " + row1) + newline) + "row2 = ") + row2) + newline) + "row3 = ") + row3) + newline) + "row4 = ") + row4) + newline) + "row5 = ") + row5) + newline) + "row6 = ") + row6) + newline) + "row7 = ") + row7) + newline) + "row8 = ") + row8) + newline) + "row9 = ") + row9) + newline) + "row10 = ") + row10) + newline) + "row11 = ") + row11) + newline) + "row12 = ") + row12) + newline) + "row13 = ") + row13) + newline) + "row14 = ") + row14) + newline) + "row15 = ") + row15) + newline) + "row16 = ") + row16) + newline) + "row17 = ") + row17) + newline) + "row18 = ") + row18) + newline) + "row19 = ") + row19) + newline) + "row20 = ") + row20) + newline) + "row21 = ") + row21) + newline) + "row22 = ") + row22) + newline) + "row23 = ") + row23) + newline) + "row24 = ") + row24) + newline) + "row25 = ") + row25; var _local1 = _global.poll_objects.length - 1; while (_local1 >= 0) { var _local2 = _global.poll_objects[_local1]; _local2.poll(0.0500000007450581); _local1--; } ScriptElementHandler(); } function onKeyDown() { if (Key.getCode() == 48) { _root.add("0"); } if (Key.getCode() == 49) { _root.add("1"); } if (Key.getCode() == 50) { _root.add("L"); } if (Key.getCode() == 51) { _root.add("+"); } if (Key.getCode() == 52) { _root.movePort("="); } if (Key.getCode() == 53) { _root.movePlayer(); } if (Key.getCode() == 54) { _root.moveEnd("E"); } } Key.addListener(this);
Frame 2
function redraw() { graphics.clear(); var _local1 = 0; while (_local1 < 33) { if (row1.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 0); graphics.lineTo(_local1 * 20, 1); } if (row2.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 20); graphics.lineTo(_local1 * 20, 21); } if (row3.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 40); graphics.lineTo(_local1 * 20, 41); } if (row4.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 60); graphics.lineTo(_local1 * 20, 61); } if (row5.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 80); graphics.lineTo(_local1 * 20, 81); } if (row6.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 100); graphics.lineTo(_local1 * 20, 101); } if (row7.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 120); graphics.lineTo(_local1 * 20, 121); } if (row8.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 140); graphics.lineTo(_local1 * 20, 141); } if (row9.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 160); graphics.lineTo(_local1 * 20, 161); } if (row10.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 180); graphics.lineTo(_local1 * 20, 181); } if (row11.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 200); graphics.lineTo(_local1 * 20, 201); } if (row12.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 220); graphics.lineTo(_local1 * 20, 221); } if (row13.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 240); graphics.lineTo(_local1 * 20, 241); } if (row14.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 260); graphics.lineTo(_local1 * 20, 261); } if (row15.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 280); graphics.lineTo(_local1 * 20, 281); } if (row16.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 300); graphics.lineTo(_local1 * 20, 301); } if (row17.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 320); graphics.lineTo(_local1 * 20, 321); } if (row18.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 340); graphics.lineTo(_local1 * 20, 341); } if (row19.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 360); graphics.lineTo(_local1 * 20, 361); } if (row20.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 380); graphics.lineTo(_local1 * 20, 381); } if (row21.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 400); graphics.lineTo(_local1 * 20, 401); } if (row22.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 420); graphics.lineTo(_local1 * 20, 421); } if (row23.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 440); graphics.lineTo(_local1 * 20, 441); } if (row24.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 460); graphics.lineTo(_local1 * 20, 461); } if (row25.charAt(_local1) == "1") { graphics.lineStyle(20, (255 + (150 * 256)) + (0 * 65536), 100); graphics.moveTo(_local1 * 20, 480); graphics.lineTo(_local1 * 20, 481); } if (row1.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 0); graphics.lineTo(_local1 * 20, 1); } if (row2.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 20); graphics.lineTo(_local1 * 20, 21); } if (row3.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 40); graphics.lineTo(_local1 * 20, 41); } if (row4.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 60); graphics.lineTo(_local1 * 20, 61); } if (row5.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 80); graphics.lineTo(_local1 * 20, 81); } if (row6.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 100); graphics.lineTo(_local1 * 20, 101); } if (row7.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 120); graphics.lineTo(_local1 * 20, 121); } if (row8.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 140); graphics.lineTo(_local1 * 20, 141); } if (row9.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 160); graphics.lineTo(_local1 * 20, 161); } if (row10.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 180); graphics.lineTo(_local1 * 20, 181); } if (row11.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 200); graphics.lineTo(_local1 * 20, 201); } if (row12.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 220); graphics.lineTo(_local1 * 20, 221); } if (row13.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 240); graphics.lineTo(_local1 * 20, 241); } if (row14.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 260); graphics.lineTo(_local1 * 20, 261); } if (row15.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 280); graphics.lineTo(_local1 * 20, 281); } if (row16.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 300); graphics.lineTo(_local1 * 20, 301); } if (row17.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 320); graphics.lineTo(_local1 * 20, 321); } if (row18.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 340); graphics.lineTo(_local1 * 20, 341); } if (row19.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 360); graphics.lineTo(_local1 * 20, 361); } if (row20.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 380); graphics.lineTo(_local1 * 20, 381); } if (row21.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 400); graphics.lineTo(_local1 * 20, 401); } if (row22.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 420); graphics.lineTo(_local1 * 20, 421); } if (row23.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 440); graphics.lineTo(_local1 * 20, 441); } if (row24.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 460); graphics.lineTo(_local1 * 20, 461); } if (row25.charAt(_local1) == "L") { graphics.lineStyle(20, (0 + (45 * 256)) + (220 * 65536), 100); graphics.moveTo(_local1 * 20, 480); graphics.lineTo(_local1 * 20, 481); } if (row1.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 0; } if (row2.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 20; } if (row3.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 40; } if (row4.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 60; } if (row5.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 80; } if (row6.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 100; } if (row7.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 120; } if (row8.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 140; } if (row9.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 160; } if (row10.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 180; } if (row11.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 200; } if (row12.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 220; } if (row13.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 240; } if (row14.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 260; } if (row15.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 280; } if (row16.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 300; } if (row17.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 320; } if (row18.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 340; } if (row19.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 360; } if (row20.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 380; } if (row21.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 400; } if (row22.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 420; } if (row23.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 440; } if (row24.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 460; } if (row25.charAt(_local1) == "P") { guyX = _local1 * 20; guyY = 480; } if (row1.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 0; } if (row2.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 20; } if (row3.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 40; } if (row4.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 60; } if (row5.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 80; } if (row6.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 100; } if (row7.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 120; } if (row8.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 140; } if (row9.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 160; } if (row10.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 180; } if (row11.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 200; } if (row12.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 220; } if (row13.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 240; } if (row14.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 260; } if (row15.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 280; } if (row16.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 300; } if (row17.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 320; } if (row18.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 340; } if (row19.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 360; } if (row20.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 380; } if (row21.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 400; } if (row22.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 420; } if (row23.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 440; } if (row24.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 460; } if (row25.charAt(_local1) == "E") { _root.end1._x = _local1 * 20; _root.end1._y = 480; } if (row1.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 0); graphics.lineTo(_local1 * 20, 1); } if (row2.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 20); graphics.lineTo(_local1 * 20, 21); } if (row3.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 40); graphics.lineTo(_local1 * 20, 41); } if (row4.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 60); graphics.lineTo(_local1 * 20, 61); } if (row5.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 80); graphics.lineTo(_local1 * 20, 81); } if (row6.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 100); graphics.lineTo(_local1 * 20, 101); } if (row7.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 120); graphics.lineTo(_local1 * 20, 121); } if (row8.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 140); graphics.lineTo(_local1 * 20, 141); } if (row9.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 160); graphics.lineTo(_local1 * 20, 161); } if (row10.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 180); graphics.lineTo(_local1 * 20, 181); } if (row11.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 200); graphics.lineTo(_local1 * 20, 201); } if (row12.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 220); graphics.lineTo(_local1 * 20, 221); } if (row13.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 240); graphics.lineTo(_local1 * 20, 241); } if (row14.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 260); graphics.lineTo(_local1 * 20, 261); } if (row15.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 280); graphics.lineTo(_local1 * 20, 281); } if (row16.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 300); graphics.lineTo(_local1 * 20, 301); } if (row17.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 320); graphics.lineTo(_local1 * 20, 321); } if (row18.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 340); graphics.lineTo(_local1 * 20, 341); } if (row19.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 360); graphics.lineTo(_local1 * 20, 361); } if (row20.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 380); graphics.lineTo(_local1 * 20, 381); } if (row21.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 400); graphics.lineTo(_local1 * 20, 401); } if (row22.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 420); graphics.lineTo(_local1 * 20, 421); } if (row23.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 440); graphics.lineTo(_local1 * 20, 441); } if (row24.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 460); graphics.lineTo(_local1 * 20, 461); } if (row25.charAt(_local1) == "+") { graphics.lineStyle(20, (255 + (0 * 256)) + (200 * 65536), 100); graphics.moveTo(_local1 * 20, 480); graphics.lineTo(_local1 * 20, 481); } if (row1.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 0; } if (row2.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 20; } if (row3.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 40; } if (row4.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 60; } if (row5.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 80; } if (row6.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 100; } if (row7.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 120; } if (row8.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 140; } if (row9.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 160; } if (row10.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 180; } if (row11.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 200; } if (row12.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 220; } if (row13.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 240; } if (row14.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 260; } if (row15.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 280; } if (row16.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 300; } if (row17.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 320; } if (row18.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 340; } if (row19.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 360; } if (row20.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 380; } if (row21.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 400; } if (row22.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 420; } if (row23.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 440; } if (row24.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 460; } if (row25.charAt(_local1) == "=") { portal_exit_x = _local1 * 20; portal_exit_y = 480; } _root.guy1._x = guyX; _root.guy1._y = guyY; _local1++; } } function AutodrawElementHandler() { _root.redraw(); } AutodrawElementHandler();
Frame 3
stop();
Symbol 1 MovieClip [_init_globals] Frame 0
#initclip _global.poll_objects = new Array(); _global.poll_objects.removeValue = function (_v) { var _local2 = 0; var _local3 = this; var _local4 = _local3.length; while (_local2 < _local4) { if (_local3[_local2] == _v) { this.splice(_local2, 1); return(_local2); } _local2 = _local2 + 1; } return("removeValue"); }; (ASSetPropFlags(_global.poll_objects.removeValue, null, 1));// not popped #endinitclip
Symbol 3 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 60; _y = 20; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();
Symbol 3 MovieClip Frame 2
stop();
Symbol 7 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 20; _y = 20; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();
Symbol 7 MovieClip Frame 2
stop();
Symbol 9 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 100; _y = 20; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();
Symbol 9 MovieClip Frame 2
stop();
Symbol 13 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = -10; _y = -10; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();
Symbol 13 MovieClip Frame 2
stop();
Symbol 15 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 320; _y = 240; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();
Symbol 15 MovieClip Frame 2
stop();
Symbol 30 MovieClip Frame 1
this.stop();
Symbol 39 MovieClip Frame 1
this.stop();
Symbol 47 MovieClip Frame 1
this.stop();
Symbol 19 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.closeedit1._visible = 0; _root.map_disp1._visible = 0; _root.dir_disp1._visible = 0; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;
Symbol 19 MovieClip Frame 2
stop();
Symbol 63 MovieClip Frame 1
this.stop();
Symbol 71 MovieClip Frame 1
this.stop();
Symbol 79 MovieClip Frame 1
this.stop();
Symbol 88 MovieClip Frame 1
this.stop();
Symbol 52 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onEnterFrame() { tellTarget ("_parent") { this.result = grid_show; }; if (result != checked) { checked = result; normal._visible = !checked; button_on._visible = checked; button_down._visible = 0; mouse_over._visible = 0; if (checked) { tellTarget ("_parent") { _root.maze_grid1._visible = true; }; } else { tellTarget ("_parent") { _root.maze_grid1._visible = false; }; } } } function onRollOver() { if (!checked) { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } } function onRollOut() { if (!checked) { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; } function onRelease() { checked = !checked; normal._visible = 0; mouse_over._visible = !checked; button_down._visible = 0; button_on._visible = checked; tellTarget ("_parent") { grid_show = this.checked; }; if (checked) { tellTarget ("_parent") { _root.maze_grid1._visible = true; }; } else { tellTarget ("_parent") { _root.maze_grid1._visible = false; }; } } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; checked = false; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;
Symbol 52 MovieClip Frame 2
stop();
Symbol 103 MovieClip Frame 1
this.stop();
Symbol 110 MovieClip Frame 1
this.stop();
Symbol 117 MovieClip Frame 1
this.stop();
Symbol 93 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent._parent") { _root.map_disp1._visible = 1; _root.closeedit1._visible = 1; _root.dir_disp1._visible = 0; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;
Symbol 93 MovieClip Frame 2
stop();
Symbol 132 MovieClip Frame 1
this.stop();
Symbol 138 MovieClip Frame 1
this.stop();
Symbol 144 MovieClip Frame 1
this.stop();
Symbol 122 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent._parent") { _root.dir_disp1._visible = 1; _root.closeedit1._visible = 1; _root.map_disp1._visible = 0; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;
Symbol 122 MovieClip Frame 2
stop();
Symbol 158 MovieClip Frame 1
this.stop();
Symbol 164 MovieClip Frame 1
this.stop();
Symbol 170 MovieClip Frame 1
this.stop();
Symbol 148 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent._parent") { _root.play(); }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;
Symbol 148 MovieClip Frame 2
stop();
Symbol 92 MovieClip Frame 1
setProperty("viewcode1", _visible , 1); setProperty("directions1", _visible , 1); setProperty("clear1", _visible , 1); function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 218; _y = 502; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; viewcode1.reset(); directions1.reset(); clear1.reset(); this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();
Symbol 92 MovieClip Frame 3
stop();
Symbol 183 MovieClip Frame 1
function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function onRollOver() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = 0; } function onRollOut() { normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 1; animation._alpha = 100 * 100; } function onDragOut() { onRollOut(); } function onPress() { normal._visible = 0; mouse_over._visible = 0; button_down._visible = 1; button_on._visible = 0; tellTarget ("_parent") { _root.alert1._visible = false; }; } function onRelease() { normal._visible = 0; mouse_over._visible = 1; button_down._visible = 0; button_on._visible = checked; } function onReleaseOutside() { onRelease(); } stage = Stage; graphics = this; normal._visible = 1; mouse_over._visible = 0; button_down._visible = 0; button_on._visible = 0; animation._visible = 0; hot_zone._visible = 1; hot_zone._alpha = 0 * 100;
Symbol 183 MovieClip Frame 2
stop();
Symbol 194 MovieClip Frame 1
setProperty("alert_win1", _visible , 1); setProperty("x1", _visible , 1); function start() { gotoAndPlay(1); } function _p(xx, yy, sx, sy, rr, aa) { _x = xx; _y = yy; _xscale = sx; _yscale = sy; _rotation = rr; _alpha = aa; } function clone() { var _local1 = _root._top_depth + 1; _root._top_depth = _local1; var _local2 = "_clone" + _local1; this.duplicateMovieClip(_local2, _local1, this); var _local3 = _parent[_local2]; _local3._cc = true; clone_array.push(_local3); _local3._cp = this; return(_local3); } function reset() { _x = 320; _y = 275; _xscale = 100; _yscale = 100; _rotation = 0; _alpha = 100; alert_win1.reset(); x1.reset(); this.gotoAndPlay(1); } stage = Stage; graphics = this; clone_array = new Array(); sprite_array = new Array();
Symbol 194 MovieClip Frame 2
stop();

Library Items

Symbol 1 MovieClip [_init_globals]
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:Timeline
Symbol 5 BitmapUsed by:6
Symbol 6 GraphicUses:5Used by:7
Symbol 7 MovieClipUses:6Used by:Timeline
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:Timeline
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:13
Symbol 13 MovieClipUses:12Used by:Timeline
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:Timeline
Symbol 16 FontUsed by:17 18
Symbol 17 EditableTextUses:16Used by:Timeline
Symbol 18 EditableTextUses:16Used by:Timeline
Symbol 26 GraphicUsed by:20
Symbol 28 BitmapUsed by:29
Symbol 29 GraphicUses:28Used by:20
Symbol 32 FontUsed by:33 34 41 42 49 50 65 66 73 74 81 82 90 91 105 106 112 113 119 120 134 140 146 160 166 172 177
Symbol 33 EditableTextUses:32Used by:31
Symbol 34 EditableTextUses:32Used by:31
Symbol 31 MovieClipUses:33 34Used by:30
Symbol 30 MovieClipUses:31Used by:20
Symbol 35 GraphicUsed by:21
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:21
Symbol 41 EditableTextUses:32Used by:40
Symbol 42 EditableTextUses:32Used by:40
Symbol 40 MovieClipUses:41 42Used by:39
Symbol 39 MovieClipUses:40Used by:21
Symbol 43 GraphicUsed by:22
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:22
Symbol 49 EditableTextUses:32Used by:48
Symbol 50 EditableTextUses:32Used by:48
Symbol 48 MovieClipUses:49 50Used by:47
Symbol 47 MovieClipUses:48Used by:22
Symbol 51 GraphicUsed by:25
Symbol 20 MovieClipUses:26 29 30Used by:19
Symbol 21 MovieClipUses:35 38 39Used by:19
Symbol 22 MovieClipUses:43 46 47Used by:19
Symbol 23 MovieClip
Symbol 24 MovieClip
Symbol 25 MovieClipUses:51Used by:19
Symbol 19 MovieClipUses:20 21 22 25Used by:Timeline
Symbol 59 GraphicUsed by:53
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:53
Symbol 65 EditableTextUses:32Used by:64
Symbol 66 EditableTextUses:32Used by:64
Symbol 64 MovieClipUses:65 66Used by:63
Symbol 63 MovieClipUses:64Used by:53
Symbol 67 GraphicUsed by:54
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:54
Symbol 73 EditableTextUses:32Used by:72
Symbol 74 EditableTextUses:32Used by:72
Symbol 72 MovieClipUses:73 74Used by:71
Symbol 71 MovieClipUses:72Used by:54
Symbol 75 GraphicUsed by:55
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:55
Symbol 81 EditableTextUses:32Used by:80
Symbol 82 EditableTextUses:32Used by:80
Symbol 80 MovieClipUses:81 82Used by:79
Symbol 79 MovieClipUses:80Used by:55
Symbol 83 GraphicUsed by:58
Symbol 84 GraphicUsed by:56
Symbol 86 BitmapUsed by:87
Symbol 87 GraphicUses:86Used by:56
Symbol 90 EditableTextUses:32Used by:89
Symbol 91 EditableTextUses:32Used by:89
Symbol 89 MovieClipUses:90 91Used by:88
Symbol 88 MovieClipUses:89Used by:56
Symbol 53 MovieClipUses:59 62 63Used by:52
Symbol 54 MovieClipUses:67 70 71Used by:52
Symbol 55 MovieClipUses:75 78 79Used by:52
Symbol 56 MovieClipUses:84 87 88Used by:52
Symbol 57 MovieClip
Symbol 58 MovieClipUses:83Used by:52
Symbol 52 MovieClipUses:53 54 55 58 56Used by:Timeline
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:94
Symbol 105 EditableTextUses:32Used by:104
Symbol 106 EditableTextUses:32Used by:104
Symbol 104 MovieClipUses:105 106Used by:103
Symbol 103 MovieClipUses:104Used by:94
Symbol 108 BitmapUsed by:109
Symbol 109 GraphicUses:108Used by:95
Symbol 112 EditableTextUses:32Used by:111
Symbol 113 EditableTextUses:32Used by:111
Symbol 111 MovieClipUses:112 113Used by:110
Symbol 110 MovieClipUses:111Used by:95
Symbol 115 BitmapUsed by:116
Symbol 116 GraphicUses:115Used by:96
Symbol 119 EditableTextUses:32Used by:118
Symbol 120 EditableTextUses:32Used by:118
Symbol 118 MovieClipUses:119 120Used by:117
Symbol 117 MovieClipUses:118Used by:96
Symbol 121 GraphicUsed by:99
Symbol 94 MovieClipUses:102 103Used by:93
Symbol 95 MovieClipUses:109 110Used by:93
Symbol 96 MovieClipUses:116 117Used by:93
Symbol 97 MovieClip
Symbol 98 MovieClip
Symbol 99 MovieClipUses:121Used by:93
Symbol 93 MovieClipUses:94 95 96 99Used by:92
Symbol 130 BitmapUsed by:131
Symbol 131 GraphicUses:130Used by:123
Symbol 134 EditableTextUses:32Used by:133
Symbol 133 MovieClipUses:134Used by:132
Symbol 132 MovieClipUses:133Used by:123
Symbol 136 BitmapUsed by:137
Symbol 137 GraphicUses:136Used by:124
Symbol 140 EditableTextUses:32Used by:139
Symbol 139 MovieClipUses:140Used by:138
Symbol 138 MovieClipUses:139Used by:124
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:142Used by:125
Symbol 146 EditableTextUses:32Used by:145
Symbol 145 MovieClipUses:146Used by:144
Symbol 144 MovieClipUses:145Used by:125
Symbol 147 GraphicUsed by:128
Symbol 123 MovieClipUses:131 132Used by:122
Symbol 124 MovieClipUses:137 138Used by:122
Symbol 125 MovieClipUses:143 144Used by:122
Symbol 126 MovieClip
Symbol 127 MovieClip
Symbol 128 MovieClipUses:147Used by:122
Symbol 122 MovieClipUses:123 124 125 128Used by:92
Symbol 156 BitmapUsed by:157
Symbol 157 GraphicUses:156Used by:149
Symbol 160 EditableTextUses:32Used by:159
Symbol 159 MovieClipUses:160Used by:158
Symbol 158 MovieClipUses:159Used by:149
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:150
Symbol 166 EditableTextUses:32Used by:165
Symbol 165 MovieClipUses:166Used by:164
Symbol 164 MovieClipUses:165Used by:150
Symbol 168 BitmapUsed by:169
Symbol 169 GraphicUses:168Used by:151
Symbol 172 EditableTextUses:32Used by:171
Symbol 171 MovieClipUses:172Used by:170
Symbol 170 MovieClipUses:171Used by:151
Symbol 173 GraphicUsed by:154
Symbol 149 MovieClipUses:157 158Used by:148
Symbol 150 MovieClipUses:163 164Used by:148
Symbol 151 MovieClipUses:169 170Used by:148
Symbol 152 MovieClip
Symbol 153 MovieClip
Symbol 154 MovieClipUses:173Used by:148
Symbol 148 MovieClipUses:149 150 151 154Used by:92
Symbol 92 MovieClipUses:93 122 148Used by:Timeline
Symbol 175 BitmapUsed by:176
Symbol 176 GraphicUses:175Used by:194
Symbol 177 EditableTextUses:32Used by:194
Symbol 178 GraphicUsed by:194
Symbol 179 GraphicUsed by:194
Symbol 180 GraphicUsed by:194
Symbol 181 GraphicUsed by:194
Symbol 182 GraphicUsed by:194
Symbol 190 GraphicUsed by:184
Symbol 191 GraphicUsed by:185
Symbol 192 GraphicUsed by:186
Symbol 193 GraphicUsed by:189
Symbol 184 MovieClipUses:190Used by:183
Symbol 185 MovieClipUses:191Used by:183
Symbol 186 MovieClipUses:192Used by:183
Symbol 187 MovieClip
Symbol 188 MovieClip
Symbol 189 MovieClipUses:193Used by:183
Symbol 183 MovieClipUses:184 185 186 189Used by:194
Symbol 194 MovieClipUses:176 177 178 179 180 181 182 183Used by:Timeline

Instance Names

"end1"Frame 1Symbol 3 MovieClip
"guy1"Frame 1Symbol 7 MovieClip
"portal1"Frame 1Symbol 9 MovieClip
"maze_grid1"Frame 1Symbol 13 MovieClip
"selection1"Frame 1Symbol 15 MovieClip
"map_disp1"Frame 1Symbol 17 EditableText
"dir_disp1"Frame 1Symbol 18 EditableText
"closeedit1"Frame 1Symbol 19 MovieClip
"gridshowhide1"Frame 1Symbol 52 MovieClip
"menu1"Frame 1Symbol 92 MovieClip
"alert1"Frame 1Symbol 194 MovieClip
"core"Symbol 30 MovieClip Frame 1Symbol 31 MovieClip
"core"Symbol 39 MovieClip Frame 1Symbol 40 MovieClip
"core"Symbol 47 MovieClip Frame 1Symbol 48 MovieClip
"normal"Symbol 19 MovieClip Frame 1Symbol 20 MovieClip
"mouse_over"Symbol 19 MovieClip Frame 1Symbol 21 MovieClip
"button_down"Symbol 19 MovieClip Frame 1Symbol 22 MovieClip
"hot_zone"Symbol 19 MovieClip Frame 1Symbol 25 MovieClip
"core"Symbol 63 MovieClip Frame 1Symbol 64 MovieClip
"core"Symbol 71 MovieClip Frame 1Symbol 72 MovieClip
"core"Symbol 79 MovieClip Frame 1Symbol 80 MovieClip
"core"Symbol 88 MovieClip Frame 1Symbol 89 MovieClip
"normal"Symbol 52 MovieClip Frame 1Symbol 53 MovieClip
"mouse_over"Symbol 52 MovieClip Frame 1Symbol 54 MovieClip
"button_down"Symbol 52 MovieClip Frame 1Symbol 55 MovieClip
"hot_zone"Symbol 52 MovieClip Frame 1Symbol 58 MovieClip
"button_on"Symbol 52 MovieClip Frame 1Symbol 56 MovieClip
"core"Symbol 103 MovieClip Frame 1Symbol 104 MovieClip
"core"Symbol 110 MovieClip Frame 1Symbol 111 MovieClip
"core"Symbol 117 MovieClip Frame 1Symbol 118 MovieClip
"normal"Symbol 93 MovieClip Frame 1Symbol 94 MovieClip
"mouse_over"Symbol 93 MovieClip Frame 1Symbol 95 MovieClip
"button_down"Symbol 93 MovieClip Frame 1Symbol 96 MovieClip
"hot_zone"Symbol 93 MovieClip Frame 1Symbol 99 MovieClip
"core"Symbol 132 MovieClip Frame 1Symbol 133 MovieClip
"core"Symbol 138 MovieClip Frame 1Symbol 139 MovieClip
"core"Symbol 144 MovieClip Frame 1Symbol 145 MovieClip
"normal"Symbol 122 MovieClip Frame 1Symbol 123 MovieClip
"mouse_over"Symbol 122 MovieClip Frame 1Symbol 124 MovieClip
"button_down"Symbol 122 MovieClip Frame 1Symbol 125 MovieClip
"hot_zone"Symbol 122 MovieClip Frame 1Symbol 128 MovieClip
"core"Symbol 158 MovieClip Frame 1Symbol 159 MovieClip
"core"Symbol 164 MovieClip Frame 1Symbol 165 MovieClip
"core"Symbol 170 MovieClip Frame 1Symbol 171 MovieClip
"normal"Symbol 148 MovieClip Frame 1Symbol 149 MovieClip
"mouse_over"Symbol 148 MovieClip Frame 1Symbol 150 MovieClip
"button_down"Symbol 148 MovieClip Frame 1Symbol 151 MovieClip
"hot_zone"Symbol 148 MovieClip Frame 1Symbol 154 MovieClip
"viewcode1"Symbol 92 MovieClip Frame 1Symbol 93 MovieClip
"directions1"Symbol 92 MovieClip Frame 1Symbol 122 MovieClip
"clear1"Symbol 92 MovieClip Frame 1Symbol 148 MovieClip
"normal"Symbol 183 MovieClip Frame 1Symbol 184 MovieClip
"mouse_over"Symbol 183 MovieClip Frame 1Symbol 185 MovieClip
"button_down"Symbol 183 MovieClip Frame 1Symbol 186 MovieClip
"hot_zone"Symbol 183 MovieClip Frame 1Symbol 189 MovieClip
"alert_win1"Symbol 194 MovieClip Frame 1Symbol 177 EditableText
"x1"Symbol 194 MovieClip Frame 1Symbol 183 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "_init_globals"

Labels

"Scene 1"Frame 2




http://swfchan.com/16/77474/info.shtml
Created: 4/4 -2019 01:02:40 Last modified: 4/4 -2019 01:02:40 Server time: 15/05 -2024 02:53:05