Frame 1
var my_cm = new ContextMenu();
my_cm.hideBuiltInItems();
this.menu = my_cm;
MochiAd.showPreloaderAd({id:"78f69be61eef6646", res:"399x550"});
Frame 3
if (_root.getBytesLoaded() < _root.getBytesTotal()) {
gotoAndStop ("loading");
}
Instance of Symbol 321 MovieClip in Frame 12
//component parameters
onClipEvent (construct) {
_game_name = "b29";
score_var = "";
}
Frame 121
function defaultKeys() {
keyCode = {up:87, down:83, right:68, left:65, bomb:32};
}
function createMC() {
bullet_mc = createEmptyMovieClip("bullet_mc", depth_bullet);
effect_mc = attachMovie("effect_mc", "effect_mc", depth_effect);
item_mc = createEmptyMovieClip("item_mc", depth_item);
}
function loadRole() {
role_mc = _root.attachMovie("role", "role_mc", depth_role);
role = new Role(role_mc, keyCode);
role.setDir();
role.moveIn();
}
function loadBg(_bg) {
var _local2;
dirY = stageArray[stageID][1];
_local2 = stageArray[stageID][0];
bg_mc = _root.attachMovie("bg_loader", "bg_mc", depth_bg);
bg_mc.init(_local2);
}
function loadEnemy() {
var _local2 = stageArray[stageID][3];
enemy_loader = _root.attachMovie("enemy_loader_" + _local2, "enemy_loader", depth_enemy);
}
function loadUI() {
UI_mc = _root.attachMovie("UI_mc", "UI_mc", depth_UI);
UI_mc._x = 0;
UI_mc._y = stage_h;
}
function loadWarning() {
var _local2;
_local2 = _root.attachMovie("UI_warning", "UI_warning", depths_screen);
_local2._x = 200;
_local2._y = 250;
}
function gotoStage(id) {
stageID = id - 1;
game_restart();
}
function addWeaponControl(weapon, lv) {
weaponControl_mc.removeMovieClip();
weaponControl_mc = attachMovie("weaponControl_" + weapon, "weaponControl_mc", depth_draw);
weaponControl_mc.setLv(lv);
}
function smokeEffect(source_mc) {
effect_mc.pushSource(source_mc);
}
function dorpItem(_item, sourceMC) {
var _local2 = _root.item_mc.getNextHighestDepth();
var _local3 = _root.item_mc.attachMovie(_item, "item_" + _local2, _local2);
_local3._x = sourceMC._x;
_local3._y = sourceMC._y;
}
function addScore(pt) {
score = score + pt;
score_1up = score_1up + pt;
if (score_1up > 50000) {
roleLife++;
UI_mc.lifeNum_mc.showNum(roleLife);
score_1up = 0;
}
}
function roleDie() {
if (roleLife == 0) {
game_over_1();
return(undefined);
}
roleLife--;
UI_mc.weapon1_mc2.showLv(0);
UI_mc.weapon2_mc2.showLv(0);
loadRole();
}
function game_reSetData() {
}
function game_start() {
gotoAndPlay ("start");
}
function game_restart() {
role_mc.removeMovieClip();
bg_mc.removeMovieClip();
enemy_loader.removeMovieClip();
weaponControl_mc.removeMovieClip();
UI_mc.removeMovieClip();
bullet_mc.removeMovieClip();
effect_mc.removeMovieClip();
item_mc.removeMovieClip();
role = null;
score = scoreTemp;
gotoAndPlay ("load");
inPause = false;
}
function game_over_1() {
var _local2 = "UI_gameOver";
var _local3 = _root.attachMovie(_local2, _local2, depths_screen);
_local3.inGameOver = true;
UI_mc.gotoAndStop(2);
}
function game_over_2() {
inPause = true;
}
function game_continue() {
role_mc.removeMovieClip();
bg_mc.removeMovieClip();
enemy_loader.removeMovieClip();
weaponControl_mc.removeMovieClip();
UI_mc.removeMovieClip();
bullet_mc.removeMovieClip();
effect_mc.removeMovieClip();
item_mc.removeMovieClip();
roleLife = roleLifeMax;
score = int(score * 0.7);
scoreTemp = score;
gotoAndPlay ("load");
inPause = false;
}
function game_mainMenu() {
role_mc.removeMovieClip();
bg_mc.removeMovieClip();
enemy_loader.removeMovieClip();
weaponControl_mc.removeMovieClip();
UI_mc.removeMovieClip();
bullet_mc.removeMovieClip();
effect_mc.removeMovieClip();
item_mc.removeMovieClip();
roleLife = roleLifeMax;
stageID = 0;
score = 0;
score_1up = 0;
gotoAndStop ("mainMenu");
inPause = false;
}
function game_PlayAgain() {
gameLevel++;
game_setLevel(gameLevel);
stageID = 0;
createMC();
loadBg();
loadEnemy();
role.setPos(startPos_x, startPos_y);
role.setLife(1);
}
function game_showMenu() {
if (UI.inGameOver) {
return(undefined);
}
if (UI_menu instanceof MovieClip) {
game_closeMenu();
return(undefined);
}
inPause = true;
var _local2 = "UI_menu";
var UI = _root.attachMovie(_local2, _local2, depths_screen);
}
function game_closeMenu() {
inPause = false;
UI_menu.removeMovieClip();
}
function checkBack(stageID) {
if (stageArray[stageID][2] == true) {
return(true);
}
}
function game_passStage_1() {
if (UI.inGameOver) {
return(undefined);
}
var _local2;
trace("stageID: " + stageID);
if (stageID == (stageArray.length - 1)) {
game_win();
return(undefined);
}
if (checkBack(stageID)) {
_local2 = "UI_pass2";
} else {
_local2 = "UI_pass";
}
var UI = _root.attachMovie(_local2, _local2, depths_screen);
UI_mc.gotoAndStop(2);
}
function game_passStage_2() {
bg_mc.removeMovieClip();
enemy_loader.removeMovieClip();
bullet_mc.removeMovieClip();
effect_mc.removeMovieClip();
item_mc.removeMovieClip();
stageID++;
scoreTemp = score;
createMC();
loadBg();
loadEnemy();
role.setPos(startPos_x, startPos_y);
role.setLife(1);
role.setPower(-500);
role.setDir();
}
function game_passStage_2_2() {
bg_mc.removeMovieClip();
enemy_loader.removeMovieClip();
bullet_mc.removeMovieClip();
effect_mc.removeMovieClip();
item_mc.removeMovieClip();
stageID++;
scoreTemp = score;
createMC();
loadBg();
loadEnemy();
role.setLife(1);
role.setPower(-500);
}
function game_passStage_3() {
inPause = false;
_root.role.inControl = true;
UI_mc.gotoAndStop(1);
}
function game_win() {
var _local2 = "UI_win";
var _local3 = _root.attachMovie(_local2, _local2, depths_screen);
UI_mc.gotoAndStop(2);
}
function game_resetRole() {
}
function game_setLevel(level) {
trace("game_setLevel: " + level);
gameLevel = level;
if (level == 1) {
time_shoot_rate = 1.3;
V_bullet_rate = 0.8;
life_rate = 1;
maxNum_Plus = 0;
item1_rate = 1;
item2_rate = 1;
item3_rate = 0.3;
powerInc_rate = 0.05;
} else if (level == 2) {
time_shoot_rate = 1;
V_bullet_rate = 1;
life_rate = 1;
maxNum_Plus = 0;
item1_rate = 1;
item2_rate = 1;
item3_rate = 0.2;
powerInc_rate = 0.05;
} else if (level == 3) {
time_shoot_rate = 0.6;
time_shoot_rate = 0.6;
V_bullet_rate = 1.2;
life_rate = 1.3;
maxNum_Plus = 2;
item1_rate = 0.7;
item2_rate = 0.7;
item3_rate = 0.2;
powerInc_rate = 0.05;
} else {
time_shoot_rate = 0.5;
V_bullet_rate = 1.4;
life_rate = 2;
maxNum_Plus = 3;
item1_rate = 0.5;
item2_rate = 0.5;
item3_rate = 0.2;
powerInc_rate = 0.05;
}
}
function musicStart() {
bgMusic_snd.stop();
bgMusic_snd.start(0, 1);
bgMusic_snd.onSoundComplete = function () {
this.start(24, 1);
};
}
function getSound(obj) {
if (soundOn) {
return(true);
}
if (soundOn == false) {
return(false);
}
}
function getMusic(obj) {
if (musicOn) {
return(true);
}
if (musicOn == false) {
return(false);
}
}
function setSound(obj) {
if (soundOn == false) {
soundOn = true;
obj.gotoAndStop(1);
} else if (soundOn) {
soundOn = false;
obj.gotoAndStop(2);
}
}
function setMusic(obj) {
if (musicOn == false) {
bgMusic_snd.setVolume(100);
musicOn = true;
obj.gotoAndStop(1);
} else if (musicOn) {
bgMusic_snd.setVolume(0);
musicOn = false;
obj.gotoAndStop(2);
}
}
function soundStart(soundName) {
if (soundOn) {
var _local2 = this[soundName];
_local2.start();
}
}
function game_setDifficulty(num) {
game_level = num;
menu_difficulty.mc_1.gotoAndStop(1);
menu_difficulty.mc_2.gotoAndStop(1);
menu_difficulty.mc_3.gotoAndStop(1);
menu_difficulty["mc_" + game_level].gotoAndStop(2);
set_level(num);
}
function game_getDifficulty(obj) {
obj.mc1.gotoAndStop(1);
obj.mc2.gotoAndStop(1);
obj.mc3.gotoAndStop(1);
obj["mc_" + game_level].gotoAndStop(2);
menu_difficulty = obj;
set_level(game_level);
}
function game_setQuality(num) {
game_quality = num;
menu_quality.mc_1.gotoAndStop(1);
menu_quality.mc_2.gotoAndStop(1);
menu_quality.mc_3.gotoAndStop(1);
menu_quality.mc_4.gotoAndStop(1);
menu_quality["mc_" + game_quality].gotoAndStop(2);
if (num == 1) {
_quality = "LOW";
} else if (num == 2) {
_quality = "MEDIUM";
} else if (num == 4) {
_quality = "BEST";
} else {
_quality = "HIGH";
}
}
function game_getQuality(obj) {
if (_quality == "LOW") {
game_quality = 1;
} else if (_quality == "MEDIUM") {
game_quality = 2;
} else if (_quality == "BEST") {
game_quality = 4;
} else {
game_quality = 3;
}
obj.mc1.gotoAndStop(1);
obj.mc2.gotoAndStop(1);
obj.mc3.gotoAndStop(1);
obj.mc4.gotoAndStop(1);
obj["mc_" + game_quality].gotoAndStop(2);
menu_quality = obj;
}
_root.reserved.swapDepths(-2);
_root.focusManager.swapDepths(-1);
var stage_w = 400;
var stage_h = 500;
var startPos_x = (stage_w / 2);
var startPos_y = (stage_h - 50);
var depth_role = 90;
var depth_enemy = 50;
var depth_item = 80;
var depth_bg = 20;
var depth_bullet = 120;
var depth_draw = 150;
var depth_effect = 160;
var depth_UI = 250;
var depths_screen = 260;
var depth_musicMC = 360;
var depth_soundEffectMC = 370;
var keyCode = {up:87, down:83, right:68, left:65, bomb:32};
var itemObj = {powerUP1:"powerUP1", powerUP2:"powerUP2", lifeUP1:"lifeUP1", lifeUP2:"lifeUP2", lifeUP3:"lifeUP3", powerInc:"powerInc", powerInc_ground:"powerInc_ground"};
var shadowOn = true;
var dirY;
var stageArray = new Array();
stageArray[0] = ["ld2", 1, true, "ld2", 2, 4000];
stageArray[1] = ["ld2", -1, false, "ld2_b", 2, 4000];
stageArray[2] = ["sdn", 1, true, "sdn", 3, 4000];
stageArray[3] = ["sdn", -1, false, "sdn_b", 3, 4000];
stageArray[4] = ["wsd", 1, true, "wsd", 3, 3000];
stageArray[5] = ["wsd", -1, false, "wsd_b", 3, 3000];
var powerUse = new Object();
powerUse.missile = 30;
powerUse.canon = 30;
powerUse.lightning = 20;
powerUse.deflector = 8;
var bombNumStart = 3;
var item1_rate;
var item2_rate;
var item3_rate;
var powerInc_rate;
var inPause = false;
_quality = "MEDIUM";
var stageID = 0;
var score = 0;
var scoreTemp = 0;
var score_1up = 0;
var roleLifeMax = 5;
var roleLife = roleLifeMax;
var time_shoot_rate = 1;
var V_bullet_rate = 1;
var life_rate = 1;
var gameLevel = 2;
var maxNum;
var maxNum_Plus = 0;
var bullet_mc;
var effect_mc;
var item_mc;
var role;
var role_mc;
var bg_mc;
var enemy_loader;
var UI_mc;
var weaponControl_mc;
game_setLevel(gameLevel);
var soundOn = true;
var musicOn = true;
var soundEffect_mc = createEmptyMovieClip("soundEffect_mc", depth_soundEffectMC);
var soundShoot_mc = createEmptyMovieClip("soundShoot_mc", _root.getNextHighestDepth());
var allSound_snd = new Sound(soundEffect_mc);
allSound_snd.setVolume(100);
var music_mc = createEmptyMovieClip("music_mc", depth_musicMC);
var bgMusic_snd = new Sound(music_mc);
bgMusic_snd.attachSound("bgmusic");
var shoot1_snd = new Sound(soundShoot_mc);
shoot1_snd.attachSound("shoot1.mp3");
var shoot2_snd = new Sound(soundShoot_mc);
shoot2_snd.attachSound("shoot4.wav");
shoot2_snd.setVolume(30);
var shoot4_snd = new Sound(soundShoot_mc);
shoot4_snd.attachSound("shoot3.wav");
var hit_snd = new Sound(soundShoot_mc);
hit_snd.attachSound("hit1.mp3");
var laser2_snd = new Sound(soundEffect_mc);
laser2_snd.attachSound("laser2.mp3");
var laser3_snd = new Sound(soundEffect_mc);
laser3_snd.attachSound("laser3.mp3");
var laser4_snd = new Sound(soundEffect_mc);
laser4_snd.attachSound("laser4.mp3");
var boom3_snd = new Sound(soundEffect_mc);
boom3_snd.attachSound("boom3.wav");
var boom4_snd = new Sound(soundEffect_mc);
boom4_snd.attachSound("boom4.wav");
var boom6_snd = new Sound(soundEffect_mc);
boom6_snd.attachSound("boom6.mp3");
var boomSuper_snd = new Sound(soundEffect_mc);
boomSuper_snd.attachSound("boom5.mp3");
var electric1_snd = new Sound(soundEffect_mc);
electric1_snd.attachSound("electric1.wav");
var electric2_snd = new Sound(soundEffect_mc);
electric2_snd.attachSound("electric3.wav");
var fire_snd = new Sound(soundEffect_mc);
fire_snd.attachSound("fire.mp3");
var powerUP_snd = new Sound(soundEffect_mc);
powerUP_snd.attachSound("powerUP.wav");
var menu_difficulty;
var game_quality;
var menu_quality;
_root.setMask(mask_mc);
Frame 122
stop();
musicStart();
Frame 132
inPause = true;
createMC();
loadEnemy();
loadBg();
loadUI();
UI_mc.gotoAndStop(2);
Frame 143
if (_root.score == 0) {
stop();
loadWarning();
}
Frame 144
stop();
inPause = false;
UI_mc.gotoAndStop(1);
loadRole();
Frame 145
stop();
Symbol 2 MovieClip Frame 1
this._visible = false;
Symbol 13 MovieClip Frame 5
stop();
Symbol 14 MovieClip [bullet2_r2] Frame 1
#initclip 168
Object.registerClass("bullet2_r2", Bullet1);
#endinitclip
stop();
damage = 30;
Symbol 14 MovieClip [bullet2_r2] Frame 10
stop();
this.removeMovieClip();
Symbol 15 MovieClip Frame 1
function lock() {
inLock = true;
lock_mc = _parent.attachMovie("lock_mc", "lock_mc", _parent.getNextHighestDepth());
lock_mc._x = _x;
lock_mc._y = _y;
}
function unlock() {
inLock = false;
lock_mc.removeMovieClip();
}
this._visible = false;
var inLock = false;
var lock_mc;
Symbol 16 MovieClip [shape_comman] Frame 1
#initclip 124
Object.registerClass("shape_comman", Enemy_shape);
#endinitclip
stop();
Symbol 17 MovieClip [shape_tower] Frame 1
#initclip 125
Object.registerClass("shape_tower", Enemy_shape);
#endinitclip
stop();
this._visible = false;
Symbol 21 MovieClip Frame 1
this._visible = false;
_parent.do_shoot(this, angle, type);
Symbol 22 MovieClip [s_plane1] Frame 1
#initclip 126
Object.registerClass("s_plane1", EnemyShoot_plane);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 22 MovieClip [s_plane1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 22 MovieClip [s_plane1] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 22 MovieClip [s_plane1] Frame 13
gotoAndStop (1);
Symbol 23 MovieClip [s_plane] Frame 1
#initclip 127
Object.registerClass("s_plane", EnemyShoot_plane);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 23 MovieClip [s_plane] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 23 MovieClip [s_plane] Frame 8
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 23 MovieClip [s_plane] Frame 14
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 23 MovieClip [s_plane] Frame 16
gotoAndStop (1);
Symbol 48 MovieClip [bullet_e_laser1] Frame 1
#initclip 128
Object.registerClass("bullet_e_laser1", Bullet_enemy_laser);
#endinitclip
damage = 15;
Symbol 48 MovieClip [bullet_e_laser1] Frame 27
stop();
this.removeMovieClip();
Symbol 79 MovieClip [s_laser_big0] Frame 1
#initclip 129
Object.registerClass("s_laser_big0", EnemyShoot_laser);
#endinitclip
stop();
this._visible = false;
Symbol 79 MovieClip [s_laser_big0] Frame 2
this._visible = true;
_root.soundStart("laser4_snd");
Symbol 79 MovieClip [s_laser_big0] Frame 11
if (type == "aim") {
var pos = ExtMath.toGlobal(this, this._parent);
var angle = ExtMath.angleOfLine(pos.x, pos.y, _root.role_mc._x, _root.role_mc._y);
setAngle(angle);
}
Symbol 79 MovieClip [s_laser_big0] Frame 36
gotoAndStop (1);
Symbol 82 MovieClip [s_spread_aim52] Frame 1
#initclip 130
Object.registerClass("s_spread_aim52", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 82 MovieClip [s_spread_aim52] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 82 MovieClip [s_spread_aim52] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 15;
}
Instance of Symbol 21 MovieClip in Symbol 82 MovieClip [s_spread_aim52] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Instance of Symbol 21 MovieClip in Symbol 82 MovieClip [s_spread_aim52] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -15;
}
Instance of Symbol 21 MovieClip in Symbol 82 MovieClip [s_spread_aim52] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Instance of Symbol 21 MovieClip in Symbol 82 MovieClip [s_spread_aim52] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 82 MovieClip [s_spread_aim52] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 15;
}
Instance of Symbol 21 MovieClip in Symbol 82 MovieClip [s_spread_aim52] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Instance of Symbol 21 MovieClip in Symbol 82 MovieClip [s_spread_aim52] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = -15;
}
Instance of Symbol 21 MovieClip in Symbol 82 MovieClip [s_spread_aim52] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Symbol 82 MovieClip [s_spread_aim52] Frame 10
gotoAndStop (1);
Symbol 83 MovieClip [s_spread_aim21] Frame 1
#initclip 131
Object.registerClass("s_spread_aim21", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 83 MovieClip [s_spread_aim21] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 20;
}
Instance of Symbol 21 MovieClip in Symbol 83 MovieClip [s_spread_aim21] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -20;
}
Symbol 83 MovieClip [s_spread_aim21] Frame 3
gotoAndStop (1);
Symbol 84 MovieClip [s_spread_rotate] Frame 1
#initclip 132
Object.registerClass("s_spread_rotate", EnemyShoot_parentDir);
#endinitclip
Instance of Symbol 21 MovieClip in Symbol 84 MovieClip [s_spread_rotate] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 84 MovieClip [s_spread_rotate] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 84 MovieClip [s_spread_rotate] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 84 MovieClip [s_spread_rotate] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 85 MovieClip [s_spread_aim32_gun] Frame 1
#initclip 133
Object.registerClass("s_spread_aim32_gun", EnemyShoot_parentDir);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 85 MovieClip [s_spread_aim32_gun] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 85 MovieClip [s_spread_aim32_gun] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 85 MovieClip [s_spread_aim32_gun] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 85 MovieClip [s_spread_aim32_gun] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 85 MovieClip [s_spread_aim32_gun] Frame 8
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 85 MovieClip [s_spread_aim32_gun] Frame 8
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 85 MovieClip [s_spread_aim32_gun] Frame 11
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 85 MovieClip [s_spread_aim32_gun] Frame 11
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 85 MovieClip [s_spread_aim32_gun] Frame 13
gotoAndStop (1);
Symbol 86 MovieClip [s_spread_aim32] Frame 1
#initclip 134
Object.registerClass("s_spread_aim32", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 86 MovieClip [s_spread_aim32] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 86 MovieClip [s_spread_aim32] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 20;
}
Instance of Symbol 21 MovieClip in Symbol 86 MovieClip [s_spread_aim32] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -20;
}
Instance of Symbol 21 MovieClip in Symbol 86 MovieClip [s_spread_aim32] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 86 MovieClip [s_spread_aim32] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 20;
}
Instance of Symbol 21 MovieClip in Symbol 86 MovieClip [s_spread_aim32] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = -20;
}
Symbol 86 MovieClip [s_spread_aim32] Frame 7
gotoAndStop (1);
Symbol 87 MovieClip [s_spread_aim33] Frame 1
#initclip 135
Object.registerClass("s_spread_aim33", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 87 MovieClip [s_spread_aim33] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 87 MovieClip [s_spread_aim33] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 20;
}
Instance of Symbol 21 MovieClip in Symbol 87 MovieClip [s_spread_aim33] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -20;
}
Instance of Symbol 21 MovieClip in Symbol 87 MovieClip [s_spread_aim33] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 87 MovieClip [s_spread_aim33] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 20;
}
Instance of Symbol 21 MovieClip in Symbol 87 MovieClip [s_spread_aim33] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = -20;
}
Instance of Symbol 21 MovieClip in Symbol 87 MovieClip [s_spread_aim33] Frame 8
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 87 MovieClip [s_spread_aim33] Frame 8
//component parameters
onClipEvent (construct) {
type = "";
angle = 20;
}
Instance of Symbol 21 MovieClip in Symbol 87 MovieClip [s_spread_aim33] Frame 8
//component parameters
onClipEvent (construct) {
type = "";
angle = -20;
}
Symbol 87 MovieClip [s_spread_aim33] Frame 11
gotoAndStop (1);
Symbol 88 MovieClip [s_spread_aim31] Frame 1
#initclip 136
Object.registerClass("s_spread_aim31", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 88 MovieClip [s_spread_aim31] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 88 MovieClip [s_spread_aim31] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 20;
}
Instance of Symbol 21 MovieClip in Symbol 88 MovieClip [s_spread_aim31] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -20;
}
Symbol 88 MovieClip [s_spread_aim31] Frame 3
gotoAndStop (1);
Symbol 89 MovieClip [s_spread_aim51] Frame 1
#initclip 137
Object.registerClass("s_spread_aim51", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 89 MovieClip [s_spread_aim51] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 89 MovieClip [s_spread_aim51] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 15;
}
Instance of Symbol 21 MovieClip in Symbol 89 MovieClip [s_spread_aim51] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Instance of Symbol 21 MovieClip in Symbol 89 MovieClip [s_spread_aim51] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -15;
}
Instance of Symbol 21 MovieClip in Symbol 89 MovieClip [s_spread_aim51] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Symbol 89 MovieClip [s_spread_aim51] Frame 3
gotoAndStop (1);
Symbol 91 MovieClip [s_spread_circle] Frame 1
#initclip 138
Object.registerClass("s_spread_circle", EnemyShoot1);
#endinitclip
stop();
bullet_type = "bullet_e2";
Instance of Symbol 21 MovieClip in Symbol 91 MovieClip [s_spread_circle] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 45;
}
Instance of Symbol 21 MovieClip in Symbol 91 MovieClip [s_spread_circle] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 91 MovieClip [s_spread_circle] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 180;
}
Instance of Symbol 21 MovieClip in Symbol 91 MovieClip [s_spread_circle] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 135;
}
Instance of Symbol 21 MovieClip in Symbol 91 MovieClip [s_spread_circle] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 90;
}
Instance of Symbol 21 MovieClip in Symbol 91 MovieClip [s_spread_circle] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -45;
}
Instance of Symbol 21 MovieClip in Symbol 91 MovieClip [s_spread_circle] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -135;
}
Instance of Symbol 21 MovieClip in Symbol 91 MovieClip [s_spread_circle] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -90;
}
Symbol 91 MovieClip [s_spread_circle] Frame 3
gotoAndStop (1);
Symbol 93 MovieClip [shoot_wave] Frame 1
#initclip 139
Object.registerClass("shoot_wave", EnemyShoot_s2);
#endinitclip
stop();
var initData = {bullet_type:bullet_type, r:r, time_shoot:time_shoot, angle_start:angle_start, bullet_num:bullet_num, d_angle:d_angle, V:V, f:f};
init(initData);
Symbol 93 MovieClip [shoot_wave] Frame 3
gotoAndStop (1);
Symbol 95 MovieClip [s_big0_2] Frame 1
#initclip 140
Object.registerClass("s_big0_2", EnemyShoot1);
#endinitclip
stop();
Symbol 95 MovieClip [s_big0_2] Frame 7
gotoAndStop (1);
Symbol 96 MovieClip [s_big0] Frame 1
#initclip 141
Object.registerClass("s_big0", EnemyShoot1);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 96 MovieClip [s_big0] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 96 MovieClip [s_big0] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Instance of Symbol 21 MovieClip in Symbol 96 MovieClip [s_big0] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Instance of Symbol 21 MovieClip in Symbol 96 MovieClip [s_big0] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 96 MovieClip [s_big0] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Instance of Symbol 21 MovieClip in Symbol 96 MovieClip [s_big0] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Symbol 96 MovieClip [s_big0] Frame 7
gotoAndStop (1);
Symbol 97 MovieClip [s_spread_forward1] Frame 1
#initclip 142
Object.registerClass("s_spread_forward1", EnemyShoot1);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 97 MovieClip [s_spread_forward1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 97 MovieClip [s_spread_forward1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Instance of Symbol 21 MovieClip in Symbol 97 MovieClip [s_spread_forward1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Symbol 97 MovieClip [s_spread_forward1] Frame 3
gotoAndStop (1);
Symbol 98 MovieClip [s_spread_forward51] Frame 1
#initclip 143
Object.registerClass("s_spread_forward51", EnemyShoot1);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 98 MovieClip [s_spread_forward51] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 98 MovieClip [s_spread_forward51] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 15;
}
Instance of Symbol 21 MovieClip in Symbol 98 MovieClip [s_spread_forward51] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Instance of Symbol 21 MovieClip in Symbol 98 MovieClip [s_spread_forward51] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -15;
}
Instance of Symbol 21 MovieClip in Symbol 98 MovieClip [s_spread_forward51] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Symbol 98 MovieClip [s_spread_forward51] Frame 7
gotoAndStop (1);
Symbol 99 MovieClip [s_spread_forward2] Frame 1
#initclip 144
Object.registerClass("s_spread_forward2", EnemyShoot1);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 99 MovieClip [s_spread_forward2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 99 MovieClip [s_spread_forward2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 15;
}
Instance of Symbol 21 MovieClip in Symbol 99 MovieClip [s_spread_forward2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Instance of Symbol 21 MovieClip in Symbol 99 MovieClip [s_spread_forward2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -15;
}
Instance of Symbol 21 MovieClip in Symbol 99 MovieClip [s_spread_forward2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Symbol 99 MovieClip [s_spread_forward2] Frame 3
gotoAndStop (1);
Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 1
#initclip 145
Object.registerClass("shoot_bullet2_lv7", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet2_lv3";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 4
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 9
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Symbol 101 MovieClip [shoot_bullet2_lv7] Frame 15
gotoAndStop (1);
Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 1
#initclip 146
Object.registerClass("shoot_bullet2_lv10", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet2_lv3";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 4
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 9
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Symbol 102 MovieClip [shoot_bullet2_lv10] Frame 15
gotoAndStop (1);
Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 1
#initclip 147
Object.registerClass("shoot_bullet2_lv9", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet2_lv3";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 4
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 9
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Symbol 103 MovieClip [shoot_bullet2_lv9] Frame 15
gotoAndStop (1);
Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 1
#initclip 148
Object.registerClass("shoot_bullet2_lv8", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet2_lv3";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 4
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 9
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Symbol 104 MovieClip [shoot_bullet2_lv8] Frame 15
gotoAndStop (1);
Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 1
#initclip 149
Object.registerClass("shoot_bullet2_lv6", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet2_lv3";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 4
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 9
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_lv2";
angle = 0;
}
Symbol 105 MovieClip [shoot_bullet2_lv6] Frame 15
gotoAndStop (1);
Symbol 106 MovieClip [shoot_bullet2_lv5] Frame 1
#initclip 150
Object.registerClass("shoot_bullet2_lv5", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet2_lv3";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 106 MovieClip [shoot_bullet2_lv5] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 106 MovieClip [shoot_bullet2_lv5] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Symbol 106 MovieClip [shoot_bullet2_lv5] Frame 4
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 106 MovieClip [shoot_bullet2_lv5] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 106 MovieClip [shoot_bullet2_lv5] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Symbol 106 MovieClip [shoot_bullet2_lv5] Frame 9
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 106 MovieClip [shoot_bullet2_lv5] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 106 MovieClip [shoot_bullet2_lv5] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Symbol 106 MovieClip [shoot_bullet2_lv5] Frame 15
gotoAndStop (1);
Symbol 107 MovieClip [shoot_bullet2_lv4] Frame 1
#initclip 151
Object.registerClass("shoot_bullet2_lv4", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet2_lv3";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 107 MovieClip [shoot_bullet2_lv4] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 107 MovieClip [shoot_bullet2_lv4] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Symbol 107 MovieClip [shoot_bullet2_lv4] Frame 4
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 107 MovieClip [shoot_bullet2_lv4] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 107 MovieClip [shoot_bullet2_lv4] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Symbol 107 MovieClip [shoot_bullet2_lv4] Frame 9
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 107 MovieClip [shoot_bullet2_lv4] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_l2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 107 MovieClip [shoot_bullet2_lv4] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_r2";
angle = 0;
}
Symbol 107 MovieClip [shoot_bullet2_lv4] Frame 15
gotoAndStop (1);
Symbol 108 MovieClip [s_straight1] Frame 1
#initclip 152
Object.registerClass("s_straight1", EnemyShoot1);
#endinitclip
stop();
Instance of Symbol 21 MovieClip "shootPos_mc" in Symbol 108 MovieClip [s_straight1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 108 MovieClip [s_straight1] Frame 6
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 108 MovieClip [s_straight1] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 108 MovieClip [s_straight1] Frame 12
gotoAndStop (1);
Symbol 109 MovieClip [bg_loader] Frame 1
#initclip 153
Object.registerClass("bg_loader", Bg);
#endinitclip
Symbol 110 MovieClip [s_spread_forward21] Frame 1
#initclip 154
Object.registerClass("s_spread_forward21", EnemyShoot1);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 110 MovieClip [s_spread_forward21] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Instance of Symbol 21 MovieClip in Symbol 110 MovieClip [s_spread_forward21] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Symbol 110 MovieClip [s_spread_forward21] Frame 3
gotoAndStop (1);
Symbol 111 MovieClip [s_aim2] Frame 1
#initclip 155
Object.registerClass("s_aim2", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 111 MovieClip [s_aim2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 111 MovieClip [s_aim2] Frame 7
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 111 MovieClip [s_aim2] Frame 16
gotoAndStop (1);
Symbol 112 MovieClip [s_aim_common] Frame 1
#initclip 156
Object.registerClass("s_aim_common", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 112 MovieClip [s_aim_common] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 112 MovieClip [s_aim_common] Frame 6
if (_root.gameLevel == 1) {
gotoAndStop (1);
}
Instance of Symbol 21 MovieClip in Symbol 112 MovieClip [s_aim_common] Frame 7
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 112 MovieClip [s_aim_common] Frame 11
if (_root.gameLevel == 2) {
gotoAndStop (1);
}
Instance of Symbol 21 MovieClip in Symbol 112 MovieClip [s_aim_common] Frame 12
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 112 MovieClip [s_aim_common] Frame 16
if (_root.gameLevel == 3) {
gotoAndStop (1);
}
Instance of Symbol 21 MovieClip in Symbol 112 MovieClip [s_aim_common] Frame 17
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 112 MovieClip [s_aim_common] Frame 20
gotoAndStop (1);
Symbol 113 MovieClip [s_aim5] Frame 1
#initclip 157
Object.registerClass("s_aim5", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 113 MovieClip [s_aim5] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 113 MovieClip [s_aim5] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 113 MovieClip [s_aim5] Frame 8
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 113 MovieClip [s_aim5] Frame 11
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 113 MovieClip [s_aim5] Frame 14
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 113 MovieClip [s_aim5] Frame 16
gotoAndStop (1);
Symbol 114 MovieClip [s_spread_rotate1] Frame 1
#initclip 158
Object.registerClass("s_spread_rotate1", EnemyShoot_parentDir);
#endinitclip
Instance of Symbol 21 MovieClip in Symbol 114 MovieClip [s_spread_rotate1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 115 MovieClip [bullet_e_laser2] Frame 1
#initclip 159
Object.registerClass("bullet_e_laser2", Bullet_enemy_laser);
#endinitclip
damage = 30;
Symbol 115 MovieClip [bullet_e_laser2] Frame 27
stop();
this.removeMovieClip();
Symbol 117 MovieClip [s_laser2] Frame 1
#initclip 160
Object.registerClass("s_laser2", EnemyShoot_laser);
#endinitclip
stop();
this._visible = false;
Symbol 117 MovieClip [s_laser2] Frame 2
this._visible = true;
_root.soundStart("laser4_snd");
Symbol 117 MovieClip [s_laser2] Frame 20
if (type == "aim") {
setAngle();
}
Symbol 117 MovieClip [s_laser2] Frame 46
gotoAndStop (1);
Symbol 119 MovieClip [shoot_line] Frame 1
#initclip 161
Object.registerClass("shoot_line", EnemyShoot_line);
#endinitclip
stop();
var initData = {bullet_type:bullet_type, r:r, time_shoot:time_shoot, angle_start:angle_start, aim:aim, bullet_num:bullet_num, V:V};
init(initData);
Symbol 119 MovieClip [shoot_line] Frame 3
gotoAndStop (1);
Symbol 120 MovieClip [s_rotate_line] Frame 1
#initclip 162
Object.registerClass("s_rotate_line", EnemyShoot_parentDir);
#endinitclip
Instance of Symbol 21 MovieClip in Symbol 120 MovieClip [s_rotate_line] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 120 MovieClip [s_rotate_line] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 121 MovieClip [s_laser1] Frame 1
#initclip 163
Object.registerClass("s_laser1", EnemyShoot_laser);
#endinitclip
stop();
this._visible = false;
Symbol 121 MovieClip [s_laser1] Frame 2
this._visible = true;
_root.soundStart("laser4_snd");
Symbol 121 MovieClip [s_laser1] Frame 14
if (type == "aim") {
var pos = ExtMath.toGlobal(this, this._parent);
var angle = ExtMath.angleOfLine(pos.x, pos.y, _root.role_mc._x, _root.role_mc._y);
setAngle(angle);
}
Symbol 121 MovieClip [s_laser1] Frame 39
gotoAndStop (1);
Symbol 122 MovieClip [s_spread_forward52] Frame 1
#initclip 164
Object.registerClass("s_spread_forward52", EnemyShoot1);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 122 MovieClip [s_spread_forward52] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 122 MovieClip [s_spread_forward52] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 15;
}
Instance of Symbol 21 MovieClip in Symbol 122 MovieClip [s_spread_forward52] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Instance of Symbol 21 MovieClip in Symbol 122 MovieClip [s_spread_forward52] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -15;
}
Instance of Symbol 21 MovieClip in Symbol 122 MovieClip [s_spread_forward52] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Instance of Symbol 21 MovieClip in Symbol 122 MovieClip [s_spread_forward52] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 122 MovieClip [s_spread_forward52] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 15;
}
Instance of Symbol 21 MovieClip in Symbol 122 MovieClip [s_spread_forward52] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Instance of Symbol 21 MovieClip in Symbol 122 MovieClip [s_spread_forward52] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = -15;
}
Instance of Symbol 21 MovieClip in Symbol 122 MovieClip [s_spread_forward52] Frame 5
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Symbol 122 MovieClip [s_spread_forward52] Frame 7
gotoAndStop (1);
Symbol 123 MovieClip [s_aim1] Frame 1
#initclip 165
Object.registerClass("s_aim1", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 123 MovieClip [s_aim1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 123 MovieClip [s_aim1] Frame 7
gotoAndStop (1);
Symbol 124 MovieClip [s_aim3] Frame 1
#initclip 166
Object.registerClass("s_aim3", EnemyShoot2);
#endinitclip
stop();
Instance of Symbol 21 MovieClip in Symbol 124 MovieClip [s_aim3] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 124 MovieClip [s_aim3] Frame 7
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 124 MovieClip [s_aim3] Frame 12
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 124 MovieClip [s_aim3] Frame 16
gotoAndStop (1);
Symbol 126 MovieClip [shoot_circle] Frame 1
#initclip 167
Object.registerClass("shoot_circle", EnemyShoot_s1);
#endinitclip
stop();
this._visible = false;
var initData = {bullet_type:bullet_type, r:r, time_shoot:time_shoot, angle_start:angle_start, angle_total:angle_total, d_angle:d_angle, V:V};
init(initData);
Symbol 126 MovieClip [shoot_circle] Frame 3
gotoAndStop (1);
Symbol 138 MovieClip [DataProvider] Frame 1
#initclip 94
Object.registerClass("DataProvider", mx.controls.listclasses.DataProvider);
#endinitclip
stop();
Symbol 139 MovieClip [DataSelector] Frame 1
#initclip 95
Object.registerClass("DataSelector", mx.controls.listclasses.DataSelector);
#endinitclip
stop();
Symbol 140 MovieClip [Defaults] Frame 1
#initclip 96
Object.registerClass("Defaults", mx.skins.halo.Defaults);
#endinitclip
Symbol 141 MovieClip [UIObjectExtensions] Frame 1
#initclip 97
Object.registerClass("UIObjectExtensions", mx.core.ext.UIObjectExtensions);
#endinitclip
Symbol 142 MovieClip [UIObject] Frame 1
#initclip 98
Object.registerClass("UIObject", mx.core.UIObject);
#endinitclip
stop();
Symbol 145 Button
on (keyPress "<Tab>") {
this.tabHandler();
}
Symbol 146 MovieClip Frame 1
#initclip 99
Object.registerClass("FocusManager", mx.managers.FocusManager);
if (_root.focusManager == undefined) {
_root.createClassObject(mx.managers.FocusManager, "focusManager", mx.managers.DepthManager.highestDepth--);
}
#endinitclip
Symbol 147 MovieClip [FocusRect] Frame 1
#initclip 100
Object.registerClass("FocusRect", mx.skins.halo.FocusRect);
#endinitclip
Symbol 148 MovieClip [FocusManager] Frame 1
#initclip 101
Object.registerClass("FocusManager", mx.managers.FocusManager);
#endinitclip
stop();
Symbol 149 MovieClip [UIComponentExtensions] Frame 1
#initclip 102
Object.registerClass("UIComponentExtensions", mx.core.ext.UIComponentExtensions);
#endinitclip
Symbol 150 MovieClip [UIComponent] Frame 1
#initclip 103
Object.registerClass("UIComponent", mx.core.UIComponent);
#endinitclip
stop();
Symbol 151 MovieClip [SelectableRow] Frame 1
#initclip 104
Object.registerClass("SelectableRow", mx.controls.listclasses.SelectableRow);
#endinitclip
stop();
Symbol 153 MovieClip [BrdrShdw] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "shadowColor");
Symbol 155 MovieClip [BrdrFace] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "buttonColor");
Symbol 158 MovieClip [BrdrBlk] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "borderColor");
Symbol 160 MovieClip [BrdrHilght] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "highlightColor");
Symbol 163 MovieClip [SimpleButton] Frame 1
#initclip 105
Object.registerClass("SimpleButton", mx.controls.SimpleButton);
#endinitclip
stop();
Symbol 164 MovieClip [Border] Frame 1
#initclip 106
Object.registerClass("Border", mx.skins.Border);
#endinitclip
stop();
Symbol 165 MovieClip [RectBorder] Frame 1
#initclip 107
mx.skins.SkinElement.registerElement(mx.skins.RectBorder.symbolName, Object(mx.skins.RectBorder));
Object.registerClass("RectBorder", mx.skins.halo.RectBorder);
#endinitclip
stop();
Symbol 166 MovieClip [ButtonSkin] Frame 1
#initclip 108
Object.registerClass("ButtonSkin", mx.skins.halo.ButtonSkin);
#endinitclip
Symbol 167 MovieClip [Button] Frame 1
#initclip 109
Object.registerClass("Button", mx.controls.Button);
#endinitclip
stop();
Instance of Symbol 163 MovieClip [SimpleButton] in Symbol 167 MovieClip [Button] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 168 MovieClip [CustomBorder] Frame 1
#initclip 110
Object.registerClass("CustomBorder", mx.skins.CustomBorder);
mx.skins.SkinElement.registerElement("CustomBorder", mx.skins.CustomBorder);
#endinitclip
Symbol 180 MovieClip [ScrollThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 182 MovieClip [ScrollThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 193 MovieClip [ThumbThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 195 MovieClip [ThumbThemeColor3] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 202 MovieClip [ThumbThemeColor2] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 223 MovieClip [BtnDownArrow] Frame 1
#initclip 111
Object.registerClass("BtnDownArrow", mx.controls.SimpleButton);
#endinitclip
Symbol 224 MovieClip [BtnUpArrow] Frame 1
#initclip 112
Object.registerClass("BtnUpArrow", mx.controls.SimpleButton);
#endinitclip
Symbol 226 MovieClip [HScrollBar] Frame 1
#initclip 113
Object.registerClass("HScrollBar", mx.controls.HScrollBar);
#endinitclip
stop();
Instance of Symbol 167 MovieClip [Button] in Symbol 226 MovieClip [HScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
icon = "";
label = "Button";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 163 MovieClip [SimpleButton] in Symbol 226 MovieClip [HScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 227 MovieClip [VScrollBar] Frame 1
#initclip 114
Object.registerClass("VScrollBar", mx.controls.VScrollBar);
#endinitclip
stop();
Instance of Symbol 167 MovieClip [Button] in Symbol 227 MovieClip [VScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
icon = "";
label = "Button";
labelPlacement = "right";
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 163 MovieClip [SimpleButton] in Symbol 227 MovieClip [VScrollBar] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 228 MovieClip [View] Frame 1
#initclip 115
Object.registerClass("View", mx.core.View);
#endinitclip
stop();
Symbol 229 MovieClip [ScrollView] Frame 1
#initclip 116
Object.registerClass("ScrollView", mx.core.ScrollView);
#endinitclip
stop();
Instance of Symbol 226 MovieClip [HScrollBar] in Symbol 229 MovieClip [ScrollView] Frame 2
//component parameters
onClipEvent (initialize) {
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 227 MovieClip [VScrollBar] in Symbol 229 MovieClip [ScrollView] Frame 2
//component parameters
onClipEvent (initialize) {
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 230 MovieClip [ScrollSelectList] Frame 1
#initclip 117
Object.registerClass("ScrollSelectList", mx.controls.listclasses.ScrollSelectList);
#endinitclip
stop();
Symbol 231 MovieClip [List] Frame 1
#initclip 118
Object.registerClass("List", mx.controls.List);
#endinitclip
stop();
Symbol 265 MovieClip [TextInput] Frame 1
#initclip 119
Object.registerClass("TextInput", mx.controls.TextInput);
#endinitclip
stop();
Symbol 266 MovieClip [ComboBase] Frame 1
#initclip 120
mx.controls.listclasses.DataSelector.Initialize(Object(mx.controls.ComboBase).prototype);
Object.registerClass("ComboBase", mx.controls.ComboBase);
#endinitclip
stop();
Instance of Symbol 163 MovieClip [SimpleButton] in Symbol 266 MovieClip [ComboBase] Frame 2
//component parameters
onClipEvent (initialize) {
selected = false;
toggle = false;
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 265 MovieClip [TextInput] in Symbol 266 MovieClip [ComboBase] Frame 2
//component parameters
onClipEvent (initialize) {
editable = true;
password = false;
text = "";
maxChars = null;
restrict = "null";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 272 MovieClip [ComboDownArrowDisabled] Frame 1
#initclip 121
Object.registerClass("ComboDownArrowDisabled", mx.controls.SimpleButton);
#endinitclip
Symbol 274 MovieClip [ComboThemeColor1] Frame 1
mx.skins.ColoredSkinElement.setColorStyle(this, "themeColor");
Symbol 277 MovieClip [ComboAssets] Frame 1
#initclip 122
mx.controls.ComboBox.prototype.downArrowUpName = "ComboDownArrowUp";
mx.controls.ComboBox.prototype.downArrowDownName = "ComboDownArrowDown";
mx.controls.ComboBox.prototype.downArrowOverName = "ComboDownArrowOver";
mx.controls.ComboBox.prototype.downArrowDisabledName = "ComboDownArrowDisabled";
mx.controls.ComboBox.prototype.wrapDownArrowButton = false;
mx.controls.ComboBox.prototype.dropDownBorderStyle = "solid";
mx.controls.ComboBox.prototype.adjustFocusRect = function () {
var _local2 = this.getStyle("themeColor");
if (_local2 == undefined) {
_local2 = 8453965 /* 0x80FF4D */;
}
var _local3 = this._parent.focus_mc;
_local3.setSize(this.width + 4, this.height + 4, {bl:0, tl:0, tr:5, br:5}, 100, _local2);
_local3.move(this.x - 2, this.y - 2);
};
#endinitclip
Symbol 278 MovieClip [ComboBox] Frame 1
#initclip 123
Object.registerClass("ComboBox", mx.controls.ComboBox);
#endinitclip
stop();
Instance of Symbol 231 MovieClip [List] in Symbol 278 MovieClip [ComboBox] Frame 2
//component parameters
onClipEvent (initialize) {
multipleSelection = false;
rowHeight = 20;
}
Symbol 286 MovieClip Frame 1
onEnterFrame = function () {
var _local5 = _root.getBytesLoaded();
var _local4 = _root.getBytesTotal();
var _local3 = int((_local5 / _local4) * 100);
num_txt.text = _local3 + "%";
if (_local3 == 100) {
delete this.onEnterFrame;
if ((_root._mochiad instanceof MovieClip) != true) {
_root.play();
}
}
};
Symbol 290 MovieClip Frame 1
this._visible = false;
Symbol 290 MovieClip Frame 2
this._visible = true;
Symbol 290 MovieClip Frame 39
stop();
Instance of Symbol 283 MovieClip in Symbol 290 MovieClip Frame 39
on (release) {
getURL ("http://www.freeworldgroup.com/", "_blank");
}
Symbol 1587 MovieClip [__Packages.ExtMath] Frame 0
class ExtMath extends Math
{
function ExtMath () {
super();
}
static function distance(x1, y1, x2, y2) {
var _local1 = x2 - x1;
var _local2 = y2 - y1;
return(Math.sqrt((_local1 * _local1) + (_local2 * _local2)));
}
static function distance2(x1, y1, x2, y2) {
var _local1 = x2 - x1;
var _local2 = y2 - y1;
return((_local1 * _local1) + (_local2 * _local2));
}
static function degreesToRadians(angle) {
return(angle * 0.01745329);
}
static function radiansToDegrees(angle) {
return(angle * 57.29578);
}
static function sinD(angle) {
return(Math.sin((angle * 3.141593) / 180));
}
static function asinD(ratio) {
return(Math.asin(ratio) * 57.29578);
}
static function cosD(angle) {
return(Math.cos((angle * 3.141593) / 180));
}
static function acosD(ratio) {
return(Math.acos(ratio) * 57.29578);
}
static function tanD(angle) {
return(Math.tan((angle * 3.141593) / 180));
}
static function atan2D(y, x) {
return(Math.atan2(y, x) * 57.29578);
}
static function angleOfLine(x1, y1, x2, y2) {
return(atan2D(y2 - y1, x2 - x1));
}
static function fixAngle(angle) {
angle = angle % 360;
return((((angle % 360) < 0) ? (angle + 360) : (angle)));
}
static function cartesianToFlash(o) {
o._y = o._y * -1;
o._rotation = o._rotation * -1;
}
static function flashToCartesian(o) {
return(cartesianToFlash(o));
}
static function cartesianToPolar(p) {
var _local2 = Math.sqrt((p.x * p.x) + (p.y * p.y));
var _local3 = atan2D(p.y, p.x);
return({r:_local2, t:_local3});
}
static function polarToCartesian(p) {
var _local2 = p.r * cosD(p.t);
var _local3 = p.r * sinD(p.t);
return({x:_local2, y:_local3});
}
static function toGlobal(obj1, obj2) {
var _local1 = new Object();
_local1.x = obj1._x;
_local1.y = obj1._y;
obj2.localToGlobal(_local1);
return(_local1);
}
static var __proto__ = Math;
}
Symbol 1588 MovieClip [__Packages.MochiAd] Frame 0
class MochiAd
{
function MochiAd () {
}
static function showPreloaderAd(options) {
var _local29 = {clip:_root, ad_timeout:3000, fadeout_time:250, regpt:"o", method:"showPreloaderAd", color:16747008, background:16777161, outline:13994812};
options = _parseOptions(options, _local29);
var _local15 = options.clip;
var _local25 = 11000;
var _local28 = options.ad_timeout;
delete options.ad_timeout;
var fadeout_time = options.fadeout_time;
delete options.fadeout_time;
if (!load(options)) {
return(undefined);
}
_local15.stop();
var mc = _local15._mochiad;
mc.onUnload = function () {
this._parent.play();
};
var _local16 = _getRes(options);
var _local5 = _local16[0];
var _local14 = _local16[1];
mc._x = _local5 * 0.5;
mc._y = _local14 * 0.5;
var chk = mc.createEmptyMovieClip("_mochiad_wait", 3);
chk._x = _local5 * -0.5;
chk._y = _local14 * -0.5;
var _local8 = chk.createEmptyMovieClip("_mochiad_bar", 4);
_local8._x = 10;
_local8._y = _local14 - 20;
var _local24 = options.color;
delete options.color;
var _local21 = options.background;
delete options.background;
var _local26 = options.outline;
delete options.outline;
var _local6 = _local8.createEmptyMovieClip("_outline", 1);
_local6.beginFill(_local21);
_local6.moveTo(0, 0);
_local6.lineTo(_local5 - 20, 0);
_local6.lineTo(_local5 - 20, 10);
_local6.lineTo(0, 10);
_local6.lineTo(0, 0);
_local6.endFill();
var _local4 = _local8.createEmptyMovieClip("_inside", 2);
_local4.beginFill(_local24);
_local4.moveTo(0, 0);
_local4.lineTo(_local5 - 20, 0);
_local4.lineTo(_local5 - 20, 10);
_local4.lineTo(0, 10);
_local4.lineTo(0, 0);
_local4.endFill();
_local4._xscale = 0;
var _local7 = _local8.createEmptyMovieClip("_outline", 3);
_local7.lineStyle(0, _local26, 100);
_local7.moveTo(0, 0);
_local7.lineTo(_local5 - 20, 0);
_local7.lineTo(_local5 - 20, 10);
_local7.lineTo(0, 10);
_local7.lineTo(0, 0);
chk.ad_msec = _local25;
chk.ad_timeout = _local28;
chk.started = getTimer();
chk.showing = false;
chk.last_pcnt = 0;
chk.fadeout_time = fadeout_time;
chk.fadeFunction = function () {
var _local2 = 100 * (1 - ((getTimer() - this.fadeout_start) / this.fadeout_time));
if (_local2 > 0) {
this._parent._alpha = _local2;
} else {
var _local3 = this._parent._parent;
MochiAd.unload(_local3);
delete this.onEnterFrame;
}
};
mc.lc.adjustProgress = function (msec) {
var _local2 = this.mc._mochiad_wait;
_local2.server_control = true;
_local2.started = getTimer();
_local2.ad_msec = msec;
};
chk.onEnterFrame = function () {
var _local6 = this._parent._parent;
var _local12 = this._parent._mochiad_ctr;
var _local5 = getTimer() - this.started;
var _local3 = false;
var _local4 = _local6.getBytesTotal();
var _local8 = _local6.getBytesLoaded();
var _local10 = (100 * _local8) / _local4;
var _local11 = (100 * _local5) / chk.ad_msec;
var _local9 = this._mochiad_bar._inside;
var _local2 = Math.min(100, Math.min(_local10 || 0, _local11));
_local2 = Math.max(this.last_pcnt, _local2);
this.last_pcnt = _local2;
_local9._xscale = _local2;
if (!chk.showing) {
var _local7 = _local12.getBytesTotal();
if ((_local7 > 0) || (typeof(_local7) == "undefined")) {
chk.showing = true;
chk.started = getTimer();
} else if (_local5 > chk.ad_timeout) {
_local3 = true;
}
}
if (_local5 > chk.ad_msec) {
_local3 = true;
}
if (((_local4 > 0) && (_local8 >= _local4)) && (_local3)) {
if (this.server_control) {
delete this.onEnterFrame;
} else {
this.fadeout_start = getTimer();
this.onEnterFrame = chk.fadeFunction;
}
}
};
}
static function showTimedAd(options) {
var _local15 = {clip:_root, ad_timeout:2000, fadeout_time:250, regpt:"o", method:"showTimedAd"};
options = _parseOptions(options, _local15);
var _local6 = options.clip;
var _local12 = 11000;
var _local14 = options.ad_timeout;
delete options.ad_timeout;
var fadeout_time = options.fadeout_time;
delete options.fadeout_time;
if (!load(options)) {
return(undefined);
}
_local6.stop();
var mc = _local6._mochiad;
mc.onUnload = function () {
this._parent.play();
};
var _local7 = _getRes(options);
var _local16 = _local7[0];
var _local13 = _local7[1];
mc._x = _local16 * 0.5;
mc._y = _local13 * 0.5;
var chk = mc.createEmptyMovieClip("_mochiad_wait", 3);
chk.ad_msec = _local12;
chk.ad_timeout = _local14;
chk.started = getTimer();
chk.showing = false;
chk.fadeout_time = fadeout_time;
chk.fadeFunction = function () {
var _local2 = 100 * (1 - ((getTimer() - this.fadeout_start) / this.fadeout_time));
if (_local2 > 0) {
this._parent._alpha = _local2;
} else {
var _local3 = this._parent._parent;
MochiAd.unload(_local3);
delete this.onEnterFrame;
}
};
mc.lc.adjustProgress = function (msec) {
var _local2 = this.mc._mochiad_wait;
_local2.server_control = true;
_local2.started = getTimer();
_local2.ad_msec = msec - 250;
};
chk.onEnterFrame = function () {
var _local5 = this._parent._mochiad_ctr;
var _local4 = getTimer() - this.started;
var _local2 = false;
if (!chk.showing) {
var _local3 = _local5.getBytesTotal();
if ((_local3 > 0) || (typeof(_local3) == "undefined")) {
chk.showing = true;
chk.started = getTimer();
} else if (_local4 > chk.ad_timeout) {
_local2 = true;
}
}
if (_local4 > chk.ad_msec) {
_local2 = true;
}
if (_local2) {
if (this.server_control) {
delete this.onEnterFrame;
} else {
this.fadeout_start = getTimer();
this.onEnterFrame = this.fadeFunction;
}
}
};
}
static function _allowDomains(server) {
var _local1 = server.split("/")[2].split(":")[0];
if (System.security) {
if (System.security.allowDomain) {
System.security.allowDomain("*");
System.security.allowDomain(_local1);
}
if (System.security.allowInsecureDomain) {
System.security.allowInsecureDomain("*");
System.security.allowInsecureDomain(_local1);
}
}
return(_local1);
}
static function _loadCommunicator(options) {
var _local25 = {clip:_root, com_server:"http://x.mochiads.com/com/1/", method:"loadCommunicator", depth:10337, id:"_UNKNOWN_"};
options = _parseOptions(options, _local25);
options.swfv = options.clip.getSWFVersion() || 6;
options.mav = "1.4";
var _local18 = options.clip;
var _local20 = "_mochiad_com_" + options.id;
if (!_isNetworkAvailable()) {
return(null);
}
if (_local18[_local20]) {
return(_local18[_local20].lc);
}
var _local21 = options.com_server + options.id;
_allowDomains(_local21);
delete options.id;
delete options.com_server;
var _local24 = options.depth;
delete options.depth;
var _local17 = _local18.createEmptyMovieClip(_local20, _local24);
var _local11 = _local17.createEmptyMovieClip("_mochiad_com", 1);
for (var _local15 in options) {
_local11[_local15] = options[_local15];
}
var _local6 = new LocalConnection();
var _local16 = ["", Math.floor(new Date().getTime()), random(999999)].join("_");
_local6.mc = _local17;
_local6.name = _local16;
_local6.allowDomain = function (d) {
return(true);
};
_local6.allowInsecureDomain = _local6.allowDomain;
_local6.connect(_local16);
_local17.lc = _local6;
_local11.lc = _local16;
_local6._id = 0;
_local6._queue = [];
_local6.rpcResult = function (cb) {
cb = parseInt(cb);
var _local4 = this._callbacks[cb];
if (!_local4) {
return(undefined);
}
delete this._callbacks[cb];
var _local5 = [];
var _local3 = 2;
while (_local3 < _local4.length) {
_local5.push(_local4[_local3]);
_local3++;
}
_local3 = 1;
while (_local3 < arguments.length) {
_local5.push(arguments[_local3]);
_local3++;
}
var _local6 = _local4[1];
var _local7 = _local4[0];
if (_local7 && (typeof(_local6) == "string")) {
_local6 = _local7[_local6];
}
if (_local6) {
_local6.apply(_local7, _local5);
}
};
_local6._didConnect = function (endpoint) {
this._endpoint = endpoint;
var _local4 = this._queue;
delete this._queue;
var _local5 = this.doSend;
var _local2 = 0;
while (_local2 < _local4.length) {
var _local3 = _local4[_local2];
_local5.apply(this, _local3);
_local2++;
}
};
_local6.doSend = function (args, cbobj, cbfn) {
if (this._endpoint == null) {
var _local4 = [];
var _local3 = 0;
while (_local3 < arguments.length) {
_local4.push(arguments[_local3]);
_local3++;
}
this._queue.push(_local4);
return(undefined);
}
this._id = this._id + 1;
var _local5 = this._id;
if ((cbfn === undefined) || (cbfn === null)) {
cbfn = cbobj;
}
this._callbacks[_local5] = [cbobj, cbfn];
var _local7 = new LocalConnection();
var _local9 = _local7.send(this._endpoint, "rpc", _local5, args);
};
_local6._callbacks = {};
_local6._callbacks[0] = [_local6, "_didConnect"];
_local11.st = getTimer();
_local11.loadMovie(_local21 + ".swf", "POST");
return(_local6);
}
static function fetchHighScores(options, callbackObj, callbackMethod) {
var _local1 = _loadCommunicator({id:options.id});
if (!_local1) {
return(false);
}
var _local4 = ["fetchHighScores", options];
_local1.doSend(["fetchHighScores", options], callbackObj, callbackMethod);
return(true);
}
static function sendHighScore(options, callbackObj, callbackMethod) {
var _local1 = _loadCommunicator({id:options.id});
if (!_local1) {
return(false);
}
var _local4 = ["sendHighScore", options];
_local1.doSend(["sendHighScore", options], callbackObj, callbackMethod);
return(true);
}
static function load(options) {
var _local13 = {clip:_root, server:"http://x.mochiads.com/srv/1/", method:"load", depth:10333, id:"_UNKNOWN_"};
options = _parseOptions(options, _local13);
options.swfv = options.clip.getSWFVersion() || 6;
options.mav = "1.4";
var _local7 = options.clip;
if (!_isNetworkAvailable()) {
return(null);
}
if (_local7._mochiad_loaded) {
return(null);
}
var _local12 = options.depth;
delete options.depth;
var _local6 = _local7.createEmptyMovieClip("_mochiad", _local12);
var _local11 = _getRes(options);
options.res = (_local11[0] + "x") + _local11[1];
options.server = options.server + options.id;
delete options.id;
_local7._mochiad_loaded = true;
var _local4 = _local6.createEmptyMovieClip("_mochiad_ctr", 1);
for (var _local8 in options) {
_local4[_local8] = options[_local8];
}
if (_local7._url.indexOf("http") != 0) {
options.no_page = true;
}
var _local10 = _local4.server;
delete _local4.server;
var _local14 = _allowDomains(_local10);
_local6.onEnterFrame = function () {
if (this._mochiad_ctr._url != this._url) {
this.onEnterFrame = function () {
if (!this._mochiad_ctr) {
delete this.onEnterFrame;
MochiAd.unload(this._parent);
}
};
}
};
var _local5 = new LocalConnection();
var _local9 = ["", Math.floor(new Date().getTime()), random(999999)].join("_");
_local5.mc = _local6;
_local5.name = _local9;
_local5.hostname = _local14;
_local5.allowDomain = function (d) {
return(true);
};
_local5.allowInsecureDomain = _local5.allowDomain;
_local5.connect(_local9);
_local6.lc = _local5;
_local4.lc = _local9;
_local4.st = getTimer();
_local4.loadMovie(_local10 + ".swf", "POST");
return(_local6);
}
static function unload(clip) {
if (typeof(clip) == "undefined") {
clip = _root;
}
if (clip.clip && (clip.clip._mochiad)) {
clip = clip.clip;
}
if (!clip._mochiad) {
return(false);
}
clip._mochiad.removeMovieClip();
delete clip._mochiad_loaded;
delete clip._mochiad;
return(true);
}
static function _isNetworkAvailable() {
if (System.security) {
var _local1 = System.security;
if (_local1.sandboxType == "localWithFile") {
return(false);
}
}
return(true);
}
static function _getRes(options) {
var _local3 = options.clip.getBounds();
var _local2 = 0;
var _local1 = 0;
if (typeof(options.res) != "undefined") {
var _local4 = options.res.split("x");
_local2 = parseFloat(_local4[0]);
_local1 = parseFloat(_local4[1]);
} else {
_local2 = _local3.xMax - _local3.xMin;
_local1 = _local3.yMax - _local3.yMin;
}
if ((_local2 == 0) || (_local1 == 0)) {
_local2 = Stage.width;
_local1 = Stage.height;
}
return([_local2, _local1]);
}
static function _parseOptions(options, defaults) {
var _local4 = {};
for (var _local8 in defaults) {
_local4[_local8] = defaults[_local8];
}
if (options) {
for (var _local8 in options) {
_local4[_local8] = options[_local8];
}
}
if (_root.mochiad_options) {
var _local5 = _root.mochiad_options.split("&");
var _local2 = 0;
while (_local2 < _local5.length) {
var _local3 = _local5[_local2].split("=");
_local4[unescape(_local3[0])] = unescape(_local3[1]);
_local2++;
}
}
return(_local4);
}
}
Symbol 1589 MovieClip [__Packages.Enemy] Frame 0
class Enemy extends MovieClip
{
var mc, time_shootFirstTime, type, V, dir_angle, path, time_shoot, life, _life, type_shoot, type_bullet, V_bullet, shoot_mc, attachMovie, getNextHighestDepth, timer_start, _parent, swapDepths, timer_shoot, Vx, Vy, onEnterFrame, _x, _y, path_mc, _rotation, removeMovieClip, area, gotoAndPlay, scorePoint, lock_mc, filters;
function Enemy () {
super();
mc = this;
time_shootFirstTime = 500;
}
function init(initObj) {
type = initObj.type;
V = initObj.V;
dir_angle = initObj.dir_angle * _root.dirY;
path = initObj.path;
time_shoot = initObj.time_shoot * _root.time_shoot_rate;
life = (_life = initObj.life * _root.life_rate);
type_shoot = initObj.type_shoot;
type_bullet = initObj.type_bullet;
V_bullet = initObj.V_bullet;
if ((life == undefined) || (life == 0)) {
life = (_life = 100);
}
if ((time_shoot == undefined) || (time_shoot == 0)) {
time_shoot = 2000;
}
if ((shoot_mc instanceof MovieClip) != true) {
shoot_mc = attachMovie(type_shoot, "shoot_mc", getNextHighestDepth());
shoot_mc.init(type_bullet, V_bullet);
}
timer_start = setInterval(this, "control_start", initObj.delayTime);
addShadow();
var _local4 = _parent.getNextHighestDepth() + 1;
swapDepths(_local4);
}
function onUnload() {
clearInterval(timer_shoot);
}
function control_start() {
clearInterval(timer_start);
inActive = true;
if (type == "aim") {
moveFunc_aim();
} else if (type == "chase") {
moveFunc_chase();
} else if (type == "path") {
moveFunc_path();
} else {
moveFunc();
}
shoot_control();
}
function moveFunc() {
var _local3 = dir_angle;
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
setAngle(_local3);
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
this.checkOut();
this.checkCrash();
};
}
function moveFunc_aim() {
var _local3 = ExtMath.angleOfLine(_x, _y, _root.role_mc._x, _root.role_mc._y);
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
setAngle(_local3);
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
this.checkOut();
this.checkCrash();
};
}
function moveFunc_chase() {
var _local4 = ExtMath.distance2(_x, _y, _root.role_mc._x, _root.role_mc._y);
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
if (_root.role.inDie != true) {
var _local3 = ExtMath.angleOfLine(this._x, this._y, _root.role_mc._x, _root.role_mc._y);
this.Vx = this.V * ExtMath.cosD(_local3);
this.Vy = this.V * ExtMath.sinD(_local3);
this.setAngle(_local3);
}
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
this.checkOut();
this.checkCrash();
};
}
function moveFunc_path() {
if (path == 0) {
path = int(Math.random() * 8) + 1;
}
var _local5 = "path" + path;
var _local4 = _parent.getNextHighestDepth();
path_mc = _parent.attachMovie(_local5, "path_mc" + _local4, _local4);
if (_root.dirY == -1) {
path_mc._yscale = -100;
path_mc._y = _root.stage_h;
}
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
if (this.checkCrash()) {
this.die();
return(undefined);
}
this.path_mc.nextFrame();
var _local3 = ExtMath.toGlobal(this.path_mc.pathDot_mc, this.path_mc);
this._x = _local3.x;
this._y = _local3.y;
if (_root.dirY == -1) {
this._rotation = (-this.path_mc.pathDot_mc._rotation) + 180;
} else {
this._rotation = this.path_mc.pathDot_mc._rotation;
}
if (this.path_mc._currentframe >= this.path_mc._totalframes) {
this.path_mc.removeMovieClip();
this.removeMovieClip();
}
};
onUnload = function () {
this.path_mc.removeMovieClip();
};
}
function setAngle(_angle) {
_rotation = _angle - 90;
}
function checkOut() {
if ((Vy > 0) && (_y > (_root.stage_h + 50))) {
removeMovieClip();
} else if ((Vy < 0) && (_y < -50)) {
removeMovieClip();
}
if ((Vx > 0) && (_x > (_root.stage_w + 50))) {
removeMovieClip();
} else if ((Vx < 0) && (_x < -50)) {
removeMovieClip();
}
}
function checkCrash() {
if (area.hitTest(_root.role_mc.area) && (inCrash != true)) {
inCrash = true;
var _local3 = 50;
hit(_local3);
_root.role.hit(_local3);
return(true);
}
inCrash = false;
}
function shoot_control() {
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shootFirstTime);
}
function shoot() {
if (_root.inPause) {
return(undefined);
}
if (inDie) {
return(undefined);
}
if (_root.role.inDie) {
return(undefined);
}
if ((_y > (_root.stage_h - 50)) && (Vy > 0)) {
return(undefined);
}
if ((_y < 50) && (Vy < 0)) {
return(undefined);
}
if (_x < 50) {
return(undefined);
}
if (_x > (_root.stage_w - 50)) {
return(undefined);
}
shoot_mc.shoot();
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
function hit(damage) {
if (inActive != true) {
return(undefined);
}
if (_y < 20) {
return(undefined);
}
if (_y > (_root.stage_h - 20)) {
return(undefined);
}
life = life - damage;
if (life <= 0) {
die();
}
}
function die() {
if (inDie) {
return(undefined);
}
inDie = true;
inActive = false;
clearInterval(timer_start);
clearInterval(timer_shoot);
delete onEnterFrame;
gotoAndPlay("die");
if (scorePoint == undefined) {
scorePoint = _life;
}
_root.addScore(scorePoint);
var _local3 = Math.random();
shoot_mc.removeMovieClip();
path_mc.removeMovieClip();
unlock();
if (type == "path") {
trace("die::::::::::::::::: " + die);
}
}
function lock() {
inLock = true;
lock_mc = attachMovie("lock_mc", "lock_mc", getNextHighestDepth());
}
function unlock() {
inLock = false;
lock_mc.removeMovieClip();
}
function addShadow() {
if (_root.shadowOn == false) {
return(undefined);
}
if (this instanceof Enemy_ground) {
return(undefined);
}
if (this instanceof Enemy_gun) {
return(undefined);
}
var _local4 = new flash.filters.DropShadowFilter(20, 45, 0, 0.5, 5, 5, 1, 1, false, false, false);
var _local3 = new Array();
_local3.push(_local4);
filters = _local3;
}
var inLock = false;
var inDie = false;
var isBigShip = false;
var inCrash = false;
var inActive = false;
}
Symbol 1590 MovieClip [__Packages.Enemy_ground] Frame 0
class Enemy_ground extends Enemy
{
var appearPosY, type, V, path, time_shoot, life, _life, type_shoot, type_bullet, V_bullet, dir_angle, _rotation, timer_check, shape_mc, pt, _parent, timer_start, delayTime, shoot_mc, attachMovie, getNextHighestDepth, shape, _x, shoot_control, timer_shoot, Vx, Vy, onEnterFrame, inDie, gotoAndPlay, unlock;
function Enemy_ground () {
super();
appearPosY = -20;
}
function init(initObj) {
type = initObj.type;
V = initObj.V;
path = initObj.path;
time_shoot = initObj.time_shoot * _root.time_shoot_rate;
life = (_life = initObj.life * _root.life_rate);
type_shoot = initObj.type_shoot;
type_bullet = initObj.type_bullet;
V_bullet = initObj.V_bullet * _root.V_bullet_rate;
dir_angle = _rotation - 90;
if ((life == undefined) || (life == 0)) {
life = (_life = 100);
}
if ((time_shoot == undefined) || (time_shoot == 0)) {
time_shoot = 2000;
}
timer_check = setInterval(this, "ckeck_appear", 500);
}
function onUnload() {
shape_mc.removeMovieClip();
}
function ckeck_appear() {
pt = ExtMath.toGlobal(this, _parent);
if (((pt.y > (_root.stage_h - appearPosY)) && (_root.dirY == 1)) || ((pt.y < appearPosY) && (_root.dirY == -1))) {
clearInterval(timer_check);
}
if (((pt.y > appearPosY) && (_root.dirY == 1)) || ((pt.y < (_root.stage_h - appearPosY)) && (_root.dirY == -1))) {
clearInterval(timer_check);
timer_start = setInterval(this, "control_start", delayTime);
if ((shoot_mc instanceof MovieClip) != true) {
shoot_mc = attachMovie(type_shoot, "shoot_mc", getNextHighestDepth());
shoot_mc.init(type_bullet, V_bullet);
}
var _local3 = _root.enemy_loader.getNextHighestDepth();
shape_mc = _root.enemy_loader.attachMovie(shape, (("shape_" + _local3) + "_") + int(_x), _local3);
shape_mc.body = this;
shape_mc._x = pt.x;
shape_mc._y = pt.y;
}
}
function control_start() {
clearInterval(timer_start);
moveFunc();
shoot_control();
}
function shoot() {
if (_root.inPause) {
return(undefined);
}
if (_root.role.inDie) {
return(undefined);
}
if (pt.y > (_root.stage_h - 50)) {
return(undefined);
}
if (pt.y < 50) {
return(undefined);
}
shoot_mc.shoot();
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
function moveFunc() {
var _local3 = dir_angle;
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
if (this.V != 0) {
if (((this.Vy < 0) && (this._y > 100)) || ((this.Vy > 0) && (this._y < 400))) {
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
}
}
this.pt = ExtMath.toGlobal(this, this._parent);
this.shape_mc._x = this.pt.x;
this.shape_mc._y = this.pt.y;
if (this.pt.y < -50) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
} else if (this.pt.y > (_root.stage_h + 50)) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
}
if (this.pt.x < -50) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
} else if (this.pt.x > (_root.stage_w + 50)) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
}
};
}
function checkOut() {
onEnterFrame = function () {
this.pt = ExtMath.toGlobal(this, this._parent);
if (this.pt.y < -50) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
} else if (this.pt.y > (_root.stage_h + 50)) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
}
if (this.pt.x < -50) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
} else if (this.pt.x > (_root.stage_w + 50)) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
}
};
}
function hit(damage) {
if (inDie) {
return(undefined);
}
if (pt.y < 0) {
return(undefined);
}
life = life - damage;
if (life <= 0) {
die();
}
}
function die() {
if (inDie) {
return(undefined);
}
inDie = true;
clearInterval(timer_shoot);
delete onEnterFrame;
gotoAndPlay("die");
unlock();
shape_mc.removeMovieClip();
dropItem();
}
function dropItem() {
var _local3 = Math.random();
if (_local3 < 0.3) {
if ((_root.role.power / _root.role._power) > 0.8) {
return(undefined);
}
var _local4 = attachMovie("powerInc_ground", "powerInc_ground", getNextHighestDepth());
_local4._rotation = _local4._rotation - _rotation;
} else if (_local3 < 0.5) {
if ((_root.role.life / _root.role._life) > 0.5) {
return(undefined);
}
var _local4 = attachMovie("LifeInc_ground", "LifeInc_ground", getNextHighestDepth());
_local4._rotation = _local4._rotation - _rotation;
} else if (_local3 < 0.7) {
if (_root.role.bombNum > 3) {
return(undefined);
}
var _local4 = attachMovie("bombInc", "bombInc", getNextHighestDepth());
_local4._rotation = _local4._rotation - _rotation;
}
}
}
Symbol 1591 MovieClip [__Packages.Enemy_gun] Frame 0
class Enemy_gun extends Enemy
{
var shoot_mc, attachMovie, type_shoot, getNextHighestDepth, type_bullet, V_bullet, shoot_posy, timer_start, delayTime, shoot_control, pt, timer_shoot, time_shoot, onEnterFrame, inDie, life, gotoAndPlay, unlock, shape_mc;
function Enemy_gun () {
super();
init();
}
function init(initObj) {
if ((shoot_mc instanceof MovieClip) != true) {
shoot_mc = attachMovie(type_shoot, "shoot_mc", getNextHighestDepth());
shoot_mc.init(type_bullet, V_bullet);
shoot_mc._y = shoot_mc._y + shoot_posy;
}
timer_start = setInterval(this, "control_start", delayTime);
}
function init2() {
if ((shoot_mc instanceof MovieClip) != true) {
shoot_mc = attachMovie(type_shoot, "shoot_mc", getNextHighestDepth());
}
shoot_mc.init(type_bullet, V_bullet);
timer_start = setInterval(this, "control_start", delayTime);
}
function control_start() {
clearInterval(timer_start);
moveFunc();
shoot_control();
}
function shoot() {
if (_root.inPause) {
return(undefined);
}
if (_root.role.inDie) {
return(undefined);
}
if (pt.y > (_root.stage_h - 50)) {
return(undefined);
}
if (pt.y < 50) {
return(undefined);
}
shoot_mc.shoot();
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
function moveFunc() {
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
var _local4 = ExtMath.toGlobal(this, this._parent);
var _local3 = ExtMath.angleOfLine(_local4.x, _local4.y, _root.role_mc._x, _root.role_mc._y);
if ((_root.dirY == -1) && (this._parent._yscale < 0)) {
this._rotation = 270 - _local3;
} else {
this._rotation = _local3 - 90;
}
};
}
function checkOut() {
}
function hit(damage) {
if (inDie) {
return(undefined);
}
if (pt.y < 0) {
return(undefined);
}
life = life - damage;
if (life <= 0) {
die();
}
}
function die() {
if (inDie) {
return(undefined);
}
inDie = true;
delete onEnterFrame;
gotoAndPlay("die");
unlock();
shape_mc.removeMovieClip();
}
}
Symbol 1592 MovieClip [__Packages.Enemy_shape] Frame 0
class Enemy_shape extends Enemy
{
var _parent, swapDepths, body, removeMovieClip;
function Enemy_shape () {
super();
var _local3 = _parent.getNextHighestDepth() + 1;
swapDepths(_local3);
}
function init() {
}
function hit(damage) {
body.hit(damage);
}
function die() {
removeMovieClip();
}
function lock() {
inLock = true;
body.lock();
}
function unlock() {
inLock = false;
body.unlock();
}
var inLock = false;
}
Symbol 1593 MovieClip [__Packages.EnemyShoot] Frame 0
class EnemyShoot extends MovieClip
{
var _visible, V_default, V, bullet_type;
function EnemyShoot () {
super();
_visible = false;
V_default = 8;
if (V == undefined) {
V = V_default;
} else {
V = V * _root.V_bullet_rate;
}
}
function init(_bullet_type, V_bullet) {
bullet_type = "bullet_e_" + _bullet_type;
V = V_bullet;
if (V == undefined) {
V = V_default;
}
V = V * _root.V_bullet_rate;
}
function shoot() {
}
function do_shoot() {
}
}
Symbol 1594 MovieClip [__Packages.EnemyShoot_plane] Frame 0
class EnemyShoot_plane extends EnemyShoot
{
var play, bullet_type;
function EnemyShoot_plane () {
super();
}
function shoot() {
play();
}
function do_shoot(sourceObj, offest_angle) {
var _local6 = _root.enemy_loader;
var _local4 = _local6.getNextHighestDepth();
var _local5 = _local6.attachMovie(bullet_type, "bullet" + _local4, _local4);
var _local3 = ExtMath.toGlobal(sourceObj, this);
var _local7 = ExtMath.angleOfLine(_local3.x, _local3.y, _root.role_mc._x, _root.role_mc._y);
_local5._x = _local3.x;
_local5._y = _local3.y;
}
}
Symbol 1595 MovieClip [__Packages.Bullet] Frame 0
class Bullet extends MovieClip
{
static var stage_l, stage_r, stage_u, stage_d;
var damage, _x, _y, angle_shoot, _rotation, Vx, Vy, V, onEnterFrame, removeMovieClip, gotoAndPlay, colorMC, MC_color, timer_color;
function Bullet () {
super();
damage = 100;
stage_l = -20;
stage_r = _root.stage_w + 20;
stage_u = -20;
stage_d = _root.stage_h + 20;
}
function init(posx, posy, rotation, vx, vy, _V) {
_x = posx;
_y = posy;
angle_shoot = rotation;
_rotation = rotation;
Vx = vx;
Vy = vy;
V = _V;
onEnterFrame = control;
}
function control() {
if (_root.inPause) {
return(undefined);
}
_x = _x + Vx;
_y = _y + Vy;
checkHit();
checkOut();
}
function checkOut() {
if (_x > stage_r) {
removeMovieClip();
} else if (_x < stage_l) {
removeMovieClip();
} else if (_y > stage_d) {
removeMovieClip();
} else if (_y < stage_u) {
removeMovieClip();
}
}
function checkHit() {
}
function hit() {
delete onEnterFrame;
gotoAndPlay("end");
_root.soundStart("hit_snd");
}
function colorEffect(_mc) {
colorMC = _mc.body;
if (colorMC.inWhite) {
return(undefined);
}
colorMC.inWhite = true;
MC_color = new Color(colorMC);
colorChange("color_hit1");
}
function colorChange(colorType) {
MC_color.setTransform(this[colorType]);
clearInterval(timer_color);
timer_color = setInterval(this, "colorRecover", 10);
}
function colorRecover() {
MC_color.setTransform(color_self);
clearInterval(timer_color);
colorMC.inWhite = null;
}
function onUnload() {
colorRecover();
}
var color_hit1 = {ra:"100", rb:"100", ga:"100", gb:"50", ba:"100", bb:"-150", aa:"100", ab:"0"};
var color_self = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"};
}
Symbol 1596 MovieClip [__Packages.Bullet_enemy] Frame 0
class Bullet_enemy extends Bullet
{
var hitTatget, area, colorEffect, damage, hit, _x, _y, angle_shoot, _xscale, _yscale, V, Vx, Vy, _rotation;
function Bullet_enemy () {
super();
hitTatget = _root.role;
}
function checkHit() {
if (_root.role_mc.area.hitTest(area)) {
colorEffect(_root.role_mc);
hitTatget.hit(damage);
hit();
}
if (_root.role.weapon2 != "deflector") {
return(undefined);
}
if (_root.weaponControl_mc.line_mc.hitTest(_x, _y, true)) {
var _local4 = _root.weaponControl_mc.line_mc;
var _local5;
for (var _local6 in _local4) {
var _local3 = _local4[_local6];
if (_local3.hitTest(_x, _y, true)) {
_local5 = _local3._rotation;
break;
}
}
checkBounce(_local5);
}
}
function checkHit2() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if (_local3.area.hitTest(area)) {
colorEffect(_local3);
_local3.hit(damage);
hit();
return(true);
}
}
}
function checkBounce(angle_line) {
var _local2 = ExtMath.fixAngle((angle_line * 2) - angle_shoot);
_xscale = (_yscale = 130);
V = V * 1.4;
Vx = V * ExtMath.cosD(_local2);
Vy = V * ExtMath.sinD(_local2);
_rotation = _local2;
angle_shoot = _local2;
checkHit = checkHit2;
checkBounce = null;
}
function checkBounce_back() {
var _local2 = 2;
Vx = Vx * (-_local2);
Vy = Vy * (-_local2);
_xscale = (_yscale = 150);
checkHit = checkHit2;
checkBounce_back = null;
}
}
Symbol 1597 MovieClip [__Packages.Bullet_enemy_laser] Frame 0
class Bullet_enemy_laser extends Bullet_enemy
{
var onEnterFrame, _x, _y, area, hitTatget, damage, colorEffect;
function Bullet_enemy_laser () {
super();
onEnterFrame = control;
}
function init(posx, posy, rotation, vx, vy) {
_x = posx;
_y = posy;
}
function control() {
checkHit();
}
function checkHit() {
if (hits > hitMax) {
checkHit = null;
}
if (area.hitTest(_root.role_mc._x, _root.role_mc._y, true)) {
hitTatget.hit(damage);
colorEffect(_root.role_mc);
hits++;
}
}
function checkBounce(angle_line) {
}
function checkBounce_back() {
}
var hits = 0;
var hitMax = 10;
}
Symbol 1598 MovieClip [__Packages.EnemyShoot_laser] Frame 0
class EnemyShoot_laser extends EnemyShoot
{
var bullet_rotation, type, play, _parent, _rotation;
function EnemyShoot_laser () {
super();
bullet_rotation = 90;
}
function init(faceDir) {
}
function shoot() {
if (type == "aim") {
setAngle();
}
play();
}
function setAngle() {
var _local3 = ExtMath.toGlobal(this, _parent);
var _local4 = ExtMath.angleOfLine(_local3.x, _local3.y, _root.role_mc._x, _root.role_mc._y);
if (_root.dirY == -1) {
_rotation = 270 - _local4;
} else {
_rotation = _local4 - 90;
}
}
}
Symbol 1599 MovieClip [__Packages.EnemyShoot2] Frame 0
class EnemyShoot2 extends EnemyShoot
{
var bullet_rotation, play, bullet_type, Vx, V, Vy;
function EnemyShoot2 () {
super();
bullet_rotation = 90;
}
function shoot() {
play();
}
function do_shoot(sourceObj, offest_angle) {
var _local6 = _root.bullet_mc;
var _local5 = _local6.getNextHighestDepth();
var _local7 = _local6.attachMovie(bullet_type, "bullet" + _local5, _local5);
var _local3 = ExtMath.toGlobal(sourceObj, this);
var _local4 = ExtMath.angleOfLine(_local3.x, _local3.y, _root.role_mc._x, _root.role_mc._y);
_local4 = _local4 + offest_angle;
bullet_rotation = _local4;
Vx = V * ExtMath.cosD(_local4);
Vy = V * ExtMath.sinD(_local4);
_local7.init(_local3.x, _local3.y, bullet_rotation, Vx, Vy, V);
}
}
Symbol 1600 MovieClip [__Packages.EnemyShoot_parentDir] Frame 0
class EnemyShoot_parentDir extends EnemyShoot
{
var bullet_type, bullet_rotation, play, _parent, Vx, V, Vy;
function EnemyShoot_parentDir () {
super();
bullet_type = "bullet_e_1";
bullet_rotation = 90;
}
function shoot() {
play();
}
function do_shoot(sourceObj, offest_angle) {
var _local6 = _root.bullet_mc;
var _local4 = _local6.getNextHighestDepth();
var _local7 = _local6.attachMovie(bullet_type, "bullet" + _local4, _local4);
var _local5 = ExtMath.toGlobal(sourceObj, this);
var _local3;
if (_root.dirY == -1) {
_local3 = 270 - _parent._rotation;
} else {
_local3 = (offest_angle + _parent._rotation) + 90;
}
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
_local7.init(_local5.x, _local5.y, _local3, Vx, Vy, V);
}
}
Symbol 1601 MovieClip [__Packages.EnemyShoot1] Frame 0
class EnemyShoot1 extends EnemyShoot
{
var bullet_rotation, play, bullet_type, Vx, V, Vy;
function EnemyShoot1 () {
super();
bullet_rotation = 90;
}
function shoot() {
play();
}
function do_shoot(sourceObj, offest_angle) {
var _local6 = _root.bullet_mc;
var _local4 = _local6.getNextHighestDepth();
var _local7 = _local6.attachMovie(bullet_type, "bullet" + _local4, _local4);
var _local5 = ExtMath.toGlobal(sourceObj, this);
var _local3 = offest_angle + (bullet_rotation * _root.dirY);
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
_local7.init(_local5.x, _local5.y, _local3, Vx, Vy, V);
}
}
Symbol 1602 MovieClip [__Packages.EnemyShoot_s2] Frame 0
class EnemyShoot_s2 extends EnemyShoot
{
var bullet_type, r, time_shoot, angle_start, bullet_num, d_angle, V, f, bullet_rotation, bullet_shooted, timer_shoot, _parent, Vx, Vy;
function EnemyShoot_s2 () {
super();
}
function init(initData) {
bullet_type = initData.bullet_type;
r = initData.r;
time_shoot = initData.time_shoot;
angle_start = initData.angle_start;
bullet_num = initData.bullet_num;
d_angle = initData.d_angle;
V = initData.V;
f = initData.f;
bullet_rotation = angle_start;
bullet_shooted = 0;
}
function shoot() {
var _local2 = Math.cos(bullet_rotation) * f;
do_shoot(angle_start + _local2, r);
bullet_rotation = bullet_rotation + d_angle;
bullet_shooted++;
if (bullet_shooted == bullet_num) {
clearInterval(timer_shoot);
bullet_rotation = angle_start;
bullet_shooted = 0;
return(undefined);
}
if (time_shoot == 0) {
shoot();
} else {
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
updateAfterEvent();
}
function do_shoot(angle, r) {
var _local7 = _root.bullet_mc;
var _local5 = _local7.getNextHighestDepth();
var _local10 = _local7.attachMovie(bullet_type, "bullet" + _local5, _local5);
var _local6 = ExtMath.toGlobal(this, _parent);
var _local9 = r * ExtMath.cosD(angle);
var _local8 = r * ExtMath.sinD(angle);
var _local3 = new Object();
_local3.x = _local6.x + _local9;
_local3.y = _local6.y + _local8;
Vx = V * ExtMath.cosD(angle);
Vy = V * ExtMath.sinD(angle);
_local10.init(_local3.x, _local3.y, angle, Vx, Vy, V);
}
}
Symbol 1603 MovieClip [__Packages.ShootControl] Frame 0
class ShootControl extends MovieClip
{
var _visible;
function ShootControl () {
super();
_visible = false;
}
function init(moveDir, faceDir, _V) {
}
function shoot() {
}
function do_shoot() {
}
}
Symbol 1604 MovieClip [__Packages.Shoot_straight] Frame 0
class Shoot_straight extends ShootControl
{
var V, bullet_type, Vy, bullet_rotation, play, Vx;
function Shoot_straight () {
super();
V = 25;
bullet_type = "bullet";
Vy = 25;
bullet_rotation = -90;
}
function init(faceDir) {
}
function shoot() {
play();
}
function do_shoot(sourceObj, offest_angle, _type) {
var _local6;
if ((_type != "") && (_type != undefined)) {
_local6 = _type;
} else {
_local6 = bullet_type;
}
var _local7 = _root.bullet_mc;
var _local4 = _local7.getNextHighestDepth();
var _local9 = _local7.attachMovie(_local6, "bullet" + _local4, _local4);
var _local5 = ExtMath.toGlobal(sourceObj, this);
var _local3 = offest_angle + (bullet_rotation * _root.dirY);
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
_local9.init(_local5.x, _local5.y, _local3, Vx, Vy);
}
}
Symbol 1605 MovieClip [__Packages.Bg] Frame 0
class Bg extends MovieClip
{
var v, screenMax, disTotal, _height, disNow, stageName, screenID, bg1, bg2, onEnterFrame, attachMovie;
function Bg () {
super();
v = 1;
screenMax = 10;
disTotal = _height;
disNow = 0;
}
function init(_stageName) {
stageName = _stageName;
if (_root.dirY == 1) {
screenID = 0;
bg1 = addBg_first();
screenID++;
bg2 = addBg();
control(v * _root.dirY);
} else if (_root.dirY == -1) {
screenID = screenMax - 1;
bg1 = addBg_first();
screenID--;
bg2 = addBg();
control2(v * _root.dirY);
}
}
function reset() {
v = 1;
disTotal = _height;
disNow = 0;
init();
}
function gotoPos(num, stop) {
bg1.removeMovieClip();
bg2.removeMovieClip();
if (_root.dirY == 1) {
screenID = num;
bg1 = addBg_first();
screenID++;
bg2 = addBg();
} else if (_root.dirY == -1) {
screenID = (screenMax - num) - 1;
bg1 = addBg_first();
screenID--;
bg2 = addBg();
}
if (stop) {
delete onEnterFrame;
}
}
function addBg_first() {
var _local4;
if (_root.dirY == -1) {
_local4 = 100 + screenID;
} else {
_local4 = 100 - screenID;
}
var _local3 = attachMovie(stageName + screenID, stageName + screenID, _local4);
_local3._x = 0;
_local3._y = 0;
if ((_local3._totalframes > 1) && (_root.checkBack(_root.stageID - 1))) {
_local3.gotoAndStop(_local3._totalframes);
}
return(_local3);
}
function addBg() {
var _local4;
if (_root.dirY == -1) {
_local4 = 100 + screenID;
} else {
_local4 = 100 - screenID;
}
var _local3 = attachMovie(stageName + screenID, stageName + screenID, _local4);
_local3._x = 0;
_local3._y = (-_root.stage_h) * _root.dirY;
if ((_local3._totalframes > 1) && (_root.checkBack(_root.stageID - 1))) {
_local3.gotoAndStop(_local3._totalframes);
}
return(_local3);
}
function deleteBg() {
}
function control(v) {
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this.bg1._y = this.bg1._y + v;
this.bg2._y = this.bg2._y + v;
if (this.bg2._y == 0) {
if (this.screenID == (this.screenMax - 1)) {
delete this.onEnterFrame;
this.wait();
return(undefined);
}
this.bg1.removeMovieClip();
this.bg1 = this.bg2;
this.screenID++;
this.bg2 = this.addBg();
}
};
}
function control2(v) {
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this.bg1._y = this.bg1._y + v;
this.bg2._y = this.bg2._y + v;
if (this.bg2._y == 0) {
if (this.screenID == 0) {
delete this.onEnterFrame;
this.wait();
return(undefined);
}
this.bg1.removeMovieClip();
this.bg1 = this.bg2;
this.screenID--;
this.bg2 = this.addBg();
}
};
}
function wait() {
_root.enemy_loader.clearTimerAttack();
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
if (_root.enemy_loader.checkEnd()) {
_root.enemy_loader.getEnd();
delete this.onEnterFrame;
}
};
}
function stopScroll() {
delete onEnterFrame;
}
function continueScroll() {
control(v * _root.dirY);
}
var inEnd = false;
}
Symbol 1606 MovieClip [__Packages.EnemyShoot_line] Frame 0
class EnemyShoot_line extends EnemyShoot
{
var bullet_type, r, time_shoot, angle_start, bullet_num, V, bullet_shooted, _parent, timer_shoot, Vx, Vy;
function EnemyShoot_line () {
super();
}
function init(initData) {
bullet_type = initData.bullet_type;
r = initData.r;
time_shoot = initData.time_shoot;
aim = initData.aim;
angle_start = initData.angle_start;
bullet_num = initData.bullet_num;
V = initData.V;
bullet_shooted = 0;
}
function shoot() {
if (aim) {
var _local3 = ExtMath.toGlobal(this, _parent);
angle_start = ExtMath.angleOfLine(_local3.x, _local3.y, _root.role_mc._x, _root.role_mc._y);
}
do_shoot(angle_start, r);
bullet_shooted++;
if (bullet_shooted == bullet_num) {
clearInterval(timer_shoot);
bullet_shooted = 0;
return(undefined);
}
if (time_shoot == 0) {
shoot();
} else {
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
updateAfterEvent();
}
function do_shoot(angle, r) {
var _local7 = _root.bullet_mc;
var _local5 = _local7.getNextHighestDepth();
var _local10 = _local7.attachMovie(bullet_type, "bullet" + _local5, _local5);
var _local6 = ExtMath.toGlobal(this, _parent);
var _local9 = r * ExtMath.cosD(angle);
var _local8 = r * ExtMath.sinD(angle);
var _local3 = new Object();
_local3.x = _local6.x + _local9;
_local3.y = _local6.y + _local8;
Vx = V * ExtMath.cosD(angle);
Vy = V * ExtMath.sinD(angle);
_local10.init(_local3.x, _local3.y, angle, Vx, Vy, V);
}
var aim = false;
}
Symbol 1607 MovieClip [__Packages.EnemyShoot_s1] Frame 0
class EnemyShoot_s1 extends EnemyShoot
{
var bullet_type, r, time_shoot, angle_start, angle_total, d_angle, V, bullet_num, bullet_rotation, bullet_shooted, timer_shoot, _parent, Vx, Vy;
function EnemyShoot_s1 () {
super();
}
function init(initData) {
bullet_type = initData.bullet_type;
r = initData.r;
time_shoot = initData.time_shoot;
if (_root.dirY == -1) {
angle_start = 180 + initData.angle_start;
} else {
angle_start = initData.angle_start;
}
angle_total = initData.angle_total;
if (_root.dirY == -1) {
d_angle = initData.d_angle;
} else {
d_angle = initData.d_angle;
}
V = initData.V;
bullet_num = int(angle_total / Math.abs(d_angle)) + 1;
bullet_rotation = angle_start;
bullet_shooted = 0;
}
function shoot() {
do_shoot(bullet_rotation, r);
bullet_rotation = bullet_rotation + d_angle;
bullet_shooted++;
if (bullet_shooted == bullet_num) {
clearInterval(timer_shoot);
bullet_rotation = angle_start;
bullet_shooted = 0;
return(undefined);
}
if (time_shoot == 0) {
shoot();
} else {
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
updateAfterEvent();
}
function do_shoot(angle, r) {
var _local7 = _root.bullet_mc;
var _local5 = _local7.getNextHighestDepth();
var _local10 = _local7.attachMovie(bullet_type, "bullet" + _local5, _local5);
var _local6 = ExtMath.toGlobal(this, _parent);
var _local9 = r * ExtMath.cosD(angle);
var _local8 = r * ExtMath.sinD(angle);
var _local3 = new Object();
_local3.x = _local6.x + _local9;
_local3.y = _local6.y + _local8;
Vx = V * ExtMath.cosD(angle);
Vy = V * ExtMath.sinD(angle);
_local10.init(_local3.x, _local3.y, angle, Vx, Vy, V);
}
}
Symbol 1608 MovieClip [__Packages.Bullet_role] Frame 0
class Bullet_role extends Bullet
{
var area, damage, hit, colorEffect;
function Bullet_role () {
super();
}
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof Enemy) != true) {
continue;
}
if (_local3.area.hitTest(area)) {
_local3.hit(damage);
hit();
colorEffect(_local3);
}
}
}
}
Symbol 1609 MovieClip [__Packages.Bullet1] Frame 0
class Bullet1 extends Bullet_role
{
var _x, _y, _rotation, Vx, Vy, onEnterFrame, control, area, damage, hit, colorEffect;
function Bullet1 () {
super();
}
function init(posx, posy, rotation, vx, vy) {
_x = posx;
_y = posy;
_rotation = rotation;
Vx = vx;
Vy = vy;
onEnterFrame = control;
}
function checkHit() {
if (_root.enemy_loader.hitTest(_x, _y, true)) {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof Enemy) != true) {
continue;
}
if (_local3.area.hitTest(area)) {
_local3.hit(damage);
hit();
colorEffect(_local3);
}
}
}
}
}
Symbol 1610 MovieClip [__Packages.ColorEffect] Frame 0
class ColorEffect
{
var MC, MC_color, oldColor, timer_color;
function ColorEffect (_mc) {
MC = _mc.body;
if (MC == undefined) {
this=null;//parameter overwritten
return;
}
if (MC.inWhite) {
this=null;//parameter overwritten
return;
}
MC.inWhite = true;
MC_color = new Color(MC);
oldColor = MC_color.getTransform();
colorChange("color_hit1");
}
function colorChange(colorType) {
MC_color.setTransform(this[colorType]);
clearInterval(timer_color);
timer_color = setInterval(this, "colorRecover", 10);
}
function colorRecover() {
MC_color.setTransform(oldColor);
clearInterval(timer_color);
MC.inWhite = null;
this=null;//parameter overwritten
}
var color_hit1 = {ra:"100", rb:"255", ga:"100", gb:"137", ba:"100", bb:"66", aa:"100", ab:"0"};
}
Symbol 1611 MovieClip [__Packages.Bullet_canon] Frame 0
class Bullet_canon extends Bullet1
{
var area, damage, hit, colorEffect;
function Bullet_canon () {
super();
}
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof Enemy) != true) {
continue;
}
if (_local3.area.hitTest(area)) {
_local3.hit(damage);
hit();
colorEffect(_local3);
}
}
}
}
Symbol 1612 MovieClip [__Packages.Bullet_chase] Frame 0
class Bullet_chase extends Bullet_role
{
var damage, V, _x, _y, _rotation, Vx, Vy, angle_old, angle_chase, hitTarget, onEnterFrame;
function Bullet_chase () {
super();
damage = 100;
V = 15;
}
function init(posx, posy, rotation, vx, vy, _hitTarget) {
_x = posx;
_y = posy;
_rotation = rotation;
Vx = vx;
Vy = vy;
angle_old = rotation;
angle_chase = rotation;
if (_hitTarget instanceof MovieClip) {
hitTarget = _hitTarget;
} else {
hitTarget = getTartget();
}
control();
}
function control() {
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
var _local3 = ExtMath.toGlobal(this, this._parent);
var _local4 = ExtMath.distance2(_local3.x, _local3.y, this.hitTarget._x, this.hitTarget._y);
if ((this.hitTarget instanceof MovieClip) != true) {
this.chase = null;
}
this.chase(_local3);
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
this.checkHit();
this.checkOut();
};
}
function chase(pos) {
var _local3 = ExtMath.toGlobal(hitTarget, hitTarget._parent);
var _local4 = ExtMath.angleOfLine(_x, _y, _local3.x, _local3.y);
var _local2 = _local4 - angle_old;
if (Math.abs(_local2) < 10) {
} else if (_local2 > 40) {
angle_chase = angle_chase + 5;
} else if (_local2 < -40) {
angle_chase = angle_chase - 5;
} else {
angle_chase = angle_chase + (_local2 / 5);
}
angle_old = angle_chase;
Vx = V * ExtMath.cosD(angle_chase);
Vy = V * ExtMath.sinD(angle_chase);
if (isNaN(Vy)) {
Vx = 0;
Vy = 20;
}
_rotation = angle_chase;
}
function chase2(pos) {
var _local6 = new Vector(hitTarget._x, hitTarget._y);
var _local3 = new Vector(_x, _y);
var _local7 = _local6.minusNew(_local3);
var _local5 = new Vector(_x + (100 * ExtMath.cosD(angle_chase)), _y + (100 * ExtMath.sinD(angle_chase)));
var _local4 = _local5.minusNew(_local3);
var _local2 = _local7.angleBetween(_local4);
_local2 = _local2 + 90;
angle_chase = angle_chase + (_local2 / 5);
Vx = V * ExtMath.cosD(angle_chase);
Vy = V * ExtMath.sinD(angle_chase);
_rotation = angle_chase;
}
function getTartget() {
var _local3 = new Array();
for (var _local6 in _root.enemy_loader) {
var _local2 = _root.enemy_loader[_local6];
if (_local2 instanceof MovieClip) {
_local3.push(_local2);
}
}
var _local5 = _local3.length;
var _local6 = int(Math.random() * _local5);
var _local4 = _local3[_local6];
return(_local4);
}
}
Symbol 1613 MovieClip [__Packages.Vector] Frame 0
class Vector
{
var x, y;
function Vector (newx, newy) {
x = newx;
y = newy;
}
function toString() {
var _local3 = Math.round(x * 1000) / 1000;
var _local2 = Math.round(y * 1000) / 1000;
return(((("[" + _local3) + ",") + _local2) + "]");
}
function reset(newx, newy) {
x = newx;
y = newy;
}
function getClone() {
return(new Vector(x, y));
}
function equals(v) {
return((x == v.x) && (y == v.y));
}
function plus(v) {
x = x + v.x;
y = y + v.y;
}
function plusNew(v) {
return(new Vector(x + v.x, y + v.y));
}
function minus(v) {
x = x - v.x;
y = y - v.y;
}
function minusNew(v) {
return(new Vector(x - v.x, y - v.y));
}
function negate() {
x = -x;
y = -y;
}
function negateNew() {
return(new Vector(-x, -y));
}
function scale(s) {
x = x * s;
y = y * s;
}
function scaleNew(s) {
return(new Vector(x * s, y * s));
}
function getLength() {
return(Math.sqrt((x * x) + (y * y)));
}
function setLength(len) {
var _local2 = getLength();
if (_local2) {
scale(len / _local2);
} else {
x = len;
}
}
function getAngle() {
return(ExtMath.atan2D(y, x));
}
function setAngle(angle) {
var _local2 = getLength();
x = _local2 * ExtMath.cosD(angle);
y = _local2 * ExtMath.sinD(angle);
}
function rotate(angle) {
var _local3 = ExtMath.cosD(angle);
var _local2 = ExtMath.sinD(angle);
var _local5 = (x * _local3) - (y * _local2);
var _local4 = (x * _local2) + (y * _local3);
x = _local5;
y = _local4;
}
function rotateNew(angle) {
var _local2 = new Vector(x, y);
_local2.rotate(angle);
return(_local2);
}
function dot(v) {
return((x * v.x) + (y * v.y));
}
function getNormal() {
return(new Vector(-y, x));
}
function isPerpTo(v) {
return(dot(v) == 0);
}
function angleBetween(v) {
var _local3 = dot(v);
var _local2 = _local3 / (getLength() * v.getLength());
return(ExtMath.acosD(_local2));
}
}
Symbol 1614 MovieClip [__Packages.Bullet_missile_1] Frame 0
class Bullet_missile_1 extends Bullet_role
{
var Va, Vmax, _x, _y, _rotation, Vx, Vy, Va_x, Va_y, onEnterFrame, checkHit, checkOut;
function Bullet_missile_1 () {
super();
Va = 0.8;
Vmax = 20;
}
function init(posx, posy, rotation, vx, vy) {
_x = posx;
_y = posy;
_rotation = rotation;
Vx = 0;
Vy = 0;
Va_x = Va * ExtMath.cosD(_rotation);
Va_y = Va * ExtMath.sinD(_rotation);
onEnterFrame = control;
}
function control() {
if (_root.inPause) {
return(undefined);
}
_x = _x + Vx;
_y = _y + Vy;
if ((Vx < Vmax) && (Vy < Vmax)) {
Vx = Vx + Va_x;
Vy = Vy + Va_y;
}
checkHit();
checkOut();
}
}
Symbol 1615 MovieClip [__Packages.Shoot_aim] Frame 0
class Shoot_aim extends ShootControl
{
var V, bullet_type, Vy, bullet_rotation, play, Vx;
function Shoot_aim () {
super();
V = 25;
bullet_type = "bullet_missile";
Vy = 25;
bullet_rotation = -90;
}
function init(faceDir) {
}
function shoot() {
play();
}
function do_shoot(sourceObj, offest_angle) {
var _local8 = _root.bullet_mc;
var _local6 = _local8.getNextHighestDepth();
var _local7 = _local8.attachMovie(bullet_type, "bullet" + _local6, _local6);
var _local3 = ExtMath.toGlobal(sourceObj, this);
var _local4 = ExtMath.angleOfLine(_local3.x, _local3.y, _root._xmouse, _root._ymouse);
_local4 = _local4 + offest_angle;
bullet_rotation = _local4;
var _local5 = _local7.V;
if (_local5 == undefined) {
_local5 = V;
}
Vx = _local5 * ExtMath.cosD(_local4);
Vy = _local5 * ExtMath.sinD(_local4);
_local7.init(_local3.x, _local3.y, bullet_rotation, Vx, Vy);
}
}
Symbol 1616 MovieClip [__Packages.WeaponControl_missile] Frame 0
class WeaponControl_missile extends MovieClip
{
var getNextHighestDepth, hitTest_mc, attachMovie, target_array, maxNum_array, _lv, maxNum, onEnterFrame;
function WeaponControl_missile () {
super();
var _local4 = "missile";
var _local3 = getNextHighestDepth();
hitTest_mc = attachMovie("hitTest_" + _local4, "hitTest_mc", _local3);
target_array = new Array();
maxNum_array = new Array(3, 4, 5, 6);
_lv = 1;
maxNum = maxNum_array[_lv - 1];
}
function onUnload() {
for (var _local2 in target_array) {
target_array[_local2].unlock();
}
}
function setLv(num) {
if ((!isNaN(num)) && (num < 5)) {
_lv = num;
maxNum = maxNum_array[_lv - 1];
}
}
function onMouseDown() {
if (_root.inPause) {
return(undefined);
}
if (_root.role.checkPower(_root.powerUse.missile)) {
} else {
return(undefined);
}
mouseDown = true;
hitTest_mc.gotoAndPlay("start");
onEnterFrame = function () {
this.hitTest_mc._x = this._xmouse;
this.hitTest_mc._y = this._ymouse;
};
}
function onMouseUp() {
if (_root.inPause) {
return(undefined);
}
mouseDown = false;
hitTest_mc.gotoAndStop(1);
delete onEnterFrame;
if (target_array.length > 0) {
shoot2_start();
}
}
function onMouseMove() {
if (_root.inPause) {
return(undefined);
}
if (target_array.length == maxNum) {
return(undefined);
}
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if (_local3.area.hitTest(hitTest_mc.area)) {
if (_local3.inLock != true) {
if (_root.role.checkPower(_root.powerUse.missile)) {
_root.role.setPower(_root.powerUse.missile);
} else {
return(undefined);
}
target_array.push(_local3);
_local3.lock();
}
}
}
}
function shoot2_start() {
var i = 0;
onEnterFrame = function () {
this.shoot2(this.target_array[i]);
i++;
if (i == this.target_array.length) {
delete this.onEnterFrame;
for (var i in this.target_array) {
this.target_array[i].unlock();
}
this.shoot2_end();
}
};
}
function shoot2_end() {
target_array = [];
}
function shoot1() {
var _local9 = "bullet_missile_1";
var _local4 = _root.bullet_mc;
var _local3 = _local4.getNextHighestDepth();
var _local8 = _local4.attachMovie(_local9, "bullet" + _local3, _local3);
var _local2 = new Object();
_local2.x = _root.role_mc._x;
_local2.y = _root.role_mc._y;
var _local7 = -90;
var _local6 = 0;
var _local5 = -20;
_local8.init(_local2.x, _local2.y, _local7, _local6, _local5);
}
function shoot2(hitTarget) {
var _local13 = "bullet_missile";
var _local9 = _root.bullet_mc;
var _local5 = _local9.getNextHighestDepth();
var _local12 = _local9.attachMovie(_local13, "bullet" + _local5, _local5);
var _local2 = new Object();
_local2.x = _root.role_mc._x;
_local2.y = _root.role_mc._y;
var _local7 = ExtMath.toGlobal(hitTarget, hitTarget._parent);
var _local4 = ExtMath.angleOfLine(_local2.x, _local2.y, _local7.x, _local7.y);
var _local11 = _local4;
var _local8 = 25;
var _local6 = _local8 * ExtMath.cosD(_local4);
var _local3 = _local8 * ExtMath.sinD(_local4);
if (isNaN(_local3)) {
_local6 = 0;
_local3 = 20;
}
_local12.init(_local2.x, _local2.y, _local11, _local6, _local3, hitTarget);
}
var mouseDown = false;
}
Symbol 1617 MovieClip [__Packages.Draw] Frame 0
class Draw extends MovieClip
{
var line_dot_max, line_time, light_time, line_dot, hitTimes0, hitTimes, line_num, pos_array, line_Timer, posStart_x, _xmouse, posStart_y, _ymouse, posPrev_x, posPrev_y, pos1_x, pos1_y, hitTest_mc, posEnd_x, posEnd_y, light_Timer, effect_light1, effect_light2, effect_mc2, sound_line, onEnterFrame, line_mc, effect_mc, colorMC, MC_color, oldColor, timer_color;
function Draw () {
super();
line_dot_max = 20;
line_time = 2000;
light_time = 40;
line_dot = 0;
hitTimes0 = 1;
hitTimes = hitTimes0;
line_num = 1;
setLevel(1);
pos_array = new Array();
}
function setLevel(__level) {
if (__level == 2) {
line_dot_max = 10;
} else if (__level == 3) {
line_dot_max = 20;
} else {
line_dot_max = 6;
}
}
function onMouseDown() {
if (_root.inPause) {
return(undefined);
}
draw_out = true;
clearInterval(line_Timer);
clearLine();
line_dot = 0;
posStart_x = _xmouse;
posStart_y = _ymouse;
posPrev_x = posStart_x;
posPrev_y = posStart_y;
pos1_x = _xmouse;
pos1_y = _ymouse;
}
function onMouseMove() {
if (draw_out) {
if (_root.role.checkPower(_root.powerUse.lightning)) {
hitTest_mc._x = _xmouse;
hitTest_mc._y = _ymouse;
hitTest_mc.play();
} else {
hitTest_mc._x = -100;
hitTest_mc._y = -100;
hitTest_mc.gotoAndStop(1);
return(undefined);
}
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if (_local3.area.hitTest(hitTest_mc.area)) {
if (_local3.inDie != true) {
makeLight2_start(_local3);
}
}
}
}
updateAfterEvent();
}
function onMouseUp() {
draw_out = false;
posEnd_x = _xmouse;
posEnd_y = _ymouse;
clearInterval(light_Timer);
light_Timer = null;
effect_light1.clear();
effect_light2.clear();
effect_mc2.clear();
delete effect_mc2.onEnterFrame;
hitTest_mc._x = -100;
hitTest_mc._y = -100;
hitTest_mc.gotoAndStop(1);
}
function disappear() {
if (_root.flag_pause) {
return(undefined);
}
sound_line.removeMovieClip();
clearInterval(line_Timer);
}
function hit(angle, x, y) {
}
function clearLine() {
delete onEnterFrame;
pos_array = [];
clearInterval(line_Timer);
line_mc.removeMovieClip();
delete effect_mc.onEnterFrame;
effect_mc.clear();
}
function makeLight(d, thick) {
effect_mc.lineStyle(thick, 16777215);
effect_mc.moveTo(pos_array[0][0], pos_array[0][1]);
var _local4 = pos_array.length - 1;
var _local2 = 1;
while (_local2 < _local4) {
effect_mc.lineTo(pos_array[_local2][0] + ((Math.random() - 0.5) * d), pos_array[_local2][1] + ((Math.random() - 0.5) * d));
_local2++;
}
effect_mc.lineTo(pos_array[_local4][0], pos_array[_local4][1]);
}
function makeLight2(mc, x1, y1, x2, y2, d, thick, __color) {
mc.lineStyle(thick, 16777215);
mc.moveTo(x1, y1);
var _local4 = x2 - x1;
var _local3 = y2 - y1;
var _local9 = Math.sqrt((_local4 * _local4) + (_local3 * _local3));
var _local5 = Math.round(_local9 / d);
_local4 = _local4 / _local5;
_local3 = _local3 / _local5;
var _local1 = 1;
while (_local1 < _local5) {
mc.lineTo((x1 + (_local4 * _local1)) + ((Math.random() - 0.5) * d), (y1 + (_local3 * _local1)) + ((Math.random() - 0.5) * d));
_local1++;
}
mc.lineTo(x2, y2);
}
function makeLight2_start(target_mc) {
if (effect_mc2.onEnterFrame != undefined) {
return(undefined);
}
if (_root.role.checkPower(_root.powerUse.lightning)) {
_root.role.setPower(_root.powerUse.lightning);
} else {
return(undefined);
}
var onwer = this;
var _local4 = _root._xmouse;
var _local3 = _root._ymouse;
var i = 0;
var j = 0;
_root.soundStart("electric2_snd");
var thick;
var damage;
if (_root.role.weapon2_lv == 3) {
thick = 4;
damage = 20;
} else if (_root.role.weapon2_lv == 2) {
thick = 3;
damage = 15;
} else {
thick = 2;
damage = 10;
}
effect_mc2.onEnterFrame = function () {
if ((target_mc instanceof MovieClip) != true) {
delete this.onEnterFrame;
this.clear();
return(undefined);
}
if (j == 2) {
j = 0;
return(undefined);
}
j++;
this.clear();
onwer.makeLight2(this, _root.role_mc._x, _root.role_mc._y, this._xmouse, this._ymouse, 15 + random(5), 1, 16777215);
onwer.makeLight2(this, _root.role_mc._x, _root.role_mc._y, this._xmouse, this._ymouse, 20 + random(5), thick, 6711039);
onwer.makeLight2(this, _root.role_mc._x, _root.role_mc._y, this._xmouse, this._ymouse, 25 + random(5), 1, 16777215);
target_mc.hit(damage);
onwer.colorEffect(target_mc);
i++;
if (i > 3) {
delete this.onEnterFrame;
this.clear();
}
};
}
function colorEffect(_mc) {
colorMC = _mc.body;
if (colorMC.inWhite) {
return(undefined);
}
colorMC.inWhite = true;
MC_color = new Color(colorMC);
oldColor = MC_color.getTransform();
colorChange("color_hit1");
}
function colorChange(colorType) {
MC_color.setTransform(this[colorType]);
clearInterval(timer_color);
timer_color = setInterval(this, "colorRecover", 10);
}
function colorRecover() {
MC_color.setTransform(oldColor);
clearInterval(timer_color);
colorMC.inWhite = null;
}
function onUnload() {
colorRecover();
}
var k_int = 0;
var k_int2 = 0;
var draw_out = false;
var draw_in = false;
var color_hit1 = {ra:"100", rb:"100", ga:"100", gb:"50", ba:"100", bb:"-150", aa:"100", ab:"0"};
}
Symbol 1618 MovieClip [__Packages.Draw2] Frame 0
class Draw2 extends MovieClip
{
var line_dot_max, line_time, light_time, line_dot, hitTimes0, hitTimes, line_num, pos_array, draw_area, line_Timer, onEnterFrame, line_mc, createEmptyMovieClip, _parent, effect_mc, posStart_x, _xmouse, posStart_y, _ymouse, posPrev_x, posPrev_y, pos1_x, pos1_y, angle_line, posEnd_x, posEnd_y, hitTest_mc, sound_line, effect_mc2;
function Draw2 () {
super();
line_dot_max = 20;
line_time = 2000;
light_time = 40;
line_dot = 0;
hitTimes0 = 1;
hitTimes = hitTimes0;
line_num = 1;
setLevel(1);
pos_array = new Array();
draw_area = _root.role_mc.attachMovie("draw_area", "draw_area", 1221);
}
function setLevel(__level) {
if (__level == 2) {
line_dot_max = 10;
} else if (__level == 3) {
line_dot_max = 20;
} else {
line_dot_max = 6;
}
}
function onMouseDown() {
if (_root.inPause) {
return(undefined);
}
if (_root.role_mc.draw_area.hitTest(_root._xmouse, _root._ymouse, true)) {
draw_in = true;
} else {
draw_out = true;
}
if (_root.role.weapon2_lv == 3) {
line_dot_max = 20;
} else if (_root.role.weapon2_lv == 2) {
line_dot_max = 10;
} else {
line_dot_max = 6;
}
clearInterval(line_Timer);
delete onEnterFrame;
line_mc = createEmptyMovieClip("line_mc", _parent.getNextHighestDepth());
line_mc._visible = false;
effect_mc = createEmptyMovieClip("effect", _parent.getNextHighestDepth() + 1);
line_dot = 0;
posStart_x = _xmouse;
posStart_y = _ymouse;
posPrev_x = posStart_x;
posPrev_y = posStart_y;
pos1_x = _xmouse;
pos1_y = _ymouse;
}
function onMouseMove() {
if (line_dot >= line_dot_max) {
return(undefined);
}
if (draw_in) {
var _local11 = _xmouse;
var _local12 = _ymouse;
var _local13 = ExtMath.distance(posPrev_x, posPrev_y, _local11, _local12);
angle_line = ExtMath.angleOfLine(posPrev_x, posPrev_y, _local11, _local12);
var _local9 = 20;
var _local10 = int(_local13 / _local9);
if (_local10 == 0) {
return(undefined);
}
if (_local10 > 0) {
var _local8 = 0;
while (_local8 < _local10) {
if (_root.role_mc.draw_area.hitTest(_root._xmouse, _root._ymouse, true) != true) {
return(undefined);
}
if (_root.role.checkPower(_root.powerUse.deflector)) {
_root.role.setPower(_root.powerUse.deflector);
} else {
return(undefined);
}
var _local7 = effect_mc.getNextHighestDepth();
var _local3 = effect_mc.attachMovie("light2", "light" + _local7, _local7);
var _local6 = posPrev_x + (_local9 * ExtMath.cosD(angle_line));
var _local5 = posPrev_y + (_local9 * ExtMath.sinD(angle_line));
_local3._x = _local6;
_local3._y = _local5;
_local3._rotation = angle_line;
posPrev_x = _local6;
posPrev_y = _local5;
_local7 = line_mc.getNextHighestDepth();
var _local4 = line_mc.attachMovie("line", "line" + _local7, _local7);
_local4._x = posPrev_x;
_local4._y = posPrev_y;
_local4._rotation = angle_line;
line_dot++;
if (line_dot == line_dot_max) {
break;
}
_local8++;
}
}
_root.soundStart("electric1_snd");
}
updateAfterEvent();
}
function onMouseUp() {
draw_in = false;
draw_out = false;
posEnd_x = _xmouse;
posEnd_y = _ymouse;
angle_line = ExtMath.angleOfLine(posStart_x, posStart_y, posEnd_x, posEnd_y);
clearInterval(line_Timer);
line_Timer = setInterval(this, "disappear", line_time);
hitTest_mc._x = -100;
hitTest_mc._y = -100;
}
function disappear() {
if (_root.flag_pause) {
return(undefined);
}
sound_line.removeMovieClip();
clearInterval(line_Timer);
onEnterFrame = function () {
if (_root.flag_pause) {
return(undefined);
}
this.line_mc._alpha = this.line_mc._alpha - 4;
this.effect_mc._alpha = this.effect_mc._alpha - 4;
if (this.line_mc._alpha < 20) {
delete this.onEnterFrame;
this.clearLine();
}
};
}
function hit(angle, x, y) {
if ((_root.powerUP_type == "sandan") && (line_mc.hit == undefined)) {
line_mc.hit = 1;
var _local4 = _root.bullet_mc.getNextHighestDepth();
var _local3 = _root.bullet_mc.attachMovie("bullet", "bullet" + _local4, _local4);
_local3.init(angle - 10, x, y);
_local3.bouceBack = true;
_local3.obj_inHit = _root.draw_mc;
_local4 = _root.bullet_mc.getNextHighestDepth() + 1;
_local3 = _root.bullet_mc.attachMovie("bullet", "bullet" + _local4, _local4);
_local3.init(angle + 10, x, y);
_local3.bouceBack = true;
_local3.obj_inHit = _root.draw_mc;
} else if (_root.powerUP_type == "hitTimes") {
return(undefined);
}
hitTimes--;
if (hitTimes == 0) {
hitTimes = hitTimes0;
disappear();
}
}
function clearLine() {
delete onEnterFrame;
pos_array = [];
clearInterval(line_Timer);
line_mc.removeMovieClip();
delete effect_mc.onEnterFrame;
effect_mc.removeMovieClip();
}
function changeColor(obj, type) {
var _local2 = new Color(obj);
if (type == "sandan") {
_local2.setTransform(color_red);
} else if (type == "length") {
_local2.setTransform(color_yellow);
} else if (type == "hitTimes") {
_local2.setTransform(color_blue);
} else if (type == "") {
_local2.setTransform(color_normal);
}
}
function showHitTest() {
}
function hideHitTest() {
}
function makeLight(d, thick) {
effect_mc.lineStyle(thick, 16777215);
effect_mc.moveTo(pos_array[0][0], pos_array[0][1]);
var _local4 = pos_array.length - 1;
var _local2 = 1;
while (_local2 < _local4) {
effect_mc.lineTo(pos_array[_local2][0] + ((Math.random() - 0.5) * d), pos_array[_local2][1] + ((Math.random() - 0.5) * d));
_local2++;
}
effect_mc.lineTo(pos_array[_local4][0], pos_array[_local4][1]);
}
function makeLight2(mc, x1, y1, x2, y2, d, thick, __color) {
mc.lineStyle(thick, 16777215);
mc.moveTo(x1, y1);
var _local4 = x2 - x1;
var _local3 = y2 - y1;
var _local9 = Math.sqrt((_local4 * _local4) + (_local3 * _local3));
var _local5 = Math.round(_local9 / d);
_local4 = _local4 / _local5;
_local3 = _local3 / _local5;
var _local1 = 1;
while (_local1 < _local5) {
mc.lineTo((x1 + (_local4 * _local1)) + ((Math.random() - 0.5) * d), (y1 + (_local3 * _local1)) + ((Math.random() - 0.5) * d));
_local1++;
}
mc.lineTo(x2, y2);
}
function makeLight2_start(target_mc) {
if (effect_mc2.onEnterFrame != undefined) {
return(undefined);
}
if (_root.role.checkPower(_root.powerUse.lightning)) {
_root.role.setPower(_root.powerUse.lightning);
} else {
return(undefined);
}
var onwer = this;
var _local4 = _root._xmouse;
var _local3 = _root._ymouse;
var i = 0;
var j = 0;
effect_mc2.onEnterFrame = function () {
if ((target_mc instanceof MovieClip) != true) {
delete this.onEnterFrame;
this.clear();
return(undefined);
}
if (j == 2) {
j = 0;
return(undefined);
}
j++;
this.clear();
onwer.makeLight2(this, _root.role_mc._x, _root.role_mc._y, this._xmouse, this._ymouse, 15 + random(5), 1, 16777215);
onwer.makeLight2(this, _root.role_mc._x, _root.role_mc._y, this._xmouse, this._ymouse, 20 + random(5), 2, 6711039);
onwer.makeLight2(this, _root.role_mc._x, _root.role_mc._y, this._xmouse, this._ymouse, 25 + random(5), 1, 16777215);
target_mc.hit(20);
i++;
if (i > 3) {
delete this.onEnterFrame;
this.clear();
}
};
}
var k_int = 0;
var k_int2 = 0;
var draw_out = false;
var draw_in = false;
var color_normal = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
var color_red = {ra:100, rb:255, ga:100, gb:-150, ba:100, bb:-255, aa:100, ab:0};
var color_yellow = {ra:100, rb:30, ga:100, gb:0, ba:100, bb:-150, aa:100, ab:0};
var color_blue = {ra:100, rb:-150, ga:100, gb:-80, ba:100, bb:255, aa:100, ab:0};
}
Symbol 1619 MovieClip [__Packages.Bullet_laser] Frame 0
class Bullet_laser extends Bullet_role
{
var _x, _y, area, damage, colorMC, colorRecover, MC_color, oldColor, colorChange;
function Bullet_laser () {
super();
}
function init(posx, posy, rotation, vx, vy) {
_x = posx;
_y = posy;
}
function control() {
if (_root.inPause) {
return(undefined);
}
checkHit();
}
function hit() {
}
function checkHit() {
trace("checkHit laser this: " + this);
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if (_local3.hitTest(area)) {
trace("checkHit laser damage: " + _local3);
_local3.hit(damage);
hit();
colorEffect(_local3);
}
}
}
function colorEffect(_mc) {
if (colorMC.inWhite) {
colorRecover();
}
colorMC = _mc.body;
colorMC.inWhite = true;
MC_color = new Color(colorMC);
oldColor = MC_color.getTransform();
colorChange("color_hit1");
}
}
Symbol 1620 MovieClip [__Packages.Bullet_enemy_chase] Frame 0
class Bullet_enemy_chase extends Bullet_enemy
{
var V, _x, _y, _rotation, Vx, Vy, angle_old, angle_chase, onEnterFrame, hit;
function Bullet_enemy_chase () {
super();
V = 8;
}
function init(posx, posy, rotation, vx, vy, _V) {
_x = posx;
_y = posy;
_rotation = rotation;
Vx = vx;
Vy = vy;
V = _V;
if (V == undefined) {
V = 8;
}
angle_old = rotation;
angle_chase = rotation;
control();
}
function control() {
var _local5 = 0;
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
var _local3 = ExtMath.toGlobal(this, this._parent);
var _local4 = ExtMath.distance2(_local3.x, _local3.y, _root.role_mc._x, _root.role_mc._y);
if (_local4 < 2500) {
this.chase = null;
}
this.chase(_local3);
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
this.checkHit();
if ((this._x > (_root.stage_w + 50)) || (this._x < -50)) {
_root.smokeEffect_end(this);
this.removeMovieClip();
} else if ((this._y > (_root.stage_h + 50)) || (this._y < -50)) {
_root.smokeEffect_end(this);
this.removeMovieClip();
}
};
}
function chase(pos) {
if ((_root.role_mc instanceof MovieClip) != true) {
return(undefined);
}
var _local4 = ExtMath.angleOfLine(_x, _y, _root.role_mc._x, _root.role_mc._y);
var _local3 = _local4 - angle_old;
if (Math.abs(_local3) < 10) {
} else if (_local3 > 40) {
angle_chase = angle_chase + 5;
} else if (_local3 < -40) {
angle_chase = angle_chase - 5;
} else {
angle_chase = angle_chase + (_local3 / 5);
}
angle_old = angle_chase;
Vx = V * ExtMath.cosD(angle_chase);
Vy = V * ExtMath.sinD(angle_chase);
if (isNaN(Vy)) {
Vx = 0;
Vy = 20;
}
_rotation = angle_chase;
}
function checkBounce(angle_line) {
hit();
delete onEnterFrame;
_root.smokeEffect_end(this);
}
function checkBounce_back() {
hit();
delete onEnterFrame;
_root.smokeEffect_end(this);
}
}
Symbol 1621 MovieClip [__Packages.Enemy_movoTo] Frame 0
class Enemy_movoTo extends Enemy
{
var _parent, swapDepths, V, dir_angle, time_shoot, life, _life, type_shoot, type_bullet, V_bullet, toPosX, toPosY, endPosX, endPosY, setAngle, shoot_mc, attachMovie, getNextHighestDepth, timer_start, timer_continue, addShadow, type, moveFunc_aim, moveFunc_chase, moveFunc_path, shoot_control, inActive, _x, _y, Vx, Vy, onEnterFrame, removeMovieClip;
function Enemy_movoTo () {
super();
var _local3 = _parent.getNextHighestDepth() + 1;
swapDepths(_local3);
}
function init(initObj) {
V = initObj.V;
dir_angle = initObj.dir_angle * _root.dirY;
time_shoot = initObj.time_shoot * _root.time_shoot_rate;
life = (_life = initObj.life);
type_shoot = initObj.type_shoot;
type_bullet = initObj.type_bullet;
V_bullet = initObj.V_bullet * _root.V_bullet_rate;
toPosX = initObj.toPosX + (int((Math.random() * 10) - 5) * 10);
toPosY = initObj.toPosY + (int((Math.random() * 10) - 5) * 10);
if (_root.dirY == -1) {
toPosY = _root.stage_h - (initObj.toPosY + (int((Math.random() * 10) - 5) * 10));
}
endPosX = initObj.endPosX;
endPosY = initObj.endPosY;
if ((life == undefined) || (life == 0)) {
life = (_life = 100);
}
if ((time_shoot == undefined) || (time_shoot == 0)) {
time_shoot = 2000;
}
setAngle(dir_angle);
if ((shoot_mc instanceof MovieClip) != true) {
shoot_mc = attachMovie(type_shoot, "shoot_mc", getNextHighestDepth());
shoot_mc.init(type_bullet, V_bullet);
}
timer_start = setInterval(this, "control_start", initObj.delayTime);
timer_continue = setInterval(this, "continueMove", initObj.continueTime);
addShadow();
}
function control_start() {
clearInterval(timer_start);
if (type == "aim") {
moveFunc_aim();
} else if (type == "left_right") {
moveFunc_chase();
} else if (type == "circle") {
moveFunc_path();
} else {
moveFunc();
}
shoot_control();
inActive = true;
}
function moveFunc() {
var _local3 = ExtMath.angleOfLine(_x, _y, toPosX, toPosY);
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
var _local3 = ExtMath.distance(this._x, this._y, this.toPosX, this.toPosY);
if (_local3 < 10) {
delete this.onEnterFrame;
new STween(this, this.toPosX, this.toPosY);
}
this.checkOut();
this.checkCrash();
};
}
function continueMove() {
clearInterval(timer_continue);
var _local3 = ExtMath.angleOfLine(_x, _y, endPosX, endPosY);
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
this.checkOut();
this.checkCrash();
};
}
function checkOut() {
if (_y < -500) {
removeMovieClip();
} else if (_y > (_root.stage_h + 500)) {
removeMovieClip();
}
if (_x < -200) {
removeMovieClip();
} else if (_x > (_root.stage_w + 200)) {
removeMovieClip();
}
}
}
Symbol 1622 MovieClip [__Packages.STween] Frame 0
class STween extends MovieClip
{
var mc, xt, yt, intervalId, dx, dy;
function STween (_mc, _xt, _yt) {
super();
mc = _mc;
if (mc.stween != undefined) {
mc.stween.stopMov();
}
mc.stween = this;
xt = _xt;
yt = _yt;
intervalId = setInterval(this, "mov", 30);
}
function mov(Void) {
if (mc._x == undefined) {
clearInterval(intervalId);
} else {
dx = xt - mc._x;
dy = yt - mc._y;
mc._x = mc._x + (dx * 0.1);
mc._y = mc._y + (dy * 0.1);
if (((dx * dx) + (dy * dy)) < 1) {
clearInterval(intervalId);
mc._x = xt;
mc._y = yt;
}
updateAfterEvent();
}
}
function stopMov(Void) {
clearInterval(intervalId);
mc.stween = undefined;
}
}
Symbol 1623 MovieClip [__Packages.Enemy_movoTo_back] Frame 0
class Enemy_movoTo_back extends Enemy_movoTo
{
var shoot_mc, time_shoot, timer_start, timer_back, addShadow, onEnterFrame, shoot_control, inActive, _x, _y, _rotation, timer_shoot, Vx, Vy;
function Enemy_movoTo_back () {
super();
}
function init(delayTime, backTime, _posX, _posY, V, aim) {
shoot_mc.init("1", 10);
time_shoot = 2000;
timer_start = setInterval(this, "control_start", delayTime);
if (aim) {
timer_back = setInterval(this, "continueMove_aim", backTime);
} else {
timer_back = setInterval(this, "continueMove", backTime);
}
var _local4 = 200 + (int((Math.random() * 10) - 5) * 30);
var _local3 = 200 + (int((Math.random() * 10) - 5) * 20);
if (_root.dirY == -1) {
_local3 = _root.stage_h - (200 + (int((Math.random() * 10) - 5) * 20));
}
new STween(this, _local4, _local3);
addShadow();
}
function control_start() {
clearInterval(timer_start);
onEnterFrame = moveFunc;
shoot_control();
inActive = true;
}
function moveFunc() {
var _local3 = ExtMath.angleOfLine(_x, _y, _root.role_mc._x, _root.role_mc._y);
_rotation = _local3 - 90;
}
function moveFunc_aim() {
var angle = ExtMath.angleOfLine(_x, _y, _root.role_mc._x, _root.role_mc._y);
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this.setAngle(angle);
this.checkOut();
this.checkCrash();
};
}
function continueMove() {
clearInterval(timer_back);
clearInterval(timer_shoot);
_rotation = -180;
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this._y = this._y - 10;
if (this._y < -50) {
this.removeMovieClip();
}
};
}
function continueMove_aim() {
clearInterval(timer_back);
clearInterval(timer_shoot);
var _local3 = ExtMath.angleOfLine(_x, _y, _root.role_mc._x, _root.role_mc._y);
Vx = 18 * ExtMath.cosD(_local3);
Vy = 18 * ExtMath.sinD(_local3);
_rotation = _local3 - 90;
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
this.checkOut();
this.checkCrash();
};
}
}
Symbol 1624 MovieClip [__Packages.Enemy_boss] Frame 0
class Enemy_boss extends Enemy
{
var V, _parent, swapDepths, toPosX, toPosY, _yscale, _life, life, time_shoot, time_shootFirstTime, addShadow, timer_start, timer_shoot, _x, _y, Vx, Vy, onEnterFrame, shoot_control_mc, inDie, hitArea_array, gotoAndPlay, scorePoint, unlock;
function Enemy_boss () {
super();
V = 6;
var _local3 = _parent.getNextHighestDepth() + 1;
swapDepths(_local3);
}
function init(initObj) {
toPosX = initObj.toPosX;
toPosY = initObj.toPosY;
if (_root.dirY == -1) {
toPosY = _root.stage_h - initObj.toPosY;
_yscale = -100;
}
_life = 1000;
life = _life;
time_shoot = 1000;
time_shootFirstTime = 3000;
control_start();
addShadow();
}
function control_start() {
clearInterval(timer_start);
moveFunc_start(toPosX, toPosY);
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shootFirstTime);
life = _life * _root.life_rate;
}
function moveFunc_start(toPosX, toPosY) {
var _local3 = ExtMath.angleOfLine(_x, _y, toPosX, toPosY);
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
var _local3 = ExtMath.distance(this._x, this._y, toPosX, toPosY);
if (_local3 < 10) {
delete this.onEnterFrame;
this.moveFunc();
}
};
}
function moveFunc() {
var ang = 0;
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
var _local4 = Math.cos(ang) * 1.5;
var _local3 = Math.sin(ang) * 0.5;
this._x = this._x + _local4;
this._y = this._y + _local3;
ang = ang + 0.03;
this.checkCrash();
};
}
function shoot_control() {
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
function shoot() {
if (_root.inPause) {
return(undefined);
}
if (_root.role.inDie) {
return(undefined);
}
shoot_control_mc.gotoAndPlay("start");
clearInterval(timer_shoot);
}
function hit(damage, id) {
if (inDie) {
return(undefined);
}
if (_y < 0) {
return(undefined);
}
if (id != undefined) {
var _local2 = hitArea_array[id][1];
if (_local2.life > 0) {
_local2.life = _local2.life - damage;
if (_local2.hit != undefined) {
_local2.hit(damage);
}
if (_local2.life <= 0) {
_local2.gotoAndPlay("die");
if (_local2.die != undefined) {
_local2.die();
}
hitArea_array.splice(id, 1);
if (hitArea_array.length == 0) {
die();
}
}
}
} else {
life = life - damage;
if (life <= 0) {
die();
}
}
}
function die() {
if (inDie) {
return(undefined);
}
inDie = true;
clearInterval(timer_shoot);
delete onEnterFrame;
gotoAndPlay("die");
if (scorePoint == undefined) {
scorePoint = _life;
}
_root.addScore(scorePoint);
unlock();
_root.enemy_loader.clearTimerAttack();
for (var _local3 in _root.enemy_loader) {
_root.enemy_loader[_local3].die();
}
}
}
Symbol 1625 MovieClip [__Packages.Enemy_loader] Frame 0
class Enemy_loader extends MovieClip
{
var time_attack, time_attack2, getNextHighestDepth, attachMovie, timer_attack, attackArray, frameArray, gotoAndStop, attackArray2;
function Enemy_loader () {
super();
maxNum = _root.stageArray[_root.stageID][4] + _root.maxNum_Plus;
time_attack = _root.stageArray[_root.stageID][5];
time_attack2 = 8000;
if (maxNum == undefined) {
maxNum = 3;
}
if (time_attack == undefined) {
time_attack = 3000;
}
firstAttack();
}
function onUnload() {
clearTimerAttack();
}
function addEnemy(_enemy, x, y) {
var _local3 = getNextHighestDepth();
var _local2 = attachMovie(_enemy, "enemy_" + _local3, _local3);
_local2._x = x;
_local2._y = y;
}
function checkEmpty() {
var _local2 = 0;
for (var _local3 in this) {
if (this[_local3] instanceof Enemy) {
_local2++;
}
}
if (_local2 == 1) {
nextAttack_2();
return(true);
}
}
function getEnemyNum() {
var _local2 = 0;
for (var _local3 in this) {
if ((this[_local3] instanceof Enemy) && (this[_local3].life > 0)) {
_local2++;
}
}
return(_local2);
}
function firstAttack(_time) {
clearInterval(timer_attack);
timer_attack = setInterval(this, "nextAttack", 1000);
}
function nextAttack(_time) {
if (_root.inPause) {
clearInterval(timer_attack);
timer_attack = setInterval(this, "nextAttack", 1000);
return(undefined);
}
clearInterval(timer_attack);
timer_attack = setInterval(this, "nextAttack_2", time_attack + int(Math.random() * 100));
}
function nextAttack_2() {
if (getEnemyNum() > maxNum) {
return(undefined);
}
clearInterval(timer_attack);
var _local3;
if (attackNum == attackArray.length) {
attackNum = 0;
}
_local3 = attackArray[attackNum];
if (_local3 == "item1") {
if (_root.role.weapon1_lv < 2) {
} else {
var _local8 = Math.random();
if (_local8 < _root.item1_rate) {
} else {
_local3 = "normal";
}
}
} else if (_local3 == "item2") {
if (_root.role.weapon2_lv < 2) {
} else {
var _local8 = Math.random();
if (_local8 < _root.item2_rate) {
} else {
_local3 = "normal";
}
}
} else if (_local3 == "item3") {
_local3 = "normal";
}
if (((attackNum % 5) == 0) && (_root.role.weapon1_lv < 2)) {
_local3 = "item1";
} else if (((attackNum % 7) == 0) && (_root.role.weapon2 == "")) {
_local3 = "item2";
}
var _local4 = frameArray[_local3][0];
var _local7 = frameArray[_local3][1];
var _local5 = _local7 - _local4;
var _local6 = int(Math.random() * _local5) + _local4;
gotoAndStop(2);
gotoAndStop(_local6);
nextAttack(time_attack);
attackNum++;
}
function checkEnd() {
if (getEnemyNum() < 1) {
return(true);
}
}
function getEnd() {
gotoAndStop("end");
attackNum = 0;
attackArray = attackArray2;
time_attack = time_attack2;
nextAttack(time_attack);
}
function clearTimerAttack() {
clearInterval(timer_attack);
}
var maxNum = 3;
var attackNum = 0;
}
Symbol 1626 MovieClip [__Packages.Enemy_boss_tank] Frame 0
class Enemy_boss_tank extends Enemy_boss
{
var timer_shoot, time_shoot, shoot_control_mc, inDie, _y, life, die, _life, gotoAndPlay;
function Enemy_boss_tank () {
super();
}
function moveFunc() {
}
function shoot_control() {
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
function shoot() {
if (_root.inPause) {
return(undefined);
}
if (_root.role.inDie) {
return(undefined);
}
clearInterval(timer_shoot);
shoot_control_mc.gotoAndPlay("start");
}
function hit(damage, id) {
if (inDie) {
return(undefined);
}
if (_y < 0) {
return(undefined);
}
life = life - damage;
if (life <= 0) {
die();
} else if ((life / _life) < 0.35) {
goS3();
goS3 = null;
} else if ((life / _life) < 0.7) {
goS2();
goS2 = null;
}
}
function goS2() {
gotoAndPlay("s2");
}
function goS3() {
gotoAndPlay("s3");
}
function addShadow() {
}
}
Symbol 1627 MovieClip [__Packages.AreaShoot] Frame 0
class AreaShoot extends Enemy_ground
{
var _life, life, V, delayTime, _visible, gotoAndStop, _totalframes, shape, timer_check, shape_mc, timer_start, onEnterFrame, inDie, pt, timer_shoot, ckeck_appear, gotoAndPlay, unlock, dropItem, scorePoint;
function AreaShoot () {
super();
_life = 150;
life = _life;
V = 0;
delayTime = 0;
_visible = false;
if (_root.checkBack(_root.stageID - 1)) {
_visible = true;
gotoAndStop(_totalframes);
init = null;
die = null;
return;
}
shape = "shape_comman";
}
function init() {
timer_check = setInterval(this, "ckeck_appear", 1000);
init = null;
}
function onUnload() {
shape_mc.removeMovieClip();
}
function control_start() {
clearInterval(timer_start);
moveFunc();
}
function shoot() {
}
function moveFunc() {
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this.pt = ExtMath.toGlobal(this, this._parent);
this.shape_mc._x = this.pt.x;
this.shape_mc._y = this.pt.y;
if (this.pt.y < -50) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
} else if (this.pt.y > (_root.stage_h + 50)) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
}
if (this.pt.x < -50) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
} else if (this.pt.x > (_root.stage_w + 50)) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
}
};
}
function hit(damage) {
if (inDie) {
return(undefined);
}
if (pt.y < 0) {
return(undefined);
}
life = life - damage;
if (life <= 0) {
die();
}
}
function die() {
if (inDie) {
return(undefined);
}
inDie = true;
clearInterval(timer_shoot);
clearInterval(timer_check);
ckeck_appear = null;
gotoAndPlay("die");
unlock();
shape_mc.swapDepths(_root.enemy_loader.getNextHighestDepth());
shape_mc.removeMovieClip();
dropItem();
if (scorePoint == undefined) {
scorePoint = _life;
}
_root.addScore(scorePoint);
}
}
Symbol 1628 MovieClip [__Packages.Enemy_tank] Frame 0
class Enemy_tank extends Enemy_ground
{
var appearPosY, pt, _parent, timer_check, shape_mc, shape, _x, control_start, dir_angle, Vx, V, Vy, onEnterFrame, _y, mc_up, timer_shoot, time_shoot;
function Enemy_tank () {
super();
appearPosY = -50;
}
function ckeck_appear() {
pt = ExtMath.toGlobal(this, _parent);
if (((pt.y > (_root.stage_h - appearPosY)) && (_root.dirY == 1)) || ((pt.y < appearPosY) && (_root.dirY == -1))) {
clearInterval(timer_check);
} else if (((pt.y > appearPosY) && (_root.dirY == 1)) || ((pt.y < (_root.stage_h - appearPosY)) && (_root.dirY == -1))) {
clearInterval(timer_check);
var _local3 = _root.enemy_loader.getNextHighestDepth();
shape_mc = _root.enemy_loader.attachMovie(shape, (("shape_" + _local3) + "_") + int(_x), _local3);
shape_mc.body = this;
shape_mc._x = pt.x;
shape_mc._y = pt.y;
control_start();
}
}
function moveFunc() {
var _local3 = dir_angle;
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
if (this.V != 0) {
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
}
this.pt = ExtMath.toGlobal(this, this._parent);
this.shape_mc._x = this.pt.x;
this.shape_mc._y = this.pt.y;
var _local3 = ExtMath.angleOfLine(this.pt.x, this.pt.y, _root.role_mc._x, _root.role_mc._y);
this.mc_up._rotation = _local3 - this.dir_angle;
if (this.pt.y < -50) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
} else if (this.pt.y > (_root.stage_h + 50)) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
}
if (this.pt.x < -50) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
} else if (this.pt.x > (_root.stage_w + 50)) {
this.shape_mc.removeMovieClip();
this.swapDepths(this._parent.getNextHighestDepth());
this.removeMovieClip();
}
};
}
function shoot() {
if (_root.inPause) {
return(undefined);
}
if (_root.role.inDie) {
return(undefined);
}
if ((_y > (_root.stage_h - 50)) && (Vy > 0)) {
return(undefined);
}
if ((_y < 50) && (Vy < 0)) {
return(undefined);
}
mc_up.shoot_mc.shoot();
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
}
Symbol 1629 MovieClip [__Packages.Enemy_train] Frame 0
class Enemy_train extends Enemy_tank
{
var appearPosY, V, time_shoot, life, _life, dir_angle, timer_check, pt, _parent, gotoAndStop, timer_start, delayTime, shape_mc, shape, _x, Vx, onEnterFrame, inDie, timer_shoot, gotoAndPlay, scorePoint, shoot_mc, unlock;
function Enemy_train () {
super();
appearPosY = -20;
}
function init(initObj) {
V = initObj.V;
time_shoot = initObj.time_shoot * _root.time_shoot_rate;
life = (_life = initObj.life);
dir_angle = initObj.dir_angle;
if ((life == undefined) || (life == 0)) {
life = (_life = 100);
}
if ((time_shoot == undefined) || (time_shoot == 0)) {
time_shoot = 2000;
}
timer_check = setInterval(this, "ckeck_appear", 1000);
}
function ckeck_appear() {
pt = ExtMath.toGlobal(this, _parent);
if (((pt.y > (_root.stage_h - appearPosY)) && (_root.dirY == 1)) || ((pt.y < appearPosY) && (_root.dirY == -1))) {
clearInterval(timer_check);
} else if (((pt.y > appearPosY) && (_root.dirY == 1)) || ((pt.y < (_root.stage_h - appearPosY)) && (_root.dirY == -1))) {
gotoAndStop(2);
clearInterval(timer_check);
timer_start = setInterval(this, "control_start", delayTime);
var _local3 = _root.enemy_loader.getNextHighestDepth();
shape_mc = _root.enemy_loader.attachMovie(shape, (("shape_" + _local3) + "_") + int(_x), _local3);
shape_mc.body = this;
shape_mc._x = pt.x;
shape_mc._y = pt.y;
}
}
function moveFunc() {
var _local4 = dir_angle;
Vx = V;
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
if (this.V != 0) {
this._x = this._x + this.Vx;
}
this.pt = ExtMath.toGlobal(this, this._parent);
this.shape_mc._x = this.pt.x;
this.shape_mc._y = this.pt.y;
var _local3 = ExtMath.angleOfLine(this.pt.x, this.pt.y, _root.role_mc._x, _root.role_mc._y);
this.mc_up._rotation = _local3 - this.dir_angle;
if (this.pt.y < -50) {
this.shape_mc.removeMovieClip();
this.removeMovieClip();
} else if (this.pt.y > (_root.stage_h + 50)) {
this.shape_mc.removeMovieClip();
this.removeMovieClip();
}
if (this.pt.x < -500) {
this.shape_mc.removeMovieClip();
this.removeMovieClip();
} else if (this.pt.x > (_root.stage_w + 500)) {
this.shape_mc.removeMovieClip();
this.removeMovieClip();
}
};
}
function hit(damage) {
if (inDie) {
return(undefined);
}
if (pt.y < 0) {
return(undefined);
}
life = life - damage;
if (life <= 0) {
die();
}
}
function die() {
if (inDie) {
return(undefined);
}
inDie = true;
clearInterval(timer_shoot);
gotoAndPlay("die");
if (scorePoint == undefined) {
scorePoint = _life;
}
_root.addScore(scorePoint);
shoot_mc.removeMovieClip();
shape_mc.removeMovieClip();
unlock();
}
}
Symbol 1630 MovieClip [__Packages.Item] Frame 0
class Item extends MovieClip
{
var weapon_type, weapon_name, V, Vx, Vy, onEnterFrame, swapDepths, _parent, removeMovieClip;
function Item () {
super();
weapon_type = "weapon1";
weapon_name = "bullet";
V = 2 + int(Math.random() * 2);
getDir();
move_start();
}
function getDir() {
var _local2 = int(Math.random() * 360);
Vx = V * ExtMath.cosD(_local2);
Vy = V * ExtMath.sinD(_local2);
}
function move_start() {
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
if (((this._x + this.Vx) > _root.stage_w) || ((this._x + this.Vx) < 0)) {
this.getDir();
return(undefined);
}
if (((this._y + this.Vy) > _root.stage_h) || ((this._y + this.Vy) < 0)) {
this.getDir();
return(undefined);
}
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
this.checkReceive();
};
}
function checkReceive() {
if (_root.role_mc.area.hitTest(this)) {
receive();
}
}
function receive() {
if (weapon_type == "weapon1") {
_root.role.setWeapon(weapon_name);
} else if (weapon_type == "weapon2") {
_root.role.setWeapon2(weapon_name);
}
checkReceive = null;
delete onEnterFrame;
_root.soundStart("powerUP_snd");
swapDepths(_parent.getNextHighestDepth());
removeMovieClip();
}
}
Symbol 1631 MovieClip [__Packages.Item_bomb] Frame 0
class Item_bomb extends Item
{
var swapDepths, _parent, removeMovieClip, onEnterFrame;
function Item_bomb () {
super();
}
function receive() {
_root.role.setBomb(1);
_root.soundStart("powerUP_snd");
swapDepths(_parent.getNextHighestDepth());
removeMovieClip();
}
function move_start() {
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this.checkReceive();
};
}
}
Symbol 1632 MovieClip [__Packages.Item_life_ground] Frame 0
class Item_life_ground extends Item
{
var life_rate, swapDepths, _parent, removeMovieClip, onEnterFrame;
function Item_life_ground () {
super();
life_rate = 0.3;
}
function receive() {
_root.role.setLife(life_rate);
_root.soundStart("powerUP_snd");
swapDepths(_parent.getNextHighestDepth());
removeMovieClip();
}
function move_start() {
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this.checkReceive();
};
}
}
Symbol 1633 MovieClip [__Packages.Item_life] Frame 0
class Item_life extends Item
{
var life_rate, swapDepths, _parent, removeMovieClip;
function Item_life () {
super();
}
function receive() {
_root.role.setLife(life_rate);
_root.soundStart("powerUP_snd");
swapDepths(_parent.getNextHighestDepth());
removeMovieClip();
}
}
Symbol 1634 MovieClip [__Packages.Item_power] Frame 0
class Item_power extends Item
{
var power_inc, swapDepths, _parent, removeMovieClip;
function Item_power () {
super();
power_inc = 150;
}
function receive() {
_root.role.setPower(-power_inc);
swapDepths(_parent.getNextHighestDepth());
removeMovieClip();
}
}
Symbol 1635 MovieClip [__Packages.Item_power_ground] Frame 0
class Item_power_ground extends Item
{
var power_inc, swapDepths, _parent, removeMovieClip, onEnterFrame;
function Item_power_ground () {
super();
power_inc = 150;
}
function receive() {
_root.role.setPower(-power_inc);
_root.soundStart("powerUP_snd");
swapDepths(_parent.getNextHighestDepth());
removeMovieClip();
}
function move_start() {
onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this.checkReceive();
};
}
}
Symbol 1636 MovieClip [__Packages.Shoot_s1] Frame 0
class Shoot_s1 extends EnemyShoot
{
var bullet_type, r, time_shoot, angle_start, angle_total, d_angle, V, bullet_num, bullet_rotation, bullet_shooted, timer_shoot, _parent, Vx, Vy;
function Shoot_s1 () {
super();
}
function init(initData) {
bullet_type = initData.bullet_type;
r = initData.r;
time_shoot = initData.time_shoot;
angle_start = initData.angle_start;
angle_total = initData.angle_total;
if (_root.dirY == -1) {
d_angle = initData.d_angle;
} else {
d_angle = initData.d_angle;
}
V = initData.V;
bullet_num = int(angle_total / Math.abs(d_angle)) + 1;
bullet_rotation = angle_start;
bullet_shooted = 0;
}
function shoot() {
do_shoot(bullet_rotation, r);
bullet_rotation = bullet_rotation + d_angle;
bullet_shooted++;
if (bullet_shooted == bullet_num) {
clearInterval(timer_shoot);
bullet_rotation = angle_start;
bullet_shooted = 0;
return(undefined);
}
if (time_shoot == 0) {
shoot();
} else {
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
updateAfterEvent();
}
function do_shoot(angle, r) {
var _local7 = _root.bullet_mc;
var _local5 = _local7.getNextHighestDepth();
var _local10 = _local7.attachMovie(bullet_type, "bullet" + _local5, _local5);
var _local6 = ExtMath.toGlobal(this, _parent);
var _local9 = r * ExtMath.cosD(angle);
var _local8 = r * ExtMath.sinD(angle);
var _local3 = new Object();
_local3.x = _local6.x + _local9;
_local3.y = _local6.y + _local8;
Vx = V * ExtMath.cosD(angle);
Vy = V * ExtMath.sinD(angle);
_local10.init(_local3.x, _local3.y, angle, Vx, Vy, V);
}
}
Symbol 1637 MovieClip [__Packages.Role] Frame 0
class Role
{
var mc, V, V2, V_bullet1, _life, life, _power, power, bombNum, weapon1, weapon1_lv, weapon2, weapon2_lv, keyCode, control_key_mc, gun1_anlge;
function Role (_mc, _keyCode) {
mc = _mc;
mc.class_code = this;
var _local4 = 10;
V = _local4;
V2 = (_local4 * Math.SQRT2) / 2;
V_bullet1 = 25;
_life = 700;
life = _life;
_power = 500;
power = _power;
bombNum = _root.bombNumStart;
_root.UI_mc.lifeBar_mc.increase(1);
_root.UI_mc.powerBar_mc.increase(1);
_root.UI_mc.lifeNum_mc.showNum(_root.roleLife);
_root.UI_mc.bombNum_mc.reSet();
weapon1 = "";
weapon1_lv = 1;
setWeapon("bullet");
weapon2 = "";
weapon2_lv = 1;
setDir();
keyCode = _keyCode;
control_key_mc = mc.createEmptyMovieClip("control_key_mc", mc.getNextHighestDepth());
var owner = this;
control_key_mc.onEnterFrame = function () {
owner.listen_key();
};
mc.onMouseDown = function () {
if (_root.inPause) {
return(undefined);
}
if (owner.inControl == false) {
return(undefined);
}
this.mouseDown = true;
owner.getGun1Angle();
owner.mc.shoot_mc.shoot();
owner.mc.shoot2_mc.shoot();
};
mc.onMouseUp = function () {
this.mouseDown = false;
};
mc.onMouseMove = function () {
owner.getGun1Angle();
};
if (_root.shadowOn) {
var _local5 = new flash.filters.DropShadowFilter(20, 45, 0, 0.5, 5, 5, 1, 1, false, false, false);
var _local3 = new Array();
_local3.push(_local5);
mc.filters = _local3;
}
}
function startControl() {
inControl = true;
}
function setDir() {
if (_root.dirY == 1) {
mc._rotation = 0;
} else if (_root.dirY == -1) {
mc._rotation = 180;
}
}
function getGun1Angle() {
var _local2 = mc.body.body.gun1_mc;
gun1_anlge = ExtMath.angleOfLine(0, 0, mc._xmouse, mc._ymouse);
_local2._rotation = gun1_anlge;
}
function setLife(rate) {
life = life + (_life * rate);
if (life > _life) {
life = _life;
} else if (life < 0) {
life = 0;
}
var _local3 = life / _life;
_root.UI_mc.lifeBar_mc.increase(_local3);
}
function setPower(p) {
power = power - p;
if (power > _power) {
power = _power;
} else if (power < 0) {
power = 0;
}
var _local3 = power / _power;
_root.UI_mc.powerBar_mc.increase(_local3);
}
function checkPower(p) {
if ((power - p) <= 0) {
return(false);
}
return(true);
}
function setBomb(num) {
bombNum = bombNum + num;
if (bombNum < 0) {
bombNum = 0;
return(undefined);
}
if (bombNum > 5) {
bombNum = 5;
return(undefined);
}
_root.UI_mc.bombNum_mc.showNum();
}
function setWeapon(weapon) {
if (weapon1 == weapon) {
if (weapon1_lv == 10) {
return(undefined);
}
weapon1_lv++;
} else {
weapon1 = weapon;
}
var _local4 = (weapon1 + "_lv") + weapon1_lv;
_root.UI_mc.weapon1_mc.showLv(weapon1_lv, weapon1);
mc.shoot_mc.removeMovieClip();
var _local3 = 1231;
mc.attachMovie("shoot_" + _local4, "shoot_mc", _local3);
}
function setWeapon2(weapon) {
setPower(-_power);
if (weapon2 == weapon) {
if (weapon2_lv == 3) {
return(undefined);
}
weapon2_lv++;
} else {
weapon2 = weapon;
}
var _local5 = (weapon2 + "_lv") + weapon2_lv;
_root.addWeaponControl(weapon);
_root.UI_mc.weapon2_mc.showLv(weapon2_lv, weapon2);
mc.shoot2_mc.removeMovieClip();
var _local4 = mc.getNextHighestDepth();
mc.attachMovie("shoot2_" + _local5, "shoot2_mc", _local4);
}
function setWeapon_test(weapon) {
var _local2 = weapon.split("_lv");
weapon1 = _local2[0];
weapon1_lv = _local2[1];
var _local4 = (weapon1 + "_lv") + weapon1_lv;
mc.shoot_mc.removeMovieClip();
var _local3 = mc.getNextHighestDepth();
mc.shoot_mc = mc.attachMovie("shoot_" + _local4, "shoot_mc", _local3);
}
function setWeapon2_test(weapon) {
var _local3 = weapon.split("_lv");
weapon2 = _local3[0];
weapon2_lv = _local3[1];
_root.addWeaponControl(weapon2, weapon2_lv);
mc.shoot2_mc.removeMovieClip();
var _local4 = mc.getNextHighestDepth();
mc.shoot2_mc = mc.attachMovie("shoot2_" + weapon, "shoot2_mc", _local4);
}
function continueShoot() {
if ((mc.mouseDown && (_root.inPause != true)) && (inControl)) {
return(true);
}
}
function superStart() {
if (_root.inPause) {
return(undefined);
}
if (inSuper) {
return(undefined);
}
if (bombNum == 0) {
return(undefined);
}
setBomb(-1);
var _local5 = _root.bullet_mc;
var _local4 = _local5.getNextHighestDepth();
var _local3 = _local5.attachMovie("super_mc", "super_mc" + _local4, _local4);
_local3._x = mc._x;
_local3._y = mc._y;
if (_root.dirY == -1) {
_local3._rotation = _local3._rotation + 180;
}
var _local6 = mc.getNextHighestDepth();
mc.attachMovie("super_mc_self", "super_mc", _local6);
inSuper = true;
}
function superEnd() {
inSuper = false;
}
function hit(damage) {
if (inControl != true) {
return(undefined);
}
if (inSuper) {
return(undefined);
}
lifeControl(damage);
if (life <= 0) {
die();
}
}
function lifeControl(damage) {
life = life - damage;
if (life < 0) {
life = 0;
}
var _local3 = life / _life;
_root.UI_mc.lifeBar_mc.reduce(_local3);
}
function die() {
inDie = true;
mc.gotoAndPlay("die");
mc.gotoAndPlay = null;
control_key_mc.onEnterFrame = null;
mc.onMouseDown = null;
hit = null;
_root.weaponControl_mc.removeMovieClip();
mc.shoot_mc.removeMovieClip();
mc.draw_area.removeMovieClip();
var _local3 = Math.random();
_root.dorpItem(_root.itemObj.powerUP1, mc);
_root.dorpItem(_root.itemObj.powerUP2, mc);
if (_local3 > 0.5) {
_root.dorpItem(_root.itemObj.powerUP1, mc);
}
if (_local3 > 0.7) {
_root.dorpItem(_root.itemObj.powerUP2, mc);
}
}
function listen_key() {
if (_root.inPause) {
return(undefined);
}
if (inControl == false) {
return(undefined);
}
if (Key.isDown(keyCode.up) && (Key.isDown(keyCode.down))) {
} else if (Key.isDown(keyCode.left) && (Key.isDown(keyCode.right))) {
} else if (Key.isDown(keyCode.up) && (Key.isDown(keyCode.left))) {
moveUL();
} else if (Key.isDown(keyCode.up) && (Key.isDown(keyCode.right))) {
moveUR();
} else if (Key.isDown(keyCode.down) && (Key.isDown(keyCode.left))) {
moveDL();
} else if (Key.isDown(keyCode.down) && (Key.isDown(keyCode.right))) {
moveDR();
} else if (Key.isDown(keyCode.up)) {
moveUp();
} else if (Key.isDown(keyCode.down)) {
moveDown();
} else if (Key.isDown(keyCode.left)) {
moveLeft();
} else if (Key.isDown(keyCode.right)) {
moveRight();
}
if (Key.isDown(keyCode.bomb)) {
superStart();
}
}
function moveUp() {
if (mc._y < 20) {
return(undefined);
}
mc._y = mc._y - V;
}
function moveDown() {
if (mc._y > (_root.stage_h - 20)) {
return(undefined);
}
mc._y = mc._y + V;
}
function moveRight() {
mc.body.gotoAndPlay("right");
if (mc._x > (_root.stage_w - 20)) {
return(undefined);
}
mc._x = mc._x + V;
}
function moveLeft() {
mc.body.gotoAndPlay("left");
if (mc._x < 20) {
return(undefined);
}
mc._x = mc._x - V;
}
function moveUL() {
mc.body.gotoAndPlay("left");
if (mc._x > 20) {
mc._x = mc._x - V2;
}
if (mc._y > 20) {
mc._y = mc._y - V2;
}
}
function moveUR() {
mc.body.gotoAndPlay("right");
if (mc._x < (_root.stage_w - 20)) {
mc._x = mc._x + V2;
}
if (mc._y > 20) {
mc._y = mc._y - V2;
}
}
function moveDR() {
mc.body.gotoAndPlay("right");
if (mc._x < (_root.stage_w - 20)) {
mc._x = mc._x + V2;
}
if (mc._y < (_root.stage_h - 20)) {
mc._y = mc._y + V2;
}
}
function moveDL() {
mc.body.gotoAndPlay("left");
if (mc._x > 20) {
mc._x = mc._x - V2;
}
if (mc._y < (_root.stage_h - 20)) {
mc._y = mc._y + V2;
}
}
function passStage() {
var _local3 = this;
inControl = false;
mc.onEnterFrame = function () {
this._y = this._y - (15 * _root.dirY);
if ((this._y < -50) && (_root.dirY == 1)) {
delete this.onEnterFrame;
} else if ((this._y > (_root.stage_h + 50)) && (_root.dirY == -1)) {
delete this.onEnterFrame;
}
};
}
function reset() {
}
function setPos(x, y) {
if (_root.dirY == -1) {
mc._x = x;
mc._y = _root.stage_h - y;
} else {
mc._x = x;
mc._y = y;
}
}
function moveIn() {
var v = (4 * (-_root.dirY));
var dis = 100;
if (_root.dirY == -1) {
mc._x = 200;
mc._y = -50;
} else {
mc._x = 200;
mc._y = 550;
}
var owner = this;
mc.onEnterFrame = function () {
this._y = this._y + v;
dis = dis - Math.abs(v);
if (dis <= 0) {
delete this.onEnterFrame;
owner.startControl();
}
};
}
var inDie = false;
var inSuper = false;
var inControl = false;
}
Symbol 127 MovieClip [__Packages.mx.controls.listclasses.DataSelector] Frame 0
class mx.controls.listclasses.DataSelector extends Object
{
var __vPosition, setVPosition, __dataProvider, enabled, lastSelID, lastSelected, selected, invUpdateControl, invalidate, multipleSelection, updateControl, __rowCount, rows;
function DataSelector () {
super();
}
static function Initialize(obj) {
var _local3 = mixinProps;
var _local4 = _local3.length;
obj = obj.prototype;
var _local1 = 0;
while (_local1 < _local4) {
obj[_local3[_local1]] = mixins[_local3[_local1]];
_local1++;
}
mixins.createProp(obj, "dataProvider", true);
mixins.createProp(obj, "length", false);
mixins.createProp(obj, "value", false);
mixins.createProp(obj, "selectedIndex", true);
mixins.createProp(obj, "selectedIndices", true);
mixins.createProp(obj, "selectedItems", false);
mixins.createProp(obj, "selectedItem", true);
return(true);
}
function createProp(obj, propName, setter) {
var p = (propName.charAt(0).toUpperCase() + propName.substr(1));
var _local2 = null;
var _local4 = function (Void) {
return(this["get" + p]());
};
if (setter) {
_local2 = function (val) {
this["set" + p](val);
};
}
obj.addProperty(propName, _local4, _local2);
}
function setDataProvider(dP) {
if (__vPosition != 0) {
setVPosition(0);
}
clearSelected();
__dataProvider.removeEventListener(this);
__dataProvider = dP;
dP.addEventListener("modelChanged", this);
dP.addView(this);
modelChanged({eventName:"updateAll"});
}
function getDataProvider(Void) {
return(__dataProvider);
}
function addItemAt(index, label, data) {
if ((index < 0) || (!enabled)) {
return(undefined);
}
var _local2 = __dataProvider;
if (_local2 == undefined) {
_local2 = (__dataProvider = new Array());
_local2.addEventListener("modelChanged", this);
index = 0;
}
if ((typeof(label) == "object") || (typeof(_local2.getItemAt(0)) == "string")) {
_local2.addItemAt(index, label);
} else {
_local2.addItemAt(index, {label:label, data:data});
}
}
function addItem(label, data) {
addItemAt(__dataProvider.length, label, data);
}
function removeItemAt(index) {
return(__dataProvider.removeItemAt(index));
}
function removeAll(Void) {
__dataProvider.removeAll();
}
function replaceItemAt(index, newLabel, newData) {
if (typeof(newLabel) == "object") {
__dataProvider.replaceItemAt(index, newLabel);
} else {
__dataProvider.replaceItemAt(index, {label:newLabel, data:newData});
}
}
function sortItemsBy(fieldName, order) {
lastSelID = __dataProvider.getItemID(lastSelected);
__dataProvider.sortItemsBy(fieldName, order);
}
function sortItems(compareFunc, order) {
lastSelID = __dataProvider.getItemID(lastSelected);
__dataProvider.sortItems(compareFunc, order);
}
function getLength(Void) {
return(__dataProvider.length);
}
function getItemAt(index) {
return(__dataProvider.getItemAt(index));
}
function modelChanged(eventObj) {
var _local3 = eventObj.firstItem;
var _local6 = eventObj.lastItem;
var _local7 = eventObj.eventName;
if (_local7 == undefined) {
_local7 = eventObj.event;
_local3 = eventObj.firstRow;
_local6 = eventObj.lastRow;
if (_local7 == "addRows") {
_local7 = (eventObj.eventName = "addItems");
} else if (_local7 == "deleteRows") {
_local7 = (eventObj.eventName = "removeItems");
} else if (_local7 == "updateRows") {
_local7 = (eventObj.eventName = "updateItems");
}
}
if (_local7 == "addItems") {
for (var _local2 in selected) {
var _local5 = selected[_local2];
if ((_local5 != undefined) && (_local5 >= _local3)) {
selected[_local2] = selected[_local2] + ((_local6 - _local3) + 1);
}
}
} else if (_local7 == "removeItems") {
if (__dataProvider.length == 0) {
delete selected;
} else {
var _local9 = eventObj.removedIDs;
var _local10 = _local9.length;
var _local2 = 0;
while (_local2 < _local10) {
var _local4 = _local9[_local2];
if (selected[_local4] != undefined) {
delete selected[_local4];
}
_local2++;
}
for (_local2 in selected) {
if (selected[_local2] >= _local3) {
selected[_local2] = selected[_local2] - ((_local6 - _local3) + 1);
}
}
}
} else if (_local7 == "sort") {
if (typeof(__dataProvider.getItemAt(0)) != "object") {
delete selected;
} else {
var _local10 = __dataProvider.length;
var _local2 = 0;
while (_local2 < _local10) {
if (isSelected(_local2)) {
var _local4 = __dataProvider.getItemID(_local2);
if (_local4 == lastSelID) {
lastSelected = _local2;
}
selected[_local4] = _local2;
}
_local2++;
}
}
} else if (_local7 == "filterModel") {
setVPosition(0);
}
invUpdateControl = true;
invalidate();
}
function getValue(Void) {
var _local2 = getSelectedItem();
if (typeof(_local2) != "object") {
return(_local2);
}
return(((_local2.data == undefined) ? (_local2.label) : (_local2.data)));
}
function getSelectedIndex(Void) {
for (var _local3 in selected) {
var _local2 = selected[_local3];
if (_local2 != undefined) {
return(_local2);
}
}
}
function setSelectedIndex(index) {
if (((index >= 0) && (index < __dataProvider.length)) && (enabled)) {
delete selected;
selectItem(index, true);
lastSelected = index;
invUpdateControl = true;
invalidate();
} else if (index == undefined) {
clearSelected();
}
}
function getSelectedIndices(Void) {
var _local2 = new Array();
for (var _local3 in selected) {
_local2.push(selected[_local3]);
}
_local2.reverse();
return(((_local2.length > 0) ? (_local2) : undefined));
}
function setSelectedIndices(indexArray) {
if (multipleSelection != true) {
return(undefined);
}
delete selected;
var _local3 = 0;
while (_local3 < indexArray.length) {
var _local2 = indexArray[_local3];
if ((_local2 >= 0) && (_local2 < __dataProvider.length)) {
selectItem(_local2, true);
}
_local3++;
}
invUpdateControl = true;
updateControl();
}
function getSelectedItems(Void) {
var _local3 = getSelectedIndices();
var _local4 = new Array();
var _local2 = 0;
while (_local2 < _local3.length) {
_local4.push(getItemAt(_local3[_local2]));
_local2++;
}
return(((_local4.length > 0) ? (_local4) : undefined));
}
function getSelectedItem(Void) {
return(__dataProvider.getItemAt(getSelectedIndex()));
}
function selectItem(index, selectedFlag) {
if (selected == undefined) {
selected = new Object();
}
var _local2 = __dataProvider.getItemID(index);
if (_local2 == undefined) {
return(undefined);
}
if (selectedFlag && (!isSelected(index))) {
selected[_local2] = index;
} else if (!selectedFlag) {
delete selected[_local2];
}
}
function isSelected(index) {
var _local2 = __dataProvider.getItemID(index);
if (_local2 == undefined) {
return(false);
}
return(selected[_local2] != undefined);
}
function clearSelected(transition) {
var _local3 = 0;
for (var _local4 in selected) {
var _local2 = selected[_local4];
if (((_local2 != undefined) && (__vPosition <= _local2)) && (_local2 < (__vPosition + __rowCount))) {
rows[_local2 - __vPosition].drawRow(rows[_local2 - __vPosition].item, "normal", transition && ((_local3 % 3) == 0));
}
_local3++;
}
delete selected;
}
static var mixins = new mx.controls.listclasses.DataSelector();
static var mixinProps = ["setDataProvider", "getDataProvider", "addItem", "addItemAt", "removeAll", "removeItemAt", "replaceItemAt", "sortItemsBy", "sortItems", "getLength", "getItemAt", "modelChanged", "calcPreferredWidthFromData", "calcPreferredHeightFromData", "getValue", "getSelectedIndex", "getSelectedItem", "getSelectedIndices", "getSelectedItems", "selectItem", "isSelected", "clearSelected", "setSelectedIndex", "setSelectedIndices"];
}
Symbol 128 MovieClip [__Packages.mx.core.UIObject] Frame 0
class mx.core.UIObject extends MovieClip
{
var _width, _height, _x, _y, _parent, _minHeight, _minWidth, _visible, dispatchEvent, _xscale, _yscale, methodTable, onEnterFrame, tfList, __width, __height, moveTo, lineTo, createTextField, attachMovie, buildDepthTable, findNextAvailableDepth, idNames, childrenCreated, _name, createAccessibilityImplementation, _endInit, validateNow, hasOwnProperty, initProperties, stylecache, className, ignoreClassStyleDeclaration, _tf, fontFamily, fontSize, color, marginLeft, marginRight, fontStyle, fontWeight, textAlign, textIndent, textDecoration, embedFonts, styleName, enabled;
function UIObject () {
super();
constructObject();
}
function get width() {
return(_width);
}
function get height() {
return(_height);
}
function get left() {
return(_x);
}
function get x() {
return(_x);
}
function get top() {
return(_y);
}
function get y() {
return(_y);
}
function get right() {
return(_parent.width - (_x + width));
}
function get bottom() {
return(_parent.height - (_y + height));
}
function getMinHeight(Void) {
return(_minHeight);
}
function setMinHeight(h) {
_minHeight = h;
}
function get minHeight() {
return(getMinHeight());
}
function set minHeight(h) {
setMinHeight(h);
//return(minHeight);
}
function getMinWidth(Void) {
return(_minWidth);
}
function setMinWidth(w) {
_minWidth = w;
}
function get minWidth() {
return(getMinWidth());
}
function set minWidth(w) {
setMinWidth(w);
//return(minWidth);
}
function setVisible(x, noEvent) {
if (x != _visible) {
_visible = x;
if (noEvent != true) {
dispatchEvent({type:(x ? "reveal" : "hide")});
}
}
}
function get visible() {
return(_visible);
}
function set visible(x) {
setVisible(x, false);
//return(visible);
}
function get scaleX() {
return(_xscale);
}
function set scaleX(x) {
_xscale = x;
//return(scaleX);
}
function get scaleY() {
return(_yscale);
}
function set scaleY(y) {
_yscale = y;
//return(scaleY);
}
function doLater(obj, fn) {
if (methodTable == undefined) {
methodTable = new Array();
}
methodTable.push({obj:obj, fn:fn});
onEnterFrame = doLaterDispatcher;
}
function doLaterDispatcher(Void) {
delete onEnterFrame;
if (invalidateFlag) {
redraw();
}
var _local3 = methodTable;
methodTable = new Array();
if (_local3.length > 0) {
var _local2;
while (_local2 = _local3.shift() , _local2 != undefined) {
_local2.obj[_local2.fn]();
}
}
}
function cancelAllDoLaters(Void) {
delete onEnterFrame;
methodTable = new Array();
}
function invalidate(Void) {
invalidateFlag = true;
onEnterFrame = doLaterDispatcher;
}
function invalidateStyle(Void) {
invalidate();
}
function redraw(bAlways) {
if (invalidateFlag || (bAlways)) {
invalidateFlag = false;
var _local2;
for (_local2 in tfList) {
tfList[_local2].draw();
}
draw();
dispatchEvent({type:"draw"});
}
}
function draw(Void) {
}
function move(x, y, noEvent) {
var _local3 = _x;
var _local2 = _y;
_x = x;
_y = y;
if (noEvent != true) {
dispatchEvent({type:"move", oldX:_local3, oldY:_local2});
}
}
function setSize(w, h, noEvent) {
var _local2 = __width;
var _local3 = __height;
__width = w;
__height = h;
size();
if (noEvent != true) {
dispatchEvent({type:"resize", oldWidth:_local2, oldHeight:_local3});
}
}
function size(Void) {
_width = __width;
_height = __height;
}
function drawRect(x1, y1, x2, y2) {
moveTo(x1, y1);
lineTo(x2, y1);
lineTo(x2, y2);
lineTo(x1, y2);
lineTo(x1, y1);
}
function createLabel(name, depth, text) {
createTextField(name, depth, 0, 0, 0, 0);
var _local2 = this[name];
_local2._color = textColorList;
_local2._visible = false;
_local2.__text = text;
if (tfList == undefined) {
tfList = new Object();
}
tfList[name] = _local2;
_local2.invalidateStyle();
invalidate();
_local2.styleName = this;
return(_local2);
}
function createObject(linkageName, id, depth, initobj) {
return(attachMovie(linkageName, id, depth, initobj));
}
function createClassObject(className, id, depth, initobj) {
var _local3 = className.symbolName == undefined;
if (_local3) {
Object.registerClass(className.symbolOwner.symbolName, className);
}
var _local4 = createObject(className.symbolOwner.symbolName, id, depth, initobj);
if (_local3) {
Object.registerClass(className.symbolOwner.symbolName, className.symbolOwner);
}
return(_local4);
}
function createEmptyObject(id, depth) {
return(createClassObject(mx.core.UIObject, id, depth));
}
function destroyObject(id) {
var _local2 = this[id];
if (_local2.getDepth() < 0) {
var _local4 = buildDepthTable();
var _local5 = findNextAvailableDepth(0, _local4, "up");
var _local3 = _local5;
_local2.swapDepths(_local3);
}
_local2.removeMovieClip();
delete this[id];
}
function getSkinIDName(tag) {
return(idNames[tag]);
}
function setSkin(tag, linkageName, initObj) {
if (_global.skinRegistry[linkageName] == undefined) {
mx.skins.SkinElement.registerElement(linkageName, mx.skins.SkinElement);
}
return(createObject(linkageName, getSkinIDName(tag), tag, initObj));
}
function createSkin(tag) {
var _local2 = getSkinIDName(tag);
createEmptyObject(_local2, tag);
return(this[_local2]);
}
function createChildren(Void) {
}
function _createChildren(Void) {
createChildren();
childrenCreated = true;
}
function constructObject(Void) {
if (_name == undefined) {
return(undefined);
}
init();
_createChildren();
createAccessibilityImplementation();
_endInit();
if (validateNow) {
redraw(true);
} else {
invalidate();
}
}
function initFromClipParameters(Void) {
var _local4 = false;
var _local2;
for (_local2 in clipParameters) {
if (hasOwnProperty(_local2)) {
_local4 = true;
this["def_" + _local2] = this[_local2];
delete this[_local2];
}
}
if (_local4) {
for (_local2 in clipParameters) {
var _local3 = this["def_" + _local2];
if (_local3 != undefined) {
this[_local2] = _local3;
}
}
}
}
function init(Void) {
__width = _width;
__height = _height;
if (initProperties == undefined) {
initFromClipParameters();
} else {
initProperties();
}
if (_global.cascadingStyles == true) {
stylecache = new Object();
}
}
function getClassStyleDeclaration(Void) {
var _local4 = this;
var _local3 = className;
while (_local3 != undefined) {
if (ignoreClassStyleDeclaration[_local3] == undefined) {
if (_global.styles[_local3] != undefined) {
return(_global.styles[_local3]);
}
}
_local4 = _local4.__proto__;
_local3 = _local4.className;
}
}
function setColor(color) {
}
function __getTextFormat(tf, bAll) {
var _local8 = stylecache.tf;
if (_local8 != undefined) {
var _local3;
for (_local3 in mx.styles.StyleManager.TextFormatStyleProps) {
if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local3])) {
if (tf[_local3] == undefined) {
tf[_local3] = _local8[_local3];
}
}
}
return(false);
}
var _local6 = false;
for (var _local3 in mx.styles.StyleManager.TextFormatStyleProps) {
if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local3])) {
if (tf[_local3] == undefined) {
var _local5 = _tf[_local3];
if (_local5 != undefined) {
tf[_local3] = _local5;
} else if ((_local3 == "font") && (fontFamily != undefined)) {
tf[_local3] = fontFamily;
} else if ((_local3 == "size") && (fontSize != undefined)) {
tf[_local3] = fontSize;
} else if ((_local3 == "color") && (color != undefined)) {
tf[_local3] = color;
} else if ((_local3 == "leftMargin") && (marginLeft != undefined)) {
tf[_local3] = marginLeft;
} else if ((_local3 == "rightMargin") && (marginRight != undefined)) {
tf[_local3] = marginRight;
} else if ((_local3 == "italic") && (fontStyle != undefined)) {
tf[_local3] = fontStyle == _local3;
} else if ((_local3 == "bold") && (fontWeight != undefined)) {
tf[_local3] = fontWeight == _local3;
} else if ((_local3 == "align") && (textAlign != undefined)) {
tf[_local3] = textAlign;
} else if ((_local3 == "indent") && (textIndent != undefined)) {
tf[_local3] = textIndent;
} else if ((_local3 == "underline") && (textDecoration != undefined)) {
tf[_local3] = textDecoration == _local3;
} else if ((_local3 == "embedFonts") && (embedFonts != undefined)) {
tf[_local3] = embedFonts;
} else {
_local6 = true;
}
}
}
}
if (_local6) {
var _local9 = styleName;
if (_local9 != undefined) {
if (typeof(_local9) != "string") {
_local6 = _local9.__getTextFormat(tf, true, this);
} else if (_global.styles[_local9] != undefined) {
_local6 = _global.styles[_local9].__getTextFormat(tf, true, this);
}
}
}
if (_local6) {
var _local10 = getClassStyleDeclaration();
if (_local10 != undefined) {
_local6 = _local10.__getTextFormat(tf, true, this);
}
}
if (_local6) {
if (_global.cascadingStyles) {
if (_parent != undefined) {
_local6 = _parent.__getTextFormat(tf, false);
}
}
}
if (_local6) {
_local6 = _global.style.__getTextFormat(tf, true, this);
}
return(_local6);
}
function _getTextFormat(Void) {
var _local2 = stylecache.tf;
if (_local2 != undefined) {
return(_local2);
}
_local2 = new TextFormat();
__getTextFormat(_local2, true);
stylecache.tf = _local2;
if (enabled == false) {
var _local3 = getStyle("disabledColor");
_local2.color = _local3;
}
return(_local2);
}
function getStyleName(Void) {
var _local2 = styleName;
if (_local2 != undefined) {
if (typeof(_local2) != "string") {
return(_local2.getStyleName());
}
return(_local2);
}
if (_parent != undefined) {
return(_parent.getStyleName());
}
return(undefined);
}
function getStyle(styleProp) {
var _local3;
_global.getStyleCounter++;
if (this[styleProp] != undefined) {
return(this[styleProp]);
}
var _local6 = styleName;
if (_local6 != undefined) {
if (typeof(_local6) != "string") {
_local3 = _local6.getStyle(styleProp);
} else {
var _local7 = _global.styles[_local6];
_local3 = _local7.getStyle(styleProp);
}
}
if (_local3 != undefined) {
return(_local3);
}
var _local7 = getClassStyleDeclaration();
if (_local7 != undefined) {
_local3 = _local7[styleProp];
}
if (_local3 != undefined) {
return(_local3);
}
if (_global.cascadingStyles) {
if (mx.styles.StyleManager.isInheritingStyle(styleProp) || (mx.styles.StyleManager.isColorStyle(styleProp))) {
var _local5 = stylecache;
if (_local5 != undefined) {
if (_local5[styleProp] != undefined) {
return(_local5[styleProp]);
}
}
if (_parent != undefined) {
_local3 = _parent.getStyle(styleProp);
} else {
_local3 = _global.style[styleProp];
}
if (_local5 != undefined) {
_local5[styleProp] = _local3;
}
return(_local3);
}
}
if (_local3 == undefined) {
_local3 = _global.style[styleProp];
}
return(_local3);
}
static function mergeClipParameters(o, p) {
for (var _local3 in p) {
o[_local3] = p[_local3];
}
return(true);
}
static var symbolName = "UIObject";
static var symbolOwner = mx.core.UIObject;
static var version = "2.0.2.126";
static var textColorList = {color:1, disabledColor:1};
var invalidateFlag = false;
var lineWidth = 1;
var lineColor = 0;
var tabEnabled = false;
var clipParameters = {visible:1, minHeight:1, minWidth:1, maxHeight:1, maxWidth:1, preferredHeight:1, preferredWidth:1};
}
Symbol 129 MovieClip [__Packages.mx.core.UIComponent] Frame 0
class mx.core.UIComponent extends mx.core.UIObject
{
var __width, __height, invalidate, stylecache, removeEventListener, dispatchEvent, drawFocus, addEventListener, _xscale, _yscale, _focusrect, watch, enabled;
function UIComponent () {
super();
}
function get width() {
return(__width);
}
function get height() {
return(__height);
}
function setVisible(x, noEvent) {
super.setVisible(x, noEvent);
}
function enabledChanged(id, oldValue, newValue) {
setEnabled(newValue);
invalidate();
delete stylecache.tf;
return(newValue);
}
function setEnabled(enabled) {
invalidate();
}
function getFocus() {
var selFocus = Selection.getFocus();
return(((selFocus === null) ? null : (eval (selFocus))));
}
function setFocus() {
Selection.setFocus(this);
}
function getFocusManager() {
var _local2 = this;
while (_local2 != undefined) {
if (_local2.focusManager != undefined) {
return(_local2.focusManager);
}
_local2 = _local2._parent;
}
return(undefined);
}
function onKillFocus(newFocus) {
removeEventListener("keyDown", this);
removeEventListener("keyUp", this);
dispatchEvent({type:"focusOut"});
drawFocus(false);
}
function onSetFocus(oldFocus) {
addEventListener("keyDown", this);
addEventListener("keyUp", this);
dispatchEvent({type:"focusIn"});
if (getFocusManager().bDrawFocus != false) {
drawFocus(true);
}
}
function findFocusInChildren(o) {
if (o.focusTextField != undefined) {
return(o.focusTextField);
}
if (o.tabEnabled == true) {
return(o);
}
return(undefined);
}
function findFocusFromObject(o) {
if (o.tabEnabled != true) {
if (o._parent == undefined) {
return(undefined);
}
if (o._parent.tabEnabled == true) {
o = o._parent;
} else if (o._parent.tabChildren) {
o = findFocusInChildren(o._parent);
} else {
o = findFocusFromObject(o._parent);
}
}
return(o);
}
function pressFocus() {
var _local3 = findFocusFromObject(this);
var _local2 = getFocus();
if (_local3 != _local2) {
_local2.drawFocus(false);
if (getFocusManager().bDrawFocus != false) {
_local3.drawFocus(true);
}
}
}
function releaseFocus() {
var _local2 = findFocusFromObject(this);
if (_local2 != getFocus()) {
_local2.setFocus();
}
}
function isParent(o) {
while (o != undefined) {
if (o == this) {
return(true);
}
o = o._parent;
}
return(false);
}
function size() {
}
function init() {
super.init();
_xscale = 100;
_yscale = 100;
_focusrect = _global.useFocusRect == false;
watch("enabled", enabledChanged);
if (enabled == false) {
setEnabled(false);
}
}
function dispatchValueChangedEvent(value) {
dispatchEvent({type:"valueChanged", value:value});
}
static var symbolName = "UIComponent";
static var symbolOwner = mx.core.UIComponent;
static var version = "2.0.2.126";
static var kStretch = 5000;
var focusEnabled = true;
var tabEnabled = true;
var origBorderStyles = {themeColor:16711680};
var clipParameters = {};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.core.UIComponent.prototype.clipParameters, mx.core.UIObject.prototype.clipParameters);
}
Symbol 130 MovieClip [__Packages.mx.core.View] Frame 0
class mx.core.View extends mx.core.UIComponent
{
var tabChildren, tabEnabled, boundingBox_mc, border_mc, __get__width, __get__height, __tabIndex, depth, createObject, createClassObject, loadExternal, destroyObject, createClassChildAtDepth, doLater;
function View () {
super();
}
function init() {
super.init();
tabChildren = true;
tabEnabled = false;
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
function size() {
border_mc.move(0, 0);
border_mc.setSize(__get__width(), __get__height());
doLayout();
}
function draw() {
size();
}
function get numChildren() {
var _local3 = childNameBase;
var _local2 = 0;
while (true) {
if (this[_local3 + _local2] == undefined) {
return(_local2);
}
_local2++;
}
}
function get tabIndex() {
return((tabEnabled ? (__tabIndex) : undefined));
}
function addLayoutObject(object) {
}
function createChild(className, instanceName, initProps) {
if (depth == undefined) {
depth = 1;
}
var _local2;
if (typeof(className) == "string") {
_local2 = createObject(className, instanceName, depth++, initProps);
} else {
_local2 = createClassObject(className, instanceName, depth++, initProps);
}
if (_local2 == undefined) {
_local2 = loadExternal(className, _loadExternalClass, instanceName, depth++, initProps);
} else {
this[childNameBase + numChildren] = _local2;
_local2._complete = true;
childLoaded(_local2);
}
addLayoutObject(_local2);
return(_local2);
}
function getChildAt(childIndex) {
return(this[childNameBase + childIndex]);
}
function destroyChildAt(childIndex) {
if (!((childIndex >= 0) && (childIndex < numChildren))) {
return(undefined);
}
var _local4 = childNameBase + childIndex;
var _local6 = numChildren;
var _local3;
for (_local3 in this) {
if (_local3 == _local4) {
_local4 = "";
destroyObject(_local3);
break;
}
}
var _local2 = Number(childIndex);
while (_local2 < (_local6 - 1)) {
this[childNameBase + _local2] = this[childNameBase + (_local2 + 1)];
_local2++;
}
delete this[childNameBase + (_local6 - 1)];
depth--;
}
function initLayout() {
if (!hasBeenLayedOut) {
doLayout();
}
}
function doLayout() {
hasBeenLayedOut = true;
}
function createChildren() {
if (border_mc == undefined) {
border_mc = createClassChildAtDepth(_global.styles.rectBorderClass, mx.managers.DepthManager.kBottom, {styleName:this});
}
doLater(this, "initLayout");
}
function convertToUIObject(obj) {
}
function childLoaded(obj) {
convertToUIObject(obj);
}
static function extension() {
mx.core.ExternalContent.enableExternalContent();
}
static var symbolName = "View";
static var symbolOwner = mx.core.View;
static var version = "2.0.2.126";
var className = "View";
static var childNameBase = "_child";
var hasBeenLayedOut = false;
var _loadExternalClass = "UIComponent";
}
Symbol 131 MovieClip [__Packages.mx.core.ScrollView] Frame 0
class mx.core.ScrollView extends mx.core.View
{
var __width, hScroller, vScroller, __maxHPosition, propsInited, scrollAreaChanged, specialHScrollCase, createObject, viewableColumns, __height, oldRndUp, viewableRows, __viewMetrics, owner, enabled, border_mc, __get__width, __get__height, invLayout, mask_mc, _parent, dispatchEvent;
function ScrollView () {
super();
}
function getHScrollPolicy(Void) {
return(__hScrollPolicy);
}
function setHScrollPolicy(policy) {
__hScrollPolicy = policy.toLowerCase();
if (__width == undefined) {
return(undefined);
}
setScrollProperties(numberOfCols, columnWidth, rowC, rowH, heightPadding, widthPadding);
}
function get hScrollPolicy() {
return(getHScrollPolicy());
}
function set hScrollPolicy(policy) {
setHScrollPolicy(policy);
//return(hScrollPolicy);
}
function getVScrollPolicy(Void) {
return(__vScrollPolicy);
}
function setVScrollPolicy(policy) {
__vScrollPolicy = policy.toLowerCase();
if (__width == undefined) {
return(undefined);
}
setScrollProperties(numberOfCols, columnWidth, rowC, rowH, heightPadding, widthPadding);
}
function get vScrollPolicy() {
return(getVScrollPolicy());
}
function set vScrollPolicy(policy) {
setVScrollPolicy(policy);
//return(vScrollPolicy);
}
function get hPosition() {
return(getHPosition());
}
function set hPosition(pos) {
setHPosition(pos);
//return(hPosition);
}
function getHPosition(Void) {
return(__hPosition);
}
function setHPosition(pos) {
hScroller.__set__scrollPosition(pos);
__hPosition = pos;
}
function get vPosition() {
return(getVPosition());
}
function set vPosition(pos) {
setVPosition(pos);
//return(vPosition);
}
function getVPosition(Void) {
return(__vPosition);
}
function setVPosition(pos) {
vScroller.__set__scrollPosition(pos);
__vPosition = pos;
}
function get maxVPosition() {
var _local2 = vScroller.maxPos;
return(((_local2 == undefined) ? 0 : (_local2)));
}
function get maxHPosition() {
return(getMaxHPosition());
}
function set maxHPosition(pos) {
setMaxHPosition(pos);
//return(maxHPosition);
}
function getMaxHPosition(Void) {
if (__maxHPosition != undefined) {
return(__maxHPosition);
}
var _local2 = hScroller.maxPos;
return(((_local2 == undefined) ? 0 : (_local2)));
}
function setMaxHPosition(pos) {
__maxHPosition = pos;
}
function setScrollProperties(colCount, colWidth, rwCount, rwHeight, hPadding, wPadding) {
var _local3 = getViewMetrics();
if (hPadding == undefined) {
hPadding = 0;
}
if (wPadding == undefined) {
wPadding = 0;
}
propsInited = true;
delete scrollAreaChanged;
heightPadding = hPadding;
widthPadding = wPadding;
if (colWidth == 0) {
colWidth = 1;
}
if (rwHeight == 0) {
rwHeight = 1;
}
var _local5 = Math.ceil((((__width - _local3.left) - _local3.right) - widthPadding) / colWidth);
if ((__hScrollPolicy == "on") || ((_local5 < colCount) && (__hScrollPolicy == "auto"))) {
if ((hScroller == undefined) || (specialHScrollCase)) {
delete specialHScrollCase;
hScroller = createObject("HScrollBar", "hSB", 1001);
hScroller.__set__lineScrollSize(20);
hScroller.scrollHandler = scrollProxy;
hScroller.__set__scrollPosition(__hPosition);
scrollAreaChanged = true;
}
if ((((numberOfCols != colCount) || (columnWidth != colWidth)) || (viewableColumns != _local5)) || (scrollAreaChanged)) {
hScroller.setScrollProperties(_local5, 0, colCount - _local5);
viewableColumns = _local5;
numberOfCols = colCount;
columnWidth = colWidth;
}
} else if (((__hScrollPolicy == "auto") || (__hScrollPolicy == "off")) && (hScroller != undefined)) {
hScroller.removeMovieClip();
delete hScroller;
scrollAreaChanged = true;
}
if (heightPadding == undefined) {
heightPadding = 0;
}
var _local4 = Math.ceil((((__height - _local3.top) - _local3.bottom) - heightPadding) / rwHeight);
var _local8 = (((__height - _local3.top) - _local3.bottom) % rwHeight) != 0;
if ((__vScrollPolicy == "on") || ((_local4 < (rwCount + _local8)) && (__vScrollPolicy == "auto"))) {
if (vScroller == undefined) {
vScroller = createObject("VScrollBar", "vSB", 1002);
vScroller.scrollHandler = scrollProxy;
vScroller.__set__scrollPosition(__vPosition);
scrollAreaChanged = true;
rowH = 0;
}
if ((((rowC != rwCount) || (rowH != rwHeight)) || ((viewableRows + _local8) != (_local4 + oldRndUp))) || (scrollAreaChanged)) {
vScroller.setScrollProperties(_local4, 0, (rwCount - _local4) + _local8);
viewableRows = _local4;
rowC = rwCount;
rowH = rwHeight;
oldRndUp = _local8;
}
} else if (((__vScrollPolicy == "auto") || (__vScrollPolicy == "off")) && (vScroller != undefined)) {
vScroller.removeMovieClip();
delete vScroller;
scrollAreaChanged = true;
}
numberOfCols = colCount;
columnWidth = colWidth;
if (scrollAreaChanged) {
doLayout();
var _local2 = __viewMetrics;
var _local12 = ((owner != undefined) ? (owner) : this);
_local12.layoutContent(_local2.left, _local2.top, ((columnWidth * numberOfCols) - _local2.left) - _local2.right, rowC * rowH, (__width - _local2.left) - _local2.right, (__height - _local2.top) - _local2.bottom);
}
if (!enabled) {
setEnabled(false);
}
}
function getViewMetrics(Void) {
var _local2 = __viewMetrics;
var _local3 = border_mc.__get__borderMetrics();
_local2.left = _local3.left;
_local2.right = _local3.right;
if (vScroller != undefined) {
_local2.right = _local2.right + vScroller.minWidth;
}
_local2.top = _local3.top;
if ((hScroller == undefined) && ((__hScrollPolicy == "on") || (__hScrollPolicy == true))) {
hScroller = createObject("FHScrollBar", "hSB", 1001);
specialHScrollCase = true;
}
_local2.bottom = _local3.bottom;
if (hScroller != undefined) {
_local2.bottom = _local2.bottom + hScroller.minHeight;
}
return(_local2);
}
function doLayout(Void) {
var _local10 = __get__width();
var _local8 = __get__height();
delete invLayout;
var _local3 = (__viewMetrics = getViewMetrics());
var _local2 = _local3.left;
var _local9 = _local3.right;
var _local5 = _local3.top;
var _local11 = _local3.bottom;
var _local7 = hScroller;
var _local6 = vScroller;
_local7.setSize((_local10 - _local2) - _local9, _local7.minHeight + 0);
_local7.move(_local2, _local8 - _local11);
_local6.setSize(_local6.minWidth + 0, (_local8 - _local5) - _local11);
_local6.move(_local10 - _local9, _local5);
var _local4 = mask_mc;
_local4._width = (_local10 - _local2) - _local9;
_local4._height = (_local8 - _local5) - _local11;
_local4._x = _local2;
_local4._y = _local5;
}
function createChild(id, name, props) {
var _local2 = super.createChild(id, name, props);
return(_local2);
}
function init(Void) {
super.init();
__viewMetrics = new Object();
if (_global.__SVMouseWheelManager == undefined) {
var _local4 = (_global.__SVMouseWheelManager = new Object());
_local4.onMouseWheel = __onMouseWheel;
Mouse.addListener(_local4);
}
}
function __onMouseWheel(delta, scrollTarget) {
var _local4 = scrollTarget;
var _local1;
while (_local4 != undefined) {
if (_local4 instanceof mx.core.ScrollView) {
_local1 = _local4;
}
_local4 = _local4._parent;
}
if (_local1 != undefined) {
_local4 = ((delta <= 0) ? 1 : -1);
var _local2 = _local1.vScroller.lineScrollSize;
if (_local2 == undefined) {
_local2 = 0;
}
_local2 = Math.max(Math.abs(delta), _local2);
var _local3 = _local1.vPosition + (_local2 * _local4);
_local1.vPosition = Math.max(0, Math.min(_local3, _local1.maxVPosition));
_local1.dispatchEvent({type:"scroll", direction:"vertical", position:_local1.vPosition});
}
}
function createChildren(Void) {
super.createChildren();
if (mask_mc == undefined) {
mask_mc = createObject("BoundingBox", "mask_mc", MASK_DEPTH);
}
mask_mc._visible = false;
}
function invalidate(Void) {
super.invalidate();
}
function draw(Void) {
size();
}
function size(Void) {
super.size();
}
function scrollProxy(docObj) {
_parent.onScroll(docObj);
}
function onScroll(docObj) {
var _local3 = docObj.target;
var _local2 = _local3.scrollPosition;
if (_local3 == vScroller) {
var _local4 = "vertical";
var _local5 = "__vPosition";
} else {
var _local4 = "horizontal";
var _local5 = "__hPosition";
}
this[_local5] = _local2;
dispatchEvent({type:"scroll", direction:_local4, position:_local2});
}
function setEnabled(v) {
vScroller.enabled = (hScroller.enabled = v);
}
function childLoaded(obj) {
super.childLoaded(obj);
obj.setMask(mask_mc);
}
static var symbolName = "ScrollView";
static var symbolOwner = mx.core.ScrollView;
static var version = "2.0.2.126";
var className = "ScrollView";
var __vScrollPolicy = "auto";
var __hScrollPolicy = "off";
var __vPosition = 0;
var __hPosition = 0;
var numberOfCols = 0;
var rowC = 0;
var columnWidth = 1;
var rowH = 0;
var heightPadding = 0;
var widthPadding = 0;
var MASK_DEPTH = 10000;
}
Symbol 132 MovieClip [__Packages.mx.events.EventDispatcher] Frame 0
class mx.events.EventDispatcher
{
function EventDispatcher () {
}
static function _removeEventListener(queue, event, handler) {
if (queue != undefined) {
var _local4 = queue.length;
var _local1;
_local1 = 0;
while (_local1 < _local4) {
var _local2 = queue[_local1];
if (_local2 == handler) {
queue.splice(_local1, 1);
return(undefined);
}
_local1++;
}
}
}
static function initialize(object) {
if (_fEventDispatcher == undefined) {
_fEventDispatcher = new mx.events.EventDispatcher();
}
object.addEventListener = _fEventDispatcher.addEventListener;
object.removeEventListener = _fEventDispatcher.removeEventListener;
object.dispatchEvent = _fEventDispatcher.dispatchEvent;
object.dispatchQueue = _fEventDispatcher.dispatchQueue;
}
function dispatchQueue(queueObj, eventObj) {
var _local7 = "__q_" + eventObj.type;
var _local4 = queueObj[_local7];
if (_local4 != undefined) {
var _local5;
for (_local5 in _local4) {
var _local1 = _local4[_local5];
var _local3 = typeof(_local1);
if ((_local3 == "object") || (_local3 == "movieclip")) {
if (_local1.handleEvent != undefined) {
_local1.handleEvent(eventObj);
}
if (_local1[eventObj.type] != undefined) {
if (exceptions[eventObj.type] == undefined) {
_local1[eventObj.type](eventObj);
}
}
} else {
_local1.apply(queueObj, [eventObj]);
}
}
}
}
function dispatchEvent(eventObj) {
if (eventObj.target == undefined) {
eventObj.target = this;
}
this[eventObj.type + "Handler"](eventObj);
dispatchQueue(this, eventObj);
}
function addEventListener(event, handler) {
var _local3 = "__q_" + event;
if (this[_local3] == undefined) {
this[_local3] = new Array();
}
_global.ASSetPropFlags(this, _local3, 1);
_removeEventListener(this[_local3], event, handler);
this[_local3].push(handler);
}
function removeEventListener(event, handler) {
var _local2 = "__q_" + event;
_removeEventListener(this[_local2], event, handler);
}
static var _fEventDispatcher = undefined;
static var exceptions = {move:1, draw:1, load:1};
}
Symbol 133 MovieClip [__Packages.mx.controls.listclasses.DataProvider] Frame 0
class mx.controls.listclasses.DataProvider extends Object
{
var length, splice, dispatchEvent, sortOn, reverse, sort;
function DataProvider (obj) {
super();
}
static function Initialize(obj) {
var _local4 = mixinProps;
var _local6 = _local4.length;
obj = obj.prototype;
var _local3 = 0;
while (_local3 < _local6) {
obj[_local4[_local3]] = mixins[_local4[_local3]];
_global.ASSetPropFlags(obj, _local4[_local3], 1);
_local3++;
}
mx.events.EventDispatcher.initialize(obj);
_global.ASSetPropFlags(obj, "addEventListener", 1);
_global.ASSetPropFlags(obj, "removeEventListener", 1);
_global.ASSetPropFlags(obj, "dispatchEvent", 1);
_global.ASSetPropFlags(obj, "dispatchQueue", 1);
Object.prototype.LargestID = 0;
Object.prototype.getID = function () {
if (this.__ID__ == undefined) {
this.__ID__ = Object.prototype.LargestID++;
_global.ASSetPropFlags(this, "__ID__", 1);
}
return(this.__ID__);
};
_global.ASSetPropFlags(Object.prototype, "LargestID", 1);
_global.ASSetPropFlags(Object.prototype, "getID", 1);
return(true);
}
function addItemAt(index, value) {
if (index < length) {
splice(index, 0, value);
} else if (index > length) {
trace("Cannot add an item past the end of the DataProvider");
return(undefined);
}
this[index] = value;
updateViews("addItems", index, index);
}
function addItem(value) {
addItemAt(length, value);
}
function addItemsAt(index, newItems) {
index = Math.min(length, index);
newItems.unshift(index, 0);
splice.apply(this, newItems);
newItems.splice(0, 2);
updateViews("addItems", index, (index + newItems.length) - 1);
}
function removeItemsAt(index, len) {
var _local3 = new Array();
var _local2 = 0;
while (_local2 < len) {
_local3.push(getItemID(index + _local2));
_local2++;
}
var _local6 = splice(index, len);
dispatchEvent({type:"modelChanged", eventName:"removeItems", firstItem:index, lastItem:(index + len) - 1, removedItems:_local6, removedIDs:_local3});
}
function removeItemAt(index) {
var _local2 = this[index];
removeItemsAt(index, 1);
return(_local2);
}
function removeAll(Void) {
splice(0);
updateViews("removeItems", 0, length - 1);
}
function replaceItemAt(index, itemObj) {
if ((index < 0) || (index >= length)) {
return(undefined);
}
var _local3 = getItemID(index);
this[index] = itemObj;
this[index].__ID__ = _local3;
updateViews("updateItems", index, index);
}
function getItemAt(index) {
return(this[index]);
}
function getItemID(index) {
var _local2 = this[index];
if ((typeof(_local2) != "object") && (_local2 != undefined)) {
return(index);
}
return(_local2.getID());
}
function sortItemsBy(fieldName, order) {
if (typeof(order) == "string") {
sortOn(fieldName);
if (order.toUpperCase() == "DESC") {
reverse();
}
} else {
sortOn(fieldName, order);
}
updateViews("sort");
}
function sortItems(compareFunc, optionFlags) {
sort(compareFunc, optionFlags);
updateViews("sort");
}
function editField(index, fieldName, newData) {
this[index][fieldName] = newData;
dispatchEvent({type:"modelChanged", eventName:"updateField", firstItem:index, lastItem:index, fieldName:fieldName});
}
function getEditingData(index, fieldName) {
return(this[index][fieldName]);
}
function updateViews(event, first, last) {
dispatchEvent({type:"modelChanged", eventName:event, firstItem:first, lastItem:last});
}
static var mixinProps = ["addView", "addItem", "addItemAt", "removeAll", "removeItemAt", "replaceItemAt", "getItemAt", "getItemID", "sortItemsBy", "sortItems", "updateViews", "addItemsAt", "removeItemsAt", "getEditingData", "editField"];
static var evtDipatcher = mx.events.EventDispatcher;
static var mixins = new mx.controls.listclasses.DataProvider();
}
Symbol 134 MovieClip [__Packages.mx.controls.listclasses.ScrollSelectList] Frame 0
class mx.controls.listclasses.ScrollSelectList extends mx.core.ScrollView
{
var invLayoutContent, rows, topRowZ, listContent, __dataProvider, __vPosition, tW, layoutX, layoutY, tH, invRowHeight, invalidate, __height, invUpdateControl, __cellRenderer, __labelFunction, __iconField, __iconFunction, getLength, baseRowZ, lastPosition, propertyTable, isSelected, wasKeySelected, changeFlag, clearSelected, selectItem, lastSelected, dispatchEvent, dragScrolling, _ymouse, scrollInterval, isPressed, onMouseUp, getSelectedIndex, enabled, tabEnabled, tabChildren, createEmptyMovieClip, border_mc;
function ScrollSelectList () {
super();
}
function layoutContent(x, y, w, h) {
delete invLayoutContent;
var _local4 = Math.ceil(h / __rowHeight);
roundUp = (h % __rowHeight) != 0;
var _local12 = _local4 - __rowCount;
if (_local12 < 0) {
var _local3 = _local4;
while (_local3 < __rowCount) {
rows[_local3].removeMovieClip();
delete rows[_local3];
_local3++;
}
topRowZ = topRowZ + _local12;
} else if (_local12 > 0) {
if (rows == undefined) {
rows = new Array();
}
var _local3 = __rowCount;
while (_local3 < _local4) {
var _local2 = (rows[_local3] = listContent.createObject(__rowRenderer, "listRow" + (topRowZ++), topRowZ, {owner:this, styleName:this, rowIndex:_local3}));
_local2._x = x;
_local2._y = Math.round((_local3 * __rowHeight) + y);
_local2.setSize(w, __rowHeight);
_local2.drawRow(__dataProvider.getItemAt(__vPosition + _local3), getStateAt(__vPosition + _local3));
_local2.lastY = _local2._y;
_local3++;
}
}
if (w != tW) {
var _local11 = ((_local12 > 0) ? (__rowCount) : (_local4));
var _local3 = 0;
while (_local3 < _local11) {
rows[_local3].setSize(w, __rowHeight);
_local3++;
}
}
if ((layoutX != x) || (layoutY != y)) {
var _local3 = 0;
while (_local3 < _local4) {
rows[_local3]._x = x;
rows[_local3]._y = Math.round((_local3 * __rowHeight) + y);
_local3++;
}
}
__rowCount = _local4;
layoutX = x;
layoutY = y;
tW = w;
tH = h;
}
function getRowHeight(Void) {
return(__rowHeight);
}
function setRowHeight(v) {
__rowHeight = v;
invRowHeight = true;
invalidate();
}
function get rowHeight() {
return(getRowHeight());
}
function set rowHeight(w) {
setRowHeight(w);
//return(rowHeight);
}
function setRowCount(v) {
__rowCount = v;
}
function getRowCount(Void) {
var _local2 = ((__rowCount == 0) ? (Math.ceil(__height / __rowHeight)) : (__rowCount));
return(_local2);
}
function get rowCount() {
return(getRowCount());
}
function set rowCount(w) {
setRowCount(w);
//return(rowCount);
}
function setEnabled(v) {
super.setEnabled(v);
invUpdateControl = true;
invalidate();
}
function setCellRenderer(cR) {
__cellRenderer = cR;
var _local2 = 0;
while (_local2 < rows.length) {
rows[_local2].setCellRenderer(true);
_local2++;
}
invUpdateControl = true;
invalidate();
}
function set cellRenderer(cR) {
setCellRenderer(cR);
//return(cellRenderer);
}
function get cellRenderer() {
return(__cellRenderer);
}
function set labelField(field) {
setLabelField(field);
//return(labelField);
}
function setLabelField(field) {
__labelField = field;
invUpdateControl = true;
invalidate();
}
function get labelField() {
return(__labelField);
}
function set labelFunction(func) {
setLabelFunction(func);
//return(labelFunction);
}
function setLabelFunction(func) {
__labelFunction = func;
invUpdateControl = true;
invalidate();
}
function get labelFunction() {
return(__labelFunction);
}
function set iconField(field) {
setIconField(field);
//return(iconField);
}
function setIconField(field) {
__iconField = field;
invUpdateControl = true;
invalidate();
}
function get iconField() {
return(__iconField);
}
function set iconFunction(func) {
setIconFunction(func);
//return(iconFunction);
}
function setIconFunction(func) {
__iconFunction = func;
invUpdateControl = true;
invalidate();
}
function get iconFunction() {
return(__iconFunction);
}
function setVPosition(pos) {
if (pos < 0) {
return(undefined);
}
if ((pos > 0) && (pos > ((getLength() - __rowCount) + roundUp))) {
return(undefined);
}
var _local8 = pos - __vPosition;
if (_local8 == 0) {
return(undefined);
}
__vPosition = pos;
var _local10 = _local8 > 0;
_local8 = Math.abs(_local8);
if (_local8 >= __rowCount) {
updateControl();
} else {
var _local4 = new Array();
var _local9 = __rowCount - _local8;
var _local12 = _local8 * __rowHeight;
var _local11 = _local9 * __rowHeight;
var _local6 = (_local10 ? 1 : -1);
var _local3 = 0;
while (_local3 < __rowCount) {
if (((_local3 < _local8) && (_local10)) || ((_local3 >= _local9) && (!_local10))) {
rows[_local3]._y = rows[_local3]._y + Math.round(_local6 * _local11);
var _local5 = _local3 + (_local6 * _local9);
var _local7 = __vPosition + _local5;
_local4[_local5] = rows[_local3];
_local4[_local5].rowIndex = _local5;
_local4[_local5].drawRow(__dataProvider.getItemAt(_local7), getStateAt(_local7), false);
} else {
rows[_local3]._y = rows[_local3]._y - Math.round(_local6 * _local12);
var _local5 = _local3 - (_local6 * _local8);
_local4[_local5] = rows[_local3];
_local4[_local5].rowIndex = _local5;
}
_local3++;
}
rows = _local4;
_local3 = 0;
while (_local3 < __rowCount) {
rows[_local3].swapDepths(baseRowZ + _local3);
_local3++;
}
}
lastPosition = pos;
super.setVPosition(pos);
}
function setPropertiesAt(index, obj) {
var _local2 = __dataProvider.getItemID(index);
if (_local2 == undefined) {
return(undefined);
}
if (propertyTable == undefined) {
propertyTable = new Object();
}
propertyTable[_local2] = obj;
rows[index - __vPosition].drawRow(__dataProvider.getItemAt(index), getStateAt(index));
}
function getPropertiesAt(index) {
var _local2 = __dataProvider.getItemID(index);
if (_local2 == undefined) {
return(undefined);
}
return(propertyTable[_local2]);
}
function getPropertiesOf(obj) {
var _local2 = obj.getID();
if (_local2 == undefined) {
return(undefined);
}
return(propertyTable[_local2]);
}
function getStyle(styleProp) {
var _local2 = super.getStyle(styleProp);
var _local3 = mx.styles.StyleManager.colorNames[_local2];
if (_local3 != undefined) {
_local2 = _local3;
}
return(_local2);
}
function updateControl(Void) {
var _local2 = 0;
while (_local2 < __rowCount) {
rows[_local2].drawRow(__dataProvider.getItemAt(_local2 + __vPosition), getStateAt(_local2 + __vPosition));
_local2++;
}
delete invUpdateControl;
}
function getStateAt(index) {
return((isSelected(index) ? "selected" : "normal"));
}
function selectRow(rowIndex, transition, allowChangeEvent) {
if (!selectable) {
return(undefined);
}
var _local3 = __vPosition + rowIndex;
var _local8 = __dataProvider.getItemAt(_local3);
var _local5 = rows[rowIndex];
if (_local8 == undefined) {
return(undefined);
}
if (transition == undefined) {
transition = true;
}
if (allowChangeEvent == undefined) {
allowChangeEvent = wasKeySelected;
}
changeFlag = true;
if (((!multipleSelection) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) {
clearSelected(transition);
selectItem(_local3, true);
lastSelected = _local3;
_local5.drawRow(_local5.item, getStateAt(_local3), transition);
} else if (Key.isDown(16) && (multipleSelection)) {
if (lastSelected == undefined) {
lastSelected = _local3;
}
var _local4 = ((lastSelected < _local3) ? 1 : -1);
clearSelected(false);
var _local2 = lastSelected;
while (_local2 != _local3) {
selectItem(_local2, true);
if ((_local2 >= __vPosition) && (_local2 < (__vPosition + __rowCount))) {
rows[_local2 - __vPosition].drawRow(rows[_local2 - __vPosition].item, "selected", false);
}
_local2 = _local2 + _local4;
}
selectItem(_local3, true);
_local5.drawRow(_local5.item, "selected", transition);
} else if (Key.isDown(17)) {
var _local7 = isSelected(_local3);
if ((!multipleSelection) || (wasKeySelected)) {
clearSelected(transition);
}
if (!((!multipleSelection) && (_local7))) {
selectItem(_local3, !_local7);
var _local9 = ((!_local7) ? "selected" : "normal");
_local5.drawRow(_local5.item, _local9, transition);
}
lastSelected = _local3;
}
if (allowChangeEvent) {
dispatchEvent({type:"change"});
}
delete wasKeySelected;
}
function dragScroll(Void) {
clearInterval(dragScrolling);
if (_ymouse < 0) {
setVPosition(__vPosition - 1);
selectRow(0, false);
var _local2 = Math.min((-_ymouse) - 30, 0);
scrollInterval = (((0.593 * _local2) * _local2) + 1) + minScrollInterval;
dragScrolling = setInterval(this, "dragScroll", scrollInterval);
dispatchEvent({type:"scroll", direction:"vertical", position:__vPosition});
} else if (_ymouse > __height) {
var _local3 = __vPosition;
setVPosition(__vPosition + 1);
if (_local3 != __vPosition) {
selectRow((__rowCount - 1) - roundUp, false);
}
var _local2 = Math.min((_ymouse - __height) - 30, 0);
scrollInterval = (((0.593 * _local2) * _local2) + 1) + minScrollInterval;
dragScrolling = setInterval(this, "dragScroll", scrollInterval);
dispatchEvent({type:"scroll", direction:"vertical", position:__vPosition});
} else {
dragScrolling = setInterval(this, "dragScroll", 15);
}
updateAfterEvent();
}
function __onMouseUp(Void) {
clearInterval(dragScrolling);
delete dragScrolling;
delete dragScrolling;
delete isPressed;
delete onMouseUp;
if (!selectable) {
return(undefined);
}
if (changeFlag) {
dispatchEvent({type:"change"});
}
delete changeFlag;
}
function moveSelBy(incr) {
if (!selectable) {
setVPosition(__vPosition + incr);
return(undefined);
}
var _local3 = getSelectedIndex();
if (_local3 == undefined) {
_local3 = -1;
}
var _local2 = _local3 + incr;
_local2 = Math.max(0, _local2);
_local2 = Math.min(getLength() - 1, _local2);
if (_local2 == _local3) {
return(undefined);
}
if ((_local3 < __vPosition) || (_local3 >= (__vPosition + __rowCount))) {
setVPosition(_local3);
}
if ((_local2 >= ((__vPosition + __rowCount) - roundUp)) || (_local2 < __vPosition)) {
setVPosition(__vPosition + incr);
}
wasKeySelected = true;
selectRow(_local2 - __vPosition, false);
}
function keyDown(e) {
if (selectable) {
if (findInputText()) {
return(undefined);
}
}
if (e.code == 40) {
moveSelBy(1);
} else if (e.code == 38) {
moveSelBy(-1);
} else if (e.code == 34) {
if (selectable) {
var _local3 = getSelectedIndex();
if (_local3 == undefined) {
_local3 = 0;
}
setVPosition(_local3);
}
moveSelBy((__rowCount - 1) - roundUp);
} else if (e.code == 33) {
if (selectable) {
var _local3 = getSelectedIndex();
if (_local3 == undefined) {
_local3 = 0;
}
setVPosition(_local3);
}
moveSelBy((1 - __rowCount) + roundUp);
} else if (e.code == 36) {
moveSelBy(-__dataProvider.length);
} else if (e.code == 35) {
moveSelBy(__dataProvider.length);
}
}
function findInputText(Void) {
var _local2 = Key.getAscii();
if ((_local2 >= 33) && (_local2 <= 126)) {
findString(String.fromCharCode(_local2));
return(true);
}
}
function findString(str) {
if (__dataProvider.length == 0) {
return(undefined);
}
var _local4 = getSelectedIndex();
if (_local4 == undefined) {
_local4 = 0;
}
var _local6 = 0;
var _local3 = _local4 + 1;
while (_local3 != _local4) {
var _local2 = __dataProvider.getItemAt(_local3);
if (_local2 instanceof XMLNode) {
_local2 = _local2.attributes[__labelField];
} else if (typeof(_local2) != "string") {
_local2 = String(_local2[__labelField]);
}
_local2 = _local2.substring(0, str.length);
if ((str == _local2) || (str.toUpperCase() == _local2.toUpperCase())) {
_local6 = _local3 - _local4;
break;
}
if (_local3 >= (getLength() - 1)) {
_local3 = -1;
}
_local3++;
}
if (_local6 != 0) {
moveSelBy(_local6);
}
}
function onRowPress(rowIndex) {
if (!enabled) {
return(undefined);
}
isPressed = true;
dragScrolling = setInterval(this, "dragScroll", 15);
onMouseUp = __onMouseUp;
if (!selectable) {
return(undefined);
}
selectRow(rowIndex);
}
function onRowRelease(rowIndex) {
}
function onRowRollOver(rowIndex) {
if (!enabled) {
return(undefined);
}
var _local2 = rows[rowIndex].item;
if (getStyle("useRollOver") && (_local2 != undefined)) {
rows[rowIndex].drawRow(_local2, "highlighted", false);
}
dispatchEvent({type:"itemRollOver", index:rowIndex + __vPosition});
}
function onRowRollOut(rowIndex) {
if (!enabled) {
return(undefined);
}
if (getStyle("useRollOver")) {
rows[rowIndex].drawRow(rows[rowIndex].item, getStateAt(rowIndex + __vPosition), false);
}
dispatchEvent({type:"itemRollOut", index:rowIndex + __vPosition});
}
function onRowDragOver(rowIndex) {
if (((!enabled) || (isPressed != true)) || (!selectable)) {
return(undefined);
}
if (dropEnabled) {
} else if (dragScrolling) {
selectRow(rowIndex, false);
} else {
onMouseUp = __onMouseUp;
onRowPress(rowIndex);
}
}
function onRowDragOut(rowIndex) {
if (!enabled) {
return(undefined);
}
if (dragEnabled) {
} else {
onRowRollOut(rowIndex);
}
}
function init(Void) {
super.init();
tabEnabled = true;
tabChildren = false;
if (__dataProvider == undefined) {
__dataProvider = new Array();
__dataProvider.addEventListener("modelChanged", this);
}
baseRowZ = (topRowZ = 10);
}
function createChildren(Void) {
super.createChildren();
listContent = createEmptyMovieClip("content_mc", CONTENTDEPTH);
invLayoutContent = true;
invalidate();
}
function draw(Void) {
if (invRowHeight) {
delete invRowHeight;
__rowCount = 0;
listContent.removeMovieClip();
listContent = createEmptyMovieClip("content_mc", CONTENTDEPTH);
}
if (invUpdateControl) {
updateControl();
}
border_mc.draw();
}
function invalidateStyle(propName) {
if (isRowStyle[propName]) {
invUpdateControl = true;
invalidate();
} else {
var _local3 = 0;
while (_local3 < __rowCount) {
rows[_local3].invalidateStyle(propName);
_local3++;
}
}
super.invalidateStyle(propName);
}
static var mixIt1 = mx.controls.listclasses.DataSelector.Initialize(mx.controls.listclasses.ScrollSelectList);
static var mixIt2 = mx.controls.listclasses.DataProvider.Initialize(Array);
var CONTENTDEPTH = 100;
var __hPosition = 0;
var __rowRenderer = "SelectableRow";
var __rowHeight = 22;
var __rowCount = 0;
var __labelField = "label";
var minScrollInterval = 30;
var dropEnabled = false;
var dragEnabled = false;
var className = "ScrollSelectList";
var isRowStyle = {styleName:true, backgroundColor:true, selectionColor:true, rollOverColor:true, selectionDisabledColor:true, backgroundDisabledColor:true, textColor:true, textSelectedColor:true, textRollOverColor:true, textDisabledColor:true, alternatingRowColors:true, defaultIcon:true};
var roundUp = 0;
var selectable = true;
var multipleSelection = false;
}
Symbol 135 MovieClip [__Packages.mx.controls.List] Frame 0
class mx.controls.List extends mx.controls.listclasses.ScrollSelectList
{
var border_mc, __labels, setDataProvider, roundUp, __get__rowCount, __dataProvider, __maxHPosition, invScrollProps, invalidate, __vPosition, getViewMetrics, setSize, __width, __rowHeight, totalWidth, totalHeight, displayWidth, __hScrollPolicy, vScroller, __hPosition, listContent, data, mask_mc, __height, __rowCount, invRowHeight, invLayoutContent, setScrollProperties, oldVWidth;
function List () {
super();
}
function setEnabled(v) {
super.setEnabled(v);
border_mc.backgroundColorName = (v ? "backgroundColor" : "backgroundDisabledColor");
border_mc.invalidate();
}
function get labels() {
return(__labels);
}
function set labels(lbls) {
__labels = lbls;
setDataProvider(lbls);
//return(labels);
}
function setVPosition(pos) {
pos = Math.min((__dataProvider.length - __get__rowCount()) + roundUp, pos);
pos = Math.max(0, pos);
super.setVPosition(pos);
}
function setHPosition(pos) {
pos = Math.max(Math.min(__maxHPosition, pos), 0);
super.setHPosition(pos);
hScroll(pos);
}
function setMaxHPosition(pos) {
__maxHPosition = pos;
invScrollProps = true;
invalidate();
}
function setHScrollPolicy(policy) {
if ((policy.toLowerCase() == "auto") && (!autoHScrollAble)) {
return(undefined);
}
super.setHScrollPolicy(policy);
if (policy == "off") {
setHPosition(0);
setVPosition(Math.min((__dataProvider.length - __get__rowCount()) + roundUp, __vPosition));
}
}
function setRowCount(rC) {
if (isNaN(rC)) {
return(undefined);
}
var _local2 = getViewMetrics();
setSize(__width, ((__rowHeight * rC) + _local2.top) + _local2.bottom);
}
function layoutContent(x, y, tW, tH, dW, dH) {
totalWidth = tW;
totalHeight = tH;
displayWidth = dW;
var _local4 = (((__hScrollPolicy == "on") || (__hScrollPolicy == "auto")) ? (Math.max(tW, dW)) : (dW));
super.layoutContent(x, y, _local4, dH);
}
function modelChanged(eventObj) {
super.modelChanged(eventObj);
var _local3 = eventObj.eventName;
if ((((_local3 == "addItems") || (_local3 == "removeItems")) || (_local3 == "updateAll")) || (_local3 == "filterModel")) {
invScrollProps = true;
invalidate("invScrollProps");
}
}
function onScroll(eventObj) {
var _local3 = eventObj.target;
if (_local3 == vScroller) {
setVPosition(_local3.scrollPosition);
} else {
hScroll(_local3.scrollPosition);
}
super.onScroll(eventObj);
}
function hScroll(pos) {
__hPosition = pos;
listContent._x = -pos;
}
function init(Void) {
super.init();
if (labels.length > 0) {
var _local6 = new Array();
var _local3 = 0;
while (_local3 < labels.length) {
_local6.addItem({label:labels[_local3], data:data[_local3]});
_local3++;
}
setDataProvider(_local6);
}
__maxHPosition = 0;
}
function createChildren(Void) {
super.createChildren();
listContent.setMask(mask_mc);
border_mc.move(0, 0);
border_mc.setSize(__width, __height);
}
function getRowCount(Void) {
var _local2 = getViewMetrics();
return(((__rowCount == 0) ? (Math.ceil(((__height - _local2.top) - _local2.bottom) / __rowHeight)) : (__rowCount)));
}
function size(Void) {
super.size();
configureScrolling();
var _local3 = getViewMetrics();
layoutContent(_local3.left, _local3.top, __width + __maxHPosition, totalHeight, (__width - _local3.left) - _local3.right, (__height - _local3.top) - _local3.bottom);
}
function draw(Void) {
if (invRowHeight) {
invScrollProps = true;
super.draw();
listContent.setMask(mask_mc);
invLayoutContent = true;
}
if (invScrollProps) {
configureScrolling();
delete invScrollProps;
}
if (invLayoutContent) {
var _local3 = getViewMetrics();
layoutContent(_local3.left, _local3.top, __width + __maxHPosition, totalHeight, (__width - _local3.left) - _local3.right, (__height - _local3.top) - _local3.bottom);
}
super.draw();
}
function configureScrolling(Void) {
var _local2 = __dataProvider.length;
if (__vPosition > Math.max(0, (_local2 - getRowCount()) + roundUp)) {
setVPosition(Math.max(0, Math.min((_local2 - getRowCount()) + roundUp, __vPosition)));
}
var _local3 = getViewMetrics();
var _local4 = ((__hScrollPolicy != "off") ? (((__maxHPosition + __width) - _local3.left) - _local3.right) : ((__width - _local3.left) - _local3.right));
if (_local2 == undefined) {
_local2 = 0;
}
setScrollProperties(_local4, 1, _local2, __rowHeight);
if (oldVWidth != _local4) {
invLayoutContent = true;
}
oldVWidth = _local4;
}
static var symbolOwner = mx.controls.List;
static var symbolName = "List";
var className = "List";
static var version = "2.0.2.126";
var clipParameters = {rowHeight:1, enabled:1, visible:1, labels:1};
var scrollDepth = 1;
var __vScrollPolicy = "on";
var autoHScrollAble = false;
}
Symbol 232 MovieClip [__Packages.mx.skins.SkinElement] Frame 0
class mx.skins.SkinElement extends MovieClip
{
var _visible, _x, _y, _width, _height;
function SkinElement () {
super();
}
static function registerElement(name, className) {
Object.registerClass(name, ((className == undefined) ? (mx.skins.SkinElement) : (className)));
_global.skinRegistry[name] = true;
}
function __set__visible(visible) {
_visible = visible;
}
function move(x, y) {
_x = x;
_y = y;
}
function setSize(w, h) {
_width = w;
_height = h;
}
}
Symbol 233 MovieClip [__Packages.mx.styles.CSSTextStyles] Frame 0
class mx.styles.CSSTextStyles
{
function CSSTextStyles () {
}
static function addTextStyles(o, bColor) {
o.addProperty("textAlign", function () {
return(this._tf.align);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.align = x;
});
o.addProperty("fontWeight", function () {
return(((this._tf.bold != undefined) ? ((this._tf.bold ? "bold" : "none")) : undefined));
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.bold = x == "bold";
});
if (bColor) {
o.addProperty("color", function () {
return(this._tf.color);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.color = x;
});
}
o.addProperty("fontFamily", function () {
return(this._tf.font);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.font = x;
});
o.addProperty("textIndent", function () {
return(this._tf.indent);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.indent = x;
});
o.addProperty("fontStyle", function () {
return(((this._tf.italic != undefined) ? ((this._tf.italic ? "italic" : "none")) : undefined));
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.italic = x == "italic";
});
o.addProperty("marginLeft", function () {
return(this._tf.leftMargin);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.leftMargin = x;
});
o.addProperty("marginRight", function () {
return(this._tf.rightMargin);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.rightMargin = x;
});
o.addProperty("fontSize", function () {
return(this._tf.size);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.size = x;
});
o.addProperty("textDecoration", function () {
return(((this._tf.underline != undefined) ? ((this._tf.underline ? "underline" : "none")) : undefined));
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.underline = x == "underline";
});
o.addProperty("embedFonts", function () {
return(this._tf.embedFonts);
}, function (x) {
if (this._tf == undefined) {
this._tf = new TextFormat();
}
this._tf.embedFonts = x;
});
}
}
Symbol 234 MovieClip [__Packages.mx.styles.StyleManager] Frame 0
class mx.styles.StyleManager
{
function StyleManager () {
}
static function registerInheritingStyle(styleName) {
inheritingStyles[styleName] = true;
}
static function isInheritingStyle(styleName) {
return(inheritingStyles[styleName] == true);
}
static function registerColorStyle(styleName) {
colorStyles[styleName] = true;
}
static function isColorStyle(styleName) {
return(colorStyles[styleName] == true);
}
static function registerColorName(colorName, colorValue) {
colorNames[colorName] = colorValue;
}
static function isColorName(colorName) {
return(colorNames[colorName] != undefined);
}
static function getColorName(colorName) {
return(colorNames[colorName]);
}
static var inheritingStyles = {color:true, direction:true, fontFamily:true, fontSize:true, fontStyle:true, fontWeight:true, textAlign:true, textIndent:true};
static var colorStyles = {barColor:true, trackColor:true, borderColor:true, buttonColor:true, color:true, dateHeaderColor:true, dateRollOverColor:true, disabledColor:true, fillColor:true, highlightColor:true, scrollTrackColor:true, selectedDateColor:true, shadowColor:true, strokeColor:true, symbolBackgroundColor:true, symbolBackgroundDisabledColor:true, symbolBackgroundPressedColor:true, symbolColor:true, symbolDisabledColor:true, themeColor:true, todayIndicatorColor:true, shadowCapColor:true, borderCapColor:true, focusColor:true};
static var colorNames = {black:0, white:16777215, red:16711680, green:65280, blue:255, magenta:16711935, yellow:16776960, cyan:65535, haloGreen:8453965, haloBlue:2881013, haloOrange:16761344};
static var TextFormatStyleProps = {font:true, size:true, color:true, leftMargin:false, rightMargin:false, italic:true, bold:true, align:true, indent:true, underline:false, embedFonts:false};
static var TextStyleMap = {textAlign:true, fontWeight:true, color:true, fontFamily:true, textIndent:true, fontStyle:true, lineHeight:true, marginLeft:true, marginRight:true, fontSize:true, textDecoration:true, embedFonts:true};
}
Symbol 235 MovieClip [__Packages.mx.styles.CSSStyleDeclaration] Frame 0
class mx.styles.CSSStyleDeclaration
{
var _tf;
function CSSStyleDeclaration () {
}
function __getTextFormat(tf, bAll) {
var _local5 = false;
if (_tf != undefined) {
var _local2;
for (_local2 in mx.styles.StyleManager.TextFormatStyleProps) {
if (bAll || (mx.styles.StyleManager.TextFormatStyleProps[_local2])) {
if (tf[_local2] == undefined) {
var _local3 = _tf[_local2];
if (_local3 != undefined) {
tf[_local2] = _local3;
} else {
_local5 = true;
}
}
}
}
} else {
_local5 = true;
}
return(_local5);
}
function getStyle(styleProp) {
var _local2 = this[styleProp];
var _local3 = mx.styles.StyleManager.getColorName(_local2);
return(((_local3 == undefined) ? (_local2) : (_local3)));
}
static function classConstruct() {
mx.styles.CSSTextStyles.addTextStyles(mx.styles.CSSStyleDeclaration.prototype, true);
return(true);
}
static var classConstructed = classConstruct();
static var CSSTextStylesDependency = mx.styles.CSSTextStyles;
}
Symbol 236 MovieClip [__Packages.mx.skins.Border] Frame 0
class mx.skins.Border extends mx.core.UIObject
{
function Border () {
super();
}
function init(Void) {
super.init();
}
static var symbolName = "Border";
static var symbolOwner = mx.skins.Border;
var className = "Border";
var tagBorder = 0;
var idNames = new Array("border_mc");
}
Symbol 237 MovieClip [__Packages.mx.skins.RectBorder] Frame 0
class mx.skins.RectBorder extends mx.skins.Border
{
var __width, __height, offset, __borderMetrics;
function RectBorder () {
super();
}
function get width() {
return(__width);
}
function get height() {
return(__height);
}
function init(Void) {
super.init();
}
function draw(Void) {
size();
}
function getBorderMetrics(Void) {
var _local2 = offset;
if (__borderMetrics == undefined) {
__borderMetrics = {left:_local2, top:_local2, right:_local2, bottom:_local2};
} else {
__borderMetrics.left = _local2;
__borderMetrics.top = _local2;
__borderMetrics.right = _local2;
__borderMetrics.bottom = _local2;
}
return(__borderMetrics);
}
function get borderMetrics() {
return(getBorderMetrics());
}
function drawBorder(Void) {
}
function size(Void) {
drawBorder();
}
function setColor(Void) {
drawBorder();
}
static var symbolName = "RectBorder";
static var symbolOwner = mx.skins.RectBorder;
static var version = "2.0.2.126";
var className = "RectBorder";
var borderStyleName = "borderStyle";
var borderColorName = "borderColor";
var shadowColorName = "shadowColor";
var highlightColorName = "highlightColor";
var buttonColorName = "buttonColor";
var backgroundColorName = "backgroundColor";
}
Symbol 238 MovieClip [__Packages.mx.managers.DepthManager] Frame 0
class mx.managers.DepthManager
{
var _childCounter, createClassObject, createObject, _parent, swapDepths, _topmost, getDepth;
function DepthManager () {
MovieClip.prototype.createClassChildAtDepth = createClassChildAtDepth;
MovieClip.prototype.createChildAtDepth = createChildAtDepth;
MovieClip.prototype.setDepthTo = setDepthTo;
MovieClip.prototype.setDepthAbove = setDepthAbove;
MovieClip.prototype.setDepthBelow = setDepthBelow;
MovieClip.prototype.findNextAvailableDepth = findNextAvailableDepth;
MovieClip.prototype.shuffleDepths = shuffleDepths;
MovieClip.prototype.getDepthByFlag = getDepthByFlag;
MovieClip.prototype.buildDepthTable = buildDepthTable;
_global.ASSetPropFlags(MovieClip.prototype, "createClassChildAtDepth", 1);
_global.ASSetPropFlags(MovieClip.prototype, "createChildAtDepth", 1);
_global.ASSetPropFlags(MovieClip.prototype, "setDepthTo", 1);
_global.ASSetPropFlags(MovieClip.prototype, "setDepthAbove", 1);
_global.ASSetPropFlags(MovieClip.prototype, "setDepthBelow", 1);
_global.ASSetPropFlags(MovieClip.prototype, "findNextAvailableDepth", 1);
_global.ASSetPropFlags(MovieClip.prototype, "shuffleDepths", 1);
_global.ASSetPropFlags(MovieClip.prototype, "getDepthByFlag", 1);
_global.ASSetPropFlags(MovieClip.prototype, "buildDepthTable", 1);
}
static function sortFunction(a, b) {
if (a.getDepth() > b.getDepth()) {
return(1);
}
return(-1);
}
static function test(depth) {
if (depth == reservedDepth) {
return(false);
}
return(true);
}
static function createClassObjectAtDepth(className, depthSpace, initObj) {
var _local1;
switch (depthSpace) {
case kCursor :
_local1 = holder.createClassChildAtDepth(className, kTopmost, initObj);
break;
case kTooltip :
_local1 = holder.createClassChildAtDepth(className, kTop, initObj);
break;
}
return(_local1);
}
static function createObjectAtDepth(linkageName, depthSpace, initObj) {
var _local1;
switch (depthSpace) {
case kCursor :
_local1 = holder.createChildAtDepth(linkageName, kTopmost, initObj);
break;
case kTooltip :
_local1 = holder.createChildAtDepth(linkageName, kTop, initObj);
break;
}
return(_local1);
}
function createClassChildAtDepth(className, depthFlag, initObj) {
if (_childCounter == undefined) {
_childCounter = 0;
}
var _local3 = buildDepthTable();
var _local2 = getDepthByFlag(depthFlag, _local3);
var _local6 = "down";
if (depthFlag == kBottom) {
_local6 = "up";
}
var _local5;
if (_local3[_local2] != undefined) {
_local5 = _local2;
_local2 = findNextAvailableDepth(_local2, _local3, _local6);
}
var _local4 = createClassObject(className, "depthChild" + (_childCounter++), _local2, initObj);
if (_local5 != undefined) {
_local3[_local2] = _local4;
shuffleDepths(_local4, _local5, _local3, _local6);
}
if (depthFlag == kTopmost) {
_local4._topmost = true;
}
return(_local4);
}
function createChildAtDepth(linkageName, depthFlag, initObj) {
if (_childCounter == undefined) {
_childCounter = 0;
}
var _local3 = buildDepthTable();
var _local2 = getDepthByFlag(depthFlag, _local3);
var _local6 = "down";
if (depthFlag == kBottom) {
_local6 = "up";
}
var _local5;
if (_local3[_local2] != undefined) {
_local5 = _local2;
_local2 = findNextAvailableDepth(_local2, _local3, _local6);
}
var _local4 = createObject(linkageName, "depthChild" + (_childCounter++), _local2, initObj);
if (_local5 != undefined) {
_local3[_local2] = _local4;
shuffleDepths(_local4, _local5, _local3, _local6);
}
if (depthFlag == kTopmost) {
_local4._topmost = true;
}
return(_local4);
}
function setDepthTo(depthFlag) {
var _local2 = _parent.buildDepthTable();
var _local3 = _parent.getDepthByFlag(depthFlag, _local2);
if (_local2[_local3] != undefined) {
shuffleDepths(this, _local3, _local2, undefined);
} else {
swapDepths(_local3);
}
if (depthFlag == kTopmost) {
_topmost = true;
} else {
delete _topmost;
}
}
function setDepthAbove(targetInstance) {
if (targetInstance._parent != _parent) {
return(undefined);
}
var _local2 = targetInstance.getDepth() + 1;
var _local3 = _parent.buildDepthTable();
if ((_local3[_local2] != undefined) && (getDepth() < _local2)) {
_local2 = _local2 - 1;
}
if (_local2 > highestDepth) {
_local2 = highestDepth;
}
if (_local2 == highestDepth) {
_parent.shuffleDepths(this, _local2, _local3, "down");
} else if (_local3[_local2] != undefined) {
_parent.shuffleDepths(this, _local2, _local3, undefined);
} else {
swapDepths(_local2);
}
}
function setDepthBelow(targetInstance) {
if (targetInstance._parent != _parent) {
return(undefined);
}
var _local6 = targetInstance.getDepth() - 1;
var _local3 = _parent.buildDepthTable();
if ((_local3[_local6] != undefined) && (getDepth() > _local6)) {
_local6 = _local6 + 1;
}
var _local4 = lowestDepth + numberOfAuthortimeLayers;
var _local5;
for (_local5 in _local3) {
var _local2 = _local3[_local5];
if (_local2._parent != undefined) {
_local4 = Math.min(_local4, _local2.getDepth());
}
}
if (_local6 < _local4) {
_local6 = _local4;
}
if (_local6 == _local4) {
_parent.shuffleDepths(this, _local6, _local3, "up");
} else if (_local3[_local6] != undefined) {
_parent.shuffleDepths(this, _local6, _local3, undefined);
} else {
swapDepths(_local6);
}
}
function findNextAvailableDepth(targetDepth, depthTable, direction) {
var _local5 = lowestDepth + numberOfAuthortimeLayers;
if (targetDepth < _local5) {
targetDepth = _local5;
}
if (depthTable[targetDepth] == undefined) {
return(targetDepth);
}
var _local2 = targetDepth;
var _local1 = targetDepth;
if (direction == "down") {
while (depthTable[_local1] != undefined) {
_local1--;
}
return(_local1);
}
while (depthTable[_local2] != undefined) {
_local2++;
}
return(_local2);
}
function shuffleDepths(subject, targetDepth, depthTable, direction) {
var _local9 = lowestDepth + numberOfAuthortimeLayers;
var _local8 = _local9;
var _local5;
for (_local5 in depthTable) {
var _local7 = depthTable[_local5];
if (_local7._parent != undefined) {
_local9 = Math.min(_local9, _local7.getDepth());
}
}
if (direction == undefined) {
if (subject.getDepth() > targetDepth) {
direction = "up";
} else {
direction = "down";
}
}
var _local1 = new Array();
for (_local5 in depthTable) {
var _local7 = depthTable[_local5];
if (_local7._parent != undefined) {
_local1.push(_local7);
}
}
_local1.sort(sortFunction);
if (direction == "up") {
var _local3;
var _local11;
do {
if (_local1.length <= 0) {
break;
}
_local3 = _local1.pop();
} while (_local3 != subject);
do {
if (_local1.length <= 0) {
break;
}
_local11 = subject.getDepth();
_local3 = _local1.pop();
var _local4 = _local3.getDepth();
if (_local11 > (_local4 + 1)) {
if (_local4 >= 0) {
subject.swapDepths(_local4 + 1);
} else if ((_local11 > _local8) && (_local4 < _local8)) {
subject.swapDepths(_local8);
}
}
subject.swapDepths(_local3);
} while (_local4 != targetDepth);
} else if (direction == "down") {
var _local3;
do {
if (_local1.length <= 0) {
break;
}
_local3 = _local1.shift();
} while (_local3 != subject);
do {
if (_local1.length <= 0) {
break;
}
var _local11 = _local3.getDepth();
_local3 = _local1.shift();
var _local4 = _local3.getDepth();
if ((_local11 < (_local4 - 1)) && (_local4 > 0)) {
subject.swapDepths(_local4 - 1);
}
subject.swapDepths(_local3);
} while (_local4 != targetDepth);
}
}
function getDepthByFlag(depthFlag, depthTable) {
var _local2 = 0;
if ((depthFlag == kTop) || (depthFlag == kNotopmost)) {
var _local5 = 0;
var _local7 = false;
var _local8;
for (_local8 in depthTable) {
var _local9 = depthTable[_local8];
var _local3 = typeof(_local9);
if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) {
if (_local9.getDepth() <= highestDepth) {
if (!_local9._topmost) {
_local2 = Math.max(_local2, _local9.getDepth());
} else if (!_local7) {
_local5 = _local9.getDepth();
_local7 = true;
} else {
_local5 = Math.min(_local5, _local9.getDepth());
}
}
}
}
_local2 = _local2 + 20;
if (_local7) {
if (_local2 >= _local5) {
_local2 = _local5 - 1;
}
}
} else if (depthFlag == kBottom) {
for (var _local8 in depthTable) {
var _local9 = depthTable[_local8];
var _local3 = typeof(_local9);
if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) {
if (_local9.getDepth() <= highestDepth) {
_local2 = Math.min(_local2, _local9.getDepth());
}
}
}
_local2 = _local2 - 20;
} else if (depthFlag == kTopmost) {
for (var _local8 in depthTable) {
var _local9 = depthTable[_local8];
var _local3 = typeof(_local9);
if ((_local3 == "movieclip") || ((_local3 == "object") && (_local9.__getTextFormat != undefined))) {
if (_local9.getDepth() <= highestDepth) {
_local2 = Math.max(_local2, _local9.getDepth());
}
}
}
_local2 = _local2 + 100;
}
if (_local2 >= highestDepth) {
_local2 = highestDepth;
}
var _local6 = lowestDepth + numberOfAuthortimeLayers;
for (var _local9 in depthTable) {
var _local4 = depthTable[_local9];
if (_local4._parent != undefined) {
_local6 = Math.min(_local6, _local4.getDepth());
}
}
if (_local2 <= _local6) {
_local2 = _local6;
}
return(_local2);
}
function buildDepthTable(Void) {
var _local5 = new Array();
var _local4;
for (_local4 in this) {
var _local2 = this[_local4];
var _local3 = typeof(_local2);
if ((_local3 == "movieclip") || ((_local3 == "object") && (_local2.__getTextFormat != undefined))) {
if (_local2._parent == this) {
_local5[_local2.getDepth()] = _local2;
}
}
}
return(_local5);
}
static var reservedDepth = 1048575;
static var highestDepth = 1048574;
static var lowestDepth = -16383;
static var numberOfAuthortimeLayers = 383;
static var kCursor = 101;
static var kTooltip = 102;
static var kTop = 201;
static var kBottom = 202;
static var kTopmost = 203;
static var kNotopmost = 204;
static var holder = _root.createEmptyMovieClip("reserved", reservedDepth);
static var __depthManager = new mx.managers.DepthManager();
}
Symbol 239 MovieClip [__Packages.mx.events.UIEventDispatcher] Frame 0
class mx.events.UIEventDispatcher extends mx.events.EventDispatcher
{
var dispatchQueue, owner, __sentLoadEvent, __origAddEventListener;
function UIEventDispatcher () {
super();
}
static function addKeyEvents(obj) {
if (obj.keyHandler == undefined) {
var _local1 = (obj.keyHandler = new Object());
_local1.owner = obj;
_local1.onKeyDown = _fEventDispatcher.onKeyDown;
_local1.onKeyUp = _fEventDispatcher.onKeyUp;
}
Key.addListener(obj.keyHandler);
}
static function removeKeyEvents(obj) {
Key.removeListener(obj.keyHandler);
}
static function addLoadEvents(obj) {
if (obj.onLoad == undefined) {
obj.onLoad = _fEventDispatcher.onLoad;
obj.onUnload = _fEventDispatcher.onUnload;
if (obj.getBytesTotal() == obj.getBytesLoaded()) {
obj.doLater(obj, "onLoad");
}
}
}
static function removeLoadEvents(obj) {
delete obj.onLoad;
delete obj.onUnload;
}
static function initialize(obj) {
if (_fEventDispatcher == undefined) {
_fEventDispatcher = new mx.events.UIEventDispatcher();
}
obj.addEventListener = _fEventDispatcher.__addEventListener;
obj.__origAddEventListener = _fEventDispatcher.addEventListener;
obj.removeEventListener = _fEventDispatcher.removeEventListener;
obj.dispatchEvent = _fEventDispatcher.dispatchEvent;
obj.dispatchQueue = _fEventDispatcher.dispatchQueue;
}
function dispatchEvent(eventObj) {
if (eventObj.target == undefined) {
eventObj.target = this;
}
this[eventObj.type + "Handler"](eventObj);
dispatchQueue(mx.events.EventDispatcher, eventObj);
dispatchQueue(this, eventObj);
}
function onKeyDown(Void) {
owner.dispatchEvent({type:"keyDown", code:Key.getCode(), ascii:Key.getAscii(), shiftKey:Key.isDown(16), ctrlKey:Key.isDown(17)});
}
function onKeyUp(Void) {
owner.dispatchEvent({type:"keyUp", code:Key.getCode(), ascii:Key.getAscii(), shiftKey:Key.isDown(16), ctrlKey:Key.isDown(17)});
}
function onLoad(Void) {
if (__sentLoadEvent != true) {
dispatchEvent({type:"load"});
}
__sentLoadEvent = true;
}
function onUnload(Void) {
dispatchEvent({type:"unload"});
}
function __addEventListener(event, handler) {
__origAddEventListener(event, handler);
var _local3 = lowLevelEvents;
for (var _local5 in _local3) {
if (mx.events.UIEventDispatcher[_local5][event] != undefined) {
var _local2 = _local3[_local5][0];
mx.events.UIEventDispatcher[_local2](this);
}
}
}
function removeEventListener(event, handler) {
var _local6 = "__q_" + event;
mx.events.EventDispatcher._removeEventListener(this[_local6], event, handler);
if (this[_local6].length == 0) {
var _local2 = lowLevelEvents;
for (var _local5 in _local2) {
if (mx.events.UIEventDispatcher[_local5][event] != undefined) {
var _local3 = _local2[_local5][1];
mx.events.UIEventDispatcher[_local2[_local5][1]](this);
}
}
}
}
static var keyEvents = {keyDown:1, keyUp:1};
static var loadEvents = {load:1, unload:1};
static var lowLevelEvents = {keyEvents:["addKeyEvents", "removeKeyEvents"], loadEvents:["addLoadEvents", "removeLoadEvents"]};
static var _fEventDispatcher = undefined;
}
Symbol 240 MovieClip [__Packages.mx.core.ExternalContent] Frame 0
class mx.core.ExternalContent
{
var createObject, numChildren, prepList, doLater, loadList, dispatchEvent, loadedList, childLoaded;
function ExternalContent () {
}
function loadExternal(url, placeholderClassName, instanceName, depth, initProps) {
var _local2;
_local2 = createObject(placeholderClassName, instanceName, depth, initProps);
this[mx.core.View.childNameBase + numChildren] = _local2;
if (prepList == undefined) {
prepList = new Object();
}
prepList[instanceName] = {obj:_local2, url:url, complete:false, initProps:initProps};
prepareToLoadMovie(_local2);
return(_local2);
}
function prepareToLoadMovie(obj) {
obj.unloadMovie();
doLater(this, "waitForUnload");
}
function waitForUnload() {
var _local3;
for (_local3 in prepList) {
var _local2 = prepList[_local3];
if (_local2.obj.getBytesTotal() == 0) {
if (loadList == undefined) {
loadList = new Object();
}
loadList[_local3] = _local2;
_local2.obj.loadMovie(_local2.url);
delete prepList[_local3];
doLater(this, "checkLoadProgress");
} else {
doLater(this, "waitForUnload");
}
}
}
function checkLoadProgress() {
var _local8 = false;
var _local3;
for (_local3 in loadList) {
var _local2 = loadList[_local3];
_local2.loaded = _local2.obj.getBytesLoaded();
_local2.total = _local2.obj.getBytesTotal();
if (_local2.total > 0) {
_local2.obj._visible = false;
dispatchEvent({type:"progress", target:_local2.obj, current:_local2.loaded, total:_local2.total});
if (_local2.loaded == _local2.total) {
if (loadedList == undefined) {
loadedList = new Object();
}
loadedList[_local3] = _local2;
delete loadList[_local3];
doLater(this, "contentLoaded");
}
} else if (_local2.total == -1) {
if (_local2.failedOnce != undefined) {
_local2.failedOnce++;
if (_local2.failedOnce > 3) {
dispatchEvent({type:"complete", target:_local2.obj, current:_local2.loaded, total:_local2.total});
delete loadList[_local3];
}
} else {
_local2.failedOnce = 0;
}
}
_local8 = true;
}
if (_local8) {
doLater(this, "checkLoadProgress");
}
}
function contentLoaded() {
var _local4;
for (_local4 in loadedList) {
var _local2 = loadedList[_local4];
_local2.obj._visible = true;
_local2.obj._complete = true;
var _local3;
for (_local3 in _local2.initProps) {
_local2.obj[_local3] = _local2.initProps[_local3];
}
childLoaded(_local2.obj);
dispatchEvent({type:"complete", target:_local2.obj, current:_local2.loaded, total:_local2.total});
delete loadedList[_local4];
}
}
function convertToUIObject(obj) {
if (obj.setSize == undefined) {
var _local2 = mx.core.UIObject.prototype;
obj.addProperty("width", _local2.__get__width, null);
obj.addProperty("height", _local2.__get__height, null);
obj.addProperty("left", _local2.__get__left, null);
obj.addProperty("x", _local2.__get__x, null);
obj.addProperty("top", _local2.__get__top, null);
obj.addProperty("y", _local2.__get__y, null);
obj.addProperty("right", _local2.__get__right, null);
obj.addProperty("bottom", _local2.__get__bottom, null);
obj.addProperty("visible", _local2.__get__visible, _local2.__set__visible);
obj.move = mx.core.UIObject.prototype.move;
obj.setSize = mx.core.UIObject.prototype.setSize;
obj.size = mx.core.UIObject.prototype.size;
mx.events.UIEventDispatcher.initialize(obj);
}
}
static function enableExternalContent() {
}
static function classConstruct() {
var _local1 = mx.core.View.prototype;
var _local2 = mx.core.ExternalContent.prototype;
_local1.loadExternal = _local2.loadExternal;
_local1.prepareToLoadMovie = _local2.prepareToLoadMovie;
_local1.waitForUnload = _local2.waitForUnload;
_local1.checkLoadProgress = _local2.checkLoadProgress;
_local1.contentLoaded = _local2.contentLoaded;
_local1.convertToUIObject = _local2.convertToUIObject;
return(true);
}
static var classConstructed = classConstruct();
static var ViewDependency = mx.core.View;
}
Symbol 241 MovieClip [__Packages.mx.controls.SimpleButton] Frame 0
class mx.controls.SimpleButton extends mx.core.UIComponent
{
static var emphasizedStyleDeclaration;
var preset, boundingBox_mc, useHandCursor, skinName, linkLength, iconName, destroyObject, __width, _width, __height, _height, __emphaticStyleName, styleName, enabled, invalidate, pressFocus, dispatchEvent, autoRepeat, interval, getStyle, releaseFocus, createLabel, invalidateStyle;
function SimpleButton () {
super();
}
function init(Void) {
super.init();
if (preset == undefined) {
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
useHandCursor = false;
}
function createChildren(Void) {
if (preset != undefined) {
var _local2 = this[idNames[preset]];
this[refNames[preset]] = _local2;
skinName = _local2;
if (falseOverSkin.length == 0) {
rolloverSkin = fus;
}
if (falseOverIcon.length == 0) {
rolloverIcon = fui;
}
initializing = false;
} else if (__state == true) {
setStateVar(true);
} else {
if (falseOverSkin.length == 0) {
rolloverSkin = fus;
}
if (falseOverIcon.length == 0) {
rolloverIcon = fui;
}
}
}
function setIcon(tag, linkageName) {
return(setSkin(tag + 8, linkageName));
}
function changeIcon(tag, linkageName) {
linkLength = linkageName.length;
var _local2 = stateNames[tag] + "Icon";
this[_local2] = linkageName;
this[idNames[tag + 8]] = _local2;
setStateVar(getState());
}
function changeSkin(tag, linkageName) {
var _local2 = stateNames[tag] + "Skin";
this[_local2] = linkageName;
this[idNames[tag]] = _local2;
setStateVar(getState());
}
function viewIcon(varName) {
var _local4 = varName + "Icon";
var _local3 = this[_local4];
if (typeof(_local3) == "string") {
var _local5 = _local3;
if (__emphasized) {
if (this[_local3 + "Emphasized"].length > 0) {
_local3 = _local3 + "Emphasized";
}
}
if (this[_local3].length == 0) {
return(undefined);
}
_local3 = setIcon(tagMap[_local5], this[_local3]);
if ((_local3 == undefined) && (_global.isLivePreview)) {
_local3 = setIcon(0, "ButtonIcon");
}
this[_local4] = _local3;
}
iconName._visible = false;
iconName = _local3;
iconName._visible = true;
}
function removeIcons() {
var _local3 = 0;
while (_local3 < 2) {
var _local2 = 8;
while (_local2 < 16) {
destroyObject(idNames[_local2]);
this[stateNames[_local2 - 8] + "Icon"] = "";
_local2++;
}
_local3++;
}
refresh();
}
function setSkin(tag, linkageName, initobj) {
var _local3 = super.setSkin(tag, linkageName, ((initobj != undefined) ? (initobj) : ({styleName:this})));
calcSize(tag, _local3);
return(_local3);
}
function calcSize(Void) {
__width = _width;
__height = _height;
}
function viewSkin(varName, initObj) {
var _local3 = varName + "Skin";
var _local2 = this[_local3];
if (typeof(_local2) == "string") {
var _local4 = _local2;
if (__emphasized) {
if (this[_local2 + "Emphasized"].length > 0) {
_local2 = _local2 + "Emphasized";
}
}
if (this[_local2].length == 0) {
return(undefined);
}
_local2 = setSkin(tagMap[_local4], this[_local2], ((initObj != undefined) ? (initObj) : ({styleName:this})));
this[_local3] = _local2;
}
skinName._visible = false;
skinName = _local2;
skinName._visible = true;
}
function showEmphasized(e) {
if (e && (!__emphatic)) {
if (emphasizedStyleDeclaration != undefined) {
__emphaticStyleName = styleName;
styleName = emphasizedStyleDeclaration;
}
__emphatic = true;
} else {
if (__emphatic) {
styleName = __emphaticStyleName;
}
__emphatic = false;
}
}
function refresh(Void) {
var _local2 = getState();
if (enabled == false) {
viewIcon("disabled");
viewSkin("disabled");
} else {
viewSkin(phase);
viewIcon(phase);
}
setView(phase == "down");
iconName.enabled = enabled;
}
function setView(offset) {
if (iconName == undefined) {
return(undefined);
}
var _local2 = (offset ? (btnOffset) : 0);
iconName._x = ((__width - iconName._width) / 2) + _local2;
iconName._y = ((__height - iconName._height) / 2) + _local2;
}
function setStateVar(state) {
if (state) {
if (trueOverSkin.length == 0) {
rolloverSkin = tus;
} else {
rolloverSkin = trs;
}
if (trueOverIcon.length == 0) {
rolloverIcon = tui;
} else {
rolloverIcon = tri;
}
upSkin = tus;
downSkin = tds;
disabledSkin = dts;
upIcon = tui;
downIcon = tdi;
disabledIcon = dti;
} else {
if (falseOverSkin.length == 0) {
rolloverSkin = fus;
} else {
rolloverSkin = frs;
}
if (falseOverIcon.length == 0) {
rolloverIcon = fui;
} else {
rolloverIcon = fri;
}
upSkin = fus;
downSkin = fds;
disabledSkin = dfs;
upIcon = fui;
downIcon = fdi;
disabledIcon = dfi;
}
__state = state;
}
function setState(state) {
if (state != __state) {
setStateVar(state);
invalidate();
}
}
function size(Void) {
refresh();
}
function draw(Void) {
if (initializing) {
initializing = false;
skinName.visible = true;
iconName.visible = true;
}
size();
}
function getState(Void) {
return(__state);
}
function setToggle(val) {
__toggle = val;
if (__toggle == false) {
setState(false);
}
}
function getToggle(Void) {
return(__toggle);
}
function set toggle(val) {
setToggle(val);
//return(toggle);
}
function get toggle() {
return(getToggle());
}
function set value(val) {
setSelected(val);
//return(value);
}
function get value() {
return(getSelected());
}
function set selected(val) {
setSelected(val);
//return(selected);
}
function get selected() {
return(getSelected());
}
function setSelected(val) {
if (__toggle) {
setState(val);
} else {
setState((initializing ? (val) : (__state)));
}
}
function getSelected() {
return(__state);
}
function setEnabled(val) {
if (enabled != val) {
super.setEnabled(val);
invalidate();
}
}
function onPress(Void) {
pressFocus();
phase = "down";
refresh();
dispatchEvent({type:"buttonDown"});
if (autoRepeat) {
interval = setInterval(this, "onPressDelay", getStyle("repeatDelay"));
}
}
function onPressDelay(Void) {
dispatchEvent({type:"buttonDown"});
if (autoRepeat) {
clearInterval(interval);
interval = setInterval(this, "onPressRepeat", getStyle("repeatInterval"));
}
}
function onPressRepeat(Void) {
dispatchEvent({type:"buttonDown"});
updateAfterEvent();
}
function onRelease(Void) {
releaseFocus();
phase = "rollover";
if (interval != undefined) {
clearInterval(interval);
delete interval;
}
if (getToggle()) {
setState(!getState());
} else {
refresh();
}
dispatchEvent({type:"click"});
}
function onDragOut(Void) {
phase = "up";
refresh();
dispatchEvent({type:"buttonDragOut"});
}
function onDragOver(Void) {
if (phase != "up") {
onPress();
return(undefined);
}
phase = "down";
refresh();
}
function onReleaseOutside(Void) {
releaseFocus();
phase = "up";
if (interval != undefined) {
clearInterval(interval);
delete interval;
}
}
function onRollOver(Void) {
phase = "rollover";
refresh();
}
function onRollOut(Void) {
phase = "up";
refresh();
}
function getLabel(Void) {
return(fui.text);
}
function setLabel(val) {
if (typeof(fui) == "string") {
createLabel("fui", 8, val);
fui.styleName = this;
} else {
fui.text = val;
}
var _local4 = fui._getTextFormat();
var _local2 = _local4.getTextExtent2(val);
fui._width = _local2.width + 5;
fui._height = _local2.height + 5;
iconName = fui;
setView(__state);
}
function get emphasized() {
return(__emphasized);
}
function set emphasized(val) {
__emphasized = val;
var _local2 = 0;
while (_local2 < 8) {
this[idNames[_local2]] = stateNames[_local2] + "Skin";
if (typeof(this[idNames[_local2 + 8]]) == "movieclip") {
this[idNames[_local2 + 8]] = stateNames[_local2] + "Icon";
}
_local2++;
}
showEmphasized(__emphasized);
setStateVar(__state);
invalidateStyle();
//return(emphasized);
}
function keyDown(e) {
if (e.code == 32) {
onPress();
}
}
function keyUp(e) {
if (e.code == 32) {
onRelease();
}
}
function onKillFocus(newFocus) {
super.onKillFocus();
if (phase != "up") {
phase = "up";
refresh();
}
}
static var symbolName = "SimpleButton";
static var symbolOwner = mx.controls.SimpleButton;
static var version = "2.0.2.126";
var className = "SimpleButton";
var style3dInset = 4;
var btnOffset = 1;
var __toggle = false;
var __state = false;
var __emphasized = false;
var __emphatic = false;
static var falseUp = 0;
static var falseDown = 1;
static var falseOver = 2;
static var falseDisabled = 3;
static var trueUp = 4;
static var trueDown = 5;
static var trueOver = 6;
static var trueDisabled = 7;
var falseUpSkin = "SimpleButtonUp";
var falseDownSkin = "SimpleButtonIn";
var falseOverSkin = "";
var falseDisabledSkin = "SimpleButtonUp";
var trueUpSkin = "SimpleButtonIn";
var trueDownSkin = "";
var trueOverSkin = "";
var trueDisabledSkin = "SimpleButtonIn";
var falseUpIcon = "";
var falseDownIcon = "";
var falseOverIcon = "";
var falseDisabledIcon = "";
var trueUpIcon = "";
var trueDownIcon = "";
var trueOverIcon = "";
var trueDisabledIcon = "";
var phase = "up";
var fui = "falseUpIcon";
var fus = "falseUpSkin";
var fdi = "falseDownIcon";
var fds = "falseDownSkin";
var frs = "falseOverSkin";
var fri = "falseOverIcon";
var dfi = "falseDisabledIcon";
var dfs = "falseDisabledSkin";
var tui = "trueUpIcon";
var tus = "trueUpSkin";
var tdi = "trueDownIcon";
var tds = "trueDownSkin";
var trs = "trueOverSkin";
var tri = "trueOverIcon";
var dts = "trueDisabledSkin";
var dti = "trueDisabledIcon";
var rolloverSkin = mx.controls.SimpleButton.prototype.frs;
var rolloverIcon = mx.controls.SimpleButton.prototype.fri;
var upSkin = mx.controls.SimpleButton.prototype.fus;
var downSkin = mx.controls.SimpleButton.prototype.fds;
var disabledSkin = mx.controls.SimpleButton.prototype.dfs;
var upIcon = mx.controls.SimpleButton.prototype.fui;
var downIcon = mx.controls.SimpleButton.prototype.fdi;
var disabledIcon = mx.controls.SimpleButton.prototype.dfi;
var initializing = true;
var idNames = ["fus", "fds", "frs", "dfs", "tus", "tds", "trs", "dts", "fui", "fdi", "fri", "dfi", "tui", "tdi", "tri", "dti"];
var stateNames = ["falseUp", "falseDown", "falseOver", "falseDisabled", "trueUp", "trueDown", "trueOver", "trueDisabled"];
var refNames = ["upSkin", "downSkin", "rolloverSkin", "disabledSkin"];
var tagMap = {falseUpSkin:0, falseDownSkin:1, falseOverSkin:2, falseDisabledSkin:3, trueUpSkin:4, trueDownSkin:5, trueOverSkin:6, trueDisabledSkin:7, falseUpIcon:0, falseDownIcon:1, falseOverIcon:2, falseDisabledIcon:3, trueUpIcon:4, trueDownIcon:5, trueOverIcon:6, trueDisabledIcon:7};
}
Symbol 242 MovieClip [__Packages.mx.skins.CustomBorder] Frame 0
class mx.skins.CustomBorder extends mx.skins.Border
{
var __width, __height, l_mc, setSkin, minHeight, minWidth, m_mc, r_mc;
function CustomBorder () {
super();
}
function get width() {
return(__width);
}
function get height() {
return(__height);
}
function init(Void) {
super.init();
}
function createChildren(Void) {
}
function draw(Void) {
if (l_mc == undefined) {
var _local2 = setSkin(tagL, leftSkin);
if (horizontal) {
minHeight = l_mc._height;
minWidth = l_mc._width;
} else {
minHeight = l_mc._height;
minWidth = l_mc._width;
}
}
if (m_mc == undefined) {
setSkin(tagM, middleSkin);
if (horizontal) {
minHeight = m_mc._height;
minWidth = minWidth + m_mc._width;
} else {
minHeight = minHeight + m_mc._height;
minWidth = m_mc._width;
}
}
if (r_mc == undefined) {
setSkin(tagR, rightSkin);
if (horizontal) {
minHeight = r_mc._height;
minWidth = minWidth + r_mc._width;
} else {
minHeight = minHeight + r_mc._height;
minWidth = r_mc._width;
}
}
size();
}
function size(Void) {
l_mc.move(0, 0);
if (horizontal) {
r_mc.move(width - r_mc.width, 0);
m_mc.move(l_mc.width, 0);
m_mc.setSize(r_mc.x - m_mc.x, m_mc.height);
} else {
r_mc.move(0, height - r_mc.height, 0);
m_mc.move(0, l_mc.height);
m_mc.setSize(m_mc.width, r_mc.y - m_mc.y);
}
}
static var symbolName = "CustomBorder";
static var symbolOwner = mx.skins.CustomBorder;
static var version = "2.0.2.126";
var className = "CustomBorder";
static var tagL = 0;
static var tagM = 1;
static var tagR = 2;
var idNames = new Array("l_mc", "m_mc", "r_mc");
var leftSkin = "F3PieceLeft";
var middleSkin = "F3PieceMiddle";
var rightSkin = "F3PieceRight";
var horizontal = true;
}
Symbol 243 MovieClip [__Packages.mx.controls.scrollClasses.ScrollThumb] Frame 0
class mx.controls.scrollClasses.ScrollThumb extends mx.skins.CustomBorder
{
var useHandCursor, ymin, ymax, datamin, datamax, scrollMove, lastY, _ymouse, _y, _parent, onMouseMove, grip_mc, setSkin, gripSkin, __get__width, __get__height;
function ScrollThumb () {
super();
}
function createChildren(Void) {
super.createChildren();
useHandCursor = false;
}
function setRange(_ymin, _ymax, _datamin, _datamax) {
ymin = _ymin;
ymax = _ymax;
datamin = _datamin;
datamax = _datamax;
}
function dragThumb(Void) {
scrollMove = _ymouse - lastY;
scrollMove = scrollMove + _y;
if (scrollMove < ymin) {
scrollMove = ymin;
} else if (scrollMove > ymax) {
scrollMove = ymax;
}
_parent.isScrolling = true;
_y = scrollMove;
var _local2 = Math.round(((datamax - datamin) * (_y - ymin)) / (ymax - ymin)) + datamin;
_parent.scrollPosition = _local2;
_parent.dispatchScrollEvent("ThumbTrack");
updateAfterEvent();
}
function stopDragThumb(Void) {
_parent.isScrolling = false;
_parent.dispatchScrollEvent("ThumbPosition");
_parent.dispatchScrollChangedEvent();
delete onMouseMove;
}
function onPress(Void) {
_parent.pressFocus();
lastY = _ymouse;
onMouseMove = dragThumb;
super.onPress();
}
function onRelease(Void) {
_parent.releaseFocus();
stopDragThumb();
super.onRelease();
}
function onReleaseOutside(Void) {
_parent.releaseFocus();
stopDragThumb();
super.onReleaseOutside();
}
function draw() {
super.draw();
if (grip_mc == undefined) {
setSkin(3, gripSkin);
}
}
function size() {
super.size();
grip_mc.move((__get__width() - grip_mc.width) / 2, (__get__height() - grip_mc.height) / 2);
}
static var symbolOwner = mx.skins.CustomBorder.symbolOwner;
var className = "ScrollThumb";
var btnOffset = 0;
var horizontal = false;
var idNames = new Array("l_mc", "m_mc", "r_mc", "grip_mc");
}
Symbol 244 MovieClip [__Packages.mx.controls.scrollClasses.ScrollBar] Frame 0
class mx.controls.scrollClasses.ScrollBar extends mx.core.UIComponent
{
var isScrolling, scrollTrack_mc, scrollThumb_mc, __height, tabEnabled, focusEnabled, boundingBox_mc, setSkin, upArrow_mc, _minHeight, _minWidth, downArrow_mc, createObject, createClassObject, enabled, _height, dispatchEvent, minMode, maxMode, plusMode, minusMode, _parent, getStyle, scrolling, _ymouse;
function ScrollBar () {
super();
}
function get scrollPosition() {
return(_scrollPosition);
}
function set scrollPosition(pos) {
_scrollPosition = pos;
if (isScrolling != true) {
pos = Math.min(pos, maxPos);
pos = Math.max(pos, minPos);
var _local3 = (((pos - minPos) * (scrollTrack_mc.height - scrollThumb_mc._height)) / (maxPos - minPos)) + scrollTrack_mc.top;
scrollThumb_mc.move(0, _local3);
}
//return(scrollPosition);
}
function get pageScrollSize() {
return(largeScroll);
}
function set pageScrollSize(lScroll) {
largeScroll = lScroll;
//return(pageScrollSize);
}
function set lineScrollSize(sScroll) {
smallScroll = sScroll;
//return(lineScrollSize);
}
function get lineScrollSize() {
return(smallScroll);
}
function get virtualHeight() {
return(__height);
}
function init(Void) {
super.init();
_scrollPosition = 0;
tabEnabled = false;
focusEnabled = false;
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
function createChildren(Void) {
if (scrollTrack_mc == undefined) {
setSkin(skinIDTrack, scrollTrackName);
}
scrollTrack_mc.visible = false;
var _local3 = new Object();
_local3.enabled = false;
_local3.preset = mx.controls.SimpleButton.falseDisabled;
_local3.initProperties = 0;
_local3.autoRepeat = true;
_local3.tabEnabled = false;
var _local2;
if (upArrow_mc == undefined) {
_local2 = createButton(upArrowName, "upArrow_mc", skinIDUpArrow, _local3);
}
_local2.buttonDownHandler = onUpArrow;
_local2.clickHandler = onScrollChanged;
_minHeight = _local2.height;
_minWidth = _local2.width;
if (downArrow_mc == undefined) {
_local2 = createButton(downArrowName, "downArrow_mc", skinIDDownArrow, _local3);
}
_local2.buttonDownHandler = onDownArrow;
_local2.clickHandler = onScrollChanged;
_minHeight = _minHeight + _local2.height;
}
function createButton(linkageName, id, skinID, o) {
if (skinID == skinIDUpArrow) {
o.falseUpSkin = upArrowUpName;
o.falseDownSkin = upArrowDownName;
o.falseOverSkin = upArrowOverName;
} else {
o.falseUpSkin = downArrowUpName;
o.falseDownSkin = downArrowDownName;
o.falseOverSkin = downArrowOverName;
}
var _local3 = createObject(linkageName, id, skinID, o);
this[id].visible = false;
this[id].useHandCursor = false;
return(_local3);
}
function createThumb(Void) {
var _local2 = new Object();
_local2.validateNow = true;
_local2.tabEnabled = false;
_local2.leftSkin = thumbTopName;
_local2.middleSkin = thumbMiddleName;
_local2.rightSkin = thumbBottomName;
_local2.gripSkin = thumbGripName;
createClassObject(mx.controls.scrollClasses.ScrollThumb, "scrollThumb_mc", skinIDThumb, _local2);
}
function setScrollProperties(pSize, mnPos, mxPos, ls) {
var _local4;
var _local2 = scrollTrack_mc;
pageSize = pSize;
largeScroll = (((ls != undefined) && (ls > 0)) ? (ls) : (pSize));
minPos = Math.max(mnPos, 0);
maxPos = Math.max(mxPos, 0);
_scrollPosition = Math.max(minPos, _scrollPosition);
_scrollPosition = Math.min(maxPos, _scrollPosition);
if (((maxPos - minPos) > 0) && (enabled)) {
var _local5 = _scrollPosition;
if (!initializing) {
upArrow_mc.enabled = true;
downArrow_mc.enabled = true;
}
_local2.onPress = (_local2.onDragOver = startTrackScroller);
_local2.onRelease = releaseScrolling;
_local2.onDragOut = (_local2.stopScrolling = stopScrolling);
_local2.onReleaseOutside = releaseScrolling;
_local2.useHandCursor = false;
if (scrollThumb_mc == undefined) {
createThumb();
}
var _local3 = scrollThumb_mc;
if (scrollTrackOverName.length > 0) {
_local2.onRollOver = trackOver;
_local2.onRollOut = trackOut;
}
_local4 = (pageSize / ((maxPos - minPos) + pageSize)) * _local2.height;
if (_local4 < _local3.minHeight) {
if (_local2.height < _local3.minHeight) {
_local3.__set__visible(false);
} else {
_local4 = _local3.minHeight;
_local3.__set__visible(true);
_local3.setSize(_minWidth, _local3.minHeight + 0);
}
} else {
_local3.__set__visible(true);
_local3.setSize(_minWidth, _local4);
}
_local3.setRange(upArrow_mc.__get__height() + 0, (virtualHeight - downArrow_mc.__get__height()) - _local3.__get__height(), minPos, maxPos);
_local5 = Math.min(_local5, maxPos);
scrollPosition = (Math.max(_local5, minPos));
} else {
scrollThumb_mc.__set__visible(false);
if (!initializing) {
upArrow_mc.enabled = false;
downArrow_mc.enabled = false;
}
delete _local2.onPress;
delete _local2.onDragOver;
delete _local2.onRelease;
delete _local2.onDragOut;
delete _local2.onRollOver;
delete _local2.onRollOut;
delete _local2.onReleaseOutside;
}
if (initializing) {
scrollThumb_mc.__set__visible(false);
}
}
function setEnabled(enabledFlag) {
super.setEnabled(enabledFlag);
setScrollProperties(pageSize, minPos, maxPos, largeScroll);
}
function draw(Void) {
if (initializing) {
initializing = false;
scrollTrack_mc.visible = true;
upArrow_mc.__set__visible(true);
downArrow_mc.__set__visible(true);
}
size();
}
function size(Void) {
if (_height == 1) {
return(undefined);
}
if (upArrow_mc == undefined) {
return(undefined);
}
var _local3 = upArrow_mc.__get__height();
var _local2 = downArrow_mc.__get__height();
upArrow_mc.move(0, 0);
var _local4 = scrollTrack_mc;
_local4._y = _local3;
_local4._height = (virtualHeight - _local3) - _local2;
downArrow_mc.move(0, virtualHeight - _local2);
setScrollProperties(pageSize, minPos, maxPos, largeScroll);
}
function dispatchScrollEvent(detail) {
dispatchEvent({type:"scroll", detail:detail});
}
function isScrollBarKey(k) {
if (k == 36) {
if (scrollPosition != 0) {
scrollPosition = (0);
dispatchScrollEvent(minMode);
}
return(true);
}
if (k == 35) {
if (scrollPosition < maxPos) {
scrollPosition = (maxPos);
dispatchScrollEvent(maxMode);
}
return(true);
}
return(false);
}
function scrollIt(inc, mode) {
var _local3 = smallScroll;
if (inc != "Line") {
_local3 = ((largeScroll == 0) ? (pageSize) : (largeScroll));
}
var _local2 = _scrollPosition + (mode * _local3);
if (_local2 > maxPos) {
_local2 = maxPos;
} else if (_local2 < minPos) {
_local2 = minPos;
}
if (scrollPosition != _local2) {
scrollPosition = (_local2);
var _local4 = ((mode < 0) ? (minusMode) : (plusMode));
dispatchScrollEvent(inc + _local4);
}
}
function startTrackScroller(Void) {
_parent.pressFocus();
if (_parent.scrollTrackDownName.length > 0) {
if (_parent.scrollTrackDown_mc == undefined) {
_parent.setSkin(skinIDTrackDown, scrollTrackDownName);
} else {
_parent.scrollTrackDown_mc.visible = true;
}
}
_parent.trackScroller();
_parent.scrolling = setInterval(_parent, "scrollInterval", getStyle("repeatDelay"), "Page", -1);
}
function scrollInterval(inc, mode) {
clearInterval(scrolling);
if (inc == "Page") {
trackScroller();
} else {
scrollIt(inc, mode);
}
scrolling = setInterval(this, "scrollInterval", getStyle("repeatInterval"), inc, mode);
}
function trackScroller(Void) {
if ((scrollThumb_mc._y + scrollThumb_mc.__get__height()) < _ymouse) {
scrollIt("Page", 1);
} else if (scrollThumb_mc._y > _ymouse) {
scrollIt("Page", -1);
}
}
function dispatchScrollChangedEvent(Void) {
dispatchEvent({type:"scrollChanged"});
}
function stopScrolling(Void) {
clearInterval(_parent.scrolling);
_parent.scrollTrackDown_mc.visible = false;
}
function releaseScrolling(Void) {
_parent.releaseFocus();
stopScrolling();
_parent.dispatchScrollChangedEvent();
}
function trackOver(Void) {
if (_parent.scrollTrackOverName.length > 0) {
if (_parent.scrollTrackOver_mc == undefined) {
_parent.setSkin(skinIDTrackOver, scrollTrackOverName);
} else {
_parent.scrollTrackOver_mc.visible = true;
}
}
}
function trackOut(Void) {
_parent.scrollTrackOver_mc.visible = false;
}
function onUpArrow(Void) {
_parent.scrollIt("Line", -1);
}
function onDownArrow(Void) {
_parent.scrollIt("Line", 1);
}
function onScrollChanged(Void) {
_parent.dispatchScrollChangedEvent();
}
static var symbolOwner = mx.core.UIComponent;
var className = "ScrollBar";
var minPos = 0;
var maxPos = 0;
var pageSize = 0;
var largeScroll = 0;
var smallScroll = 1;
var _scrollPosition = 0;
var scrollTrackName = "ScrollTrack";
var scrollTrackOverName = "";
var scrollTrackDownName = "";
var upArrowName = "BtnUpArrow";
var upArrowUpName = "ScrollUpArrowUp";
var upArrowOverName = "ScrollUpArrowOver";
var upArrowDownName = "ScrollUpArrowDown";
var downArrowName = "BtnDownArrow";
var downArrowUpName = "ScrollDownArrowUp";
var downArrowOverName = "ScrollDownArrowOver";
var downArrowDownName = "ScrollDownArrowDown";
var thumbTopName = "ScrollThumbTopUp";
var thumbMiddleName = "ScrollThumbMiddleUp";
var thumbBottomName = "ScrollThumbBottomUp";
var thumbGripName = "ScrollThumbGripUp";
static var skinIDTrack = 0;
static var skinIDTrackOver = 1;
static var skinIDTrackDown = 2;
static var skinIDUpArrow = 3;
static var skinIDDownArrow = 4;
static var skinIDThumb = 5;
var idNames = new Array("scrollTrack_mc", "scrollTrackOver_mc", "scrollTrackDown_mc", "upArrow_mc", "downArrow_mc");
var clipParameters = {minPos:1, maxPos:1, pageSize:1, scrollPosition:1, lineScrollSize:1, pageScrollSize:1, visible:1, enabled:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.scrollClasses.ScrollBar.prototype.clipParameters, mx.core.UIComponent.prototype.clipParameters);
var initializing = true;
}
Symbol 245 MovieClip [__Packages.mx.effects.Tween] Frame 0
class mx.effects.Tween extends Object
{
static var IntervalToken;
var arrayMode, listener, initVal, endVal, startTime, updateFunc, endFunc, ID;
function Tween (listenerObj, init, end, dur) {
super();
if (listenerObj == undefined) {
return;
}
if (typeof(init) != "number") {
arrayMode = true;
}
listener = listenerObj;
initVal = init;
endVal = end;
if (dur != undefined) {
duration = dur;
}
startTime = getTimer();
if (duration == 0) {
endTween();
} else {
AddTween(this);
}
}
static function AddTween(tween) {
tween.ID = ActiveTweens.length;
ActiveTweens.push(tween);
if (IntervalToken == undefined) {
Dispatcher.DispatchTweens = DispatchTweens;
IntervalToken = setInterval(Dispatcher, "DispatchTweens", Interval);
}
}
static function RemoveTweenAt(index) {
var _local2 = ActiveTweens;
if (((index >= _local2.length) || (index < 0)) || (index == undefined)) {
return(undefined);
}
_local2.splice(index, 1);
var _local4 = _local2.length;
var _local1 = index;
while (_local1 < _local4) {
_local2[_local1].ID--;
_local1++;
}
if (_local4 == 0) {
clearInterval(IntervalToken);
delete IntervalToken;
}
}
static function DispatchTweens(Void) {
var _local2 = ActiveTweens;
var _local3 = _local2.length;
var _local1 = 0;
while (_local1 < _local3) {
_local2[_local1].doInterval();
_local1++;
}
updateAfterEvent();
}
function doInterval() {
var _local2 = getTimer() - startTime;
var _local3 = getCurVal(_local2);
if (_local2 >= duration) {
endTween();
} else if (updateFunc != undefined) {
listener[updateFunc](_local3);
} else {
listener.onTweenUpdate(_local3);
}
}
function getCurVal(curTime) {
if (arrayMode) {
var _local3 = new Array();
var _local2 = 0;
while (_local2 < initVal.length) {
_local3[_local2] = easingEquation(curTime, initVal[_local2], endVal[_local2] - initVal[_local2], duration);
_local2++;
}
return(_local3);
}
return(easingEquation(curTime, initVal, endVal - initVal, duration));
}
function endTween() {
if (endFunc != undefined) {
listener[endFunc](endVal);
} else {
listener.onTweenEnd(endVal);
}
RemoveTweenAt(ID);
}
function setTweenHandlers(update, end) {
updateFunc = update;
endFunc = end;
}
function easingEquation(t, b, c, d) {
return(((c / 2) * (Math.sin(Math.PI * ((t / d) - 0.5)) + 1)) + b);
}
static var ActiveTweens = new Array();
static var Interval = 10;
static var Dispatcher = new Object();
var duration = 3000;
}
Symbol 246 MovieClip [__Packages.mx.controls.listclasses.SelectableRow] Frame 0
class mx.controls.listclasses.SelectableRow extends mx.core.UIComponent
{
var __height, cell, owner, rowIndex, icon_mc, createObject, __width, backGround, highlight, highlightColor, createLabel, createClassObject, listOwner, tabEnabled, item, createEmptyMovieClip, drawRect, isChangedToSelected, bGTween, grandOwner;
function SelectableRow () {
super();
}
function setValue(itmObj, state) {
var _local7 = __height;
var _local2 = cell;
var _local5 = owner;
var _local8 = itemToString(itmObj);
if (_local2.getValue() != _local8) {
_local2.setValue(_local8, itmObj, state);
}
var _local4 = _local5.getPropertiesAt(rowIndex + _local5.__vPosition).icon;
if (_local4 == undefined) {
_local4 = _local5.__iconFunction(itmObj);
if (_local4 == undefined) {
_local4 = itmObj[_local5.__iconField];
if (_local4 == undefined) {
_local4 = _local5.getStyle("defaultIcon");
}
}
}
var _local3 = icon_mc;
if ((_local4 != undefined) && (itmObj != undefined)) {
_local3 = createObject(_local4, "icon_mc", 20);
_local3._x = 2;
_local3._y = (_local7 - _local3._height) / 2;
_local2._x = 4 + _local3._width;
} else {
_local3.removeMovieClip();
_local2._x = 2;
}
var _local9 = ((_local3 == undefined) ? 0 : (_local3._width));
_local2.setSize(__width - _local9, Math.min(_local7, _local2.getPreferredHeight()));
_local2._y = (_local7 - _local2._height) / 2;
}
function size(Void) {
var _local3 = backGround;
var _local2 = cell;
var _local4 = __height;
var _local5 = __width;
var _local6 = ((icon_mc == undefined) ? 0 : (icon_mc._width));
_local2.setSize(_local5 - _local6, Math.min(_local4, _local2.getPreferredHeight()));
_local2._y = (_local4 - _local2._height) / 2;
icon_mc._y = (_local4 - icon_mc._height) / 2;
_local3._x = 0;
_local3._width = _local5;
_local3._height = _local4;
drawRowFill(_local3, normalColor);
drawRowFill(highlight, highlightColor);
}
function setCellRenderer(forceSizing) {
var _local3 = owner.__cellRenderer;
var _local4;
if (cell != undefined) {
_local4 = cell._x;
cell.removeMovieClip();
cell.removeTextField();
}
var _local2;
if (_local3 == undefined) {
_local2 = (cell = createLabel("cll", 0, {styleName:this}));
_local2.styleName = owner;
_local2.selectable = false;
_local2.tabEnabled = false;
_local2.background = false;
_local2.border = false;
} else if (typeof(_local3) == "string") {
_local2 = (cell = createObject(_local3, "cll", 0, {styleName:this}));
} else {
_local2 = (cell = createClassObject(_local3, "cll", 0, {styleName:this}));
}
_local2.owner = this;
_local2.listOwner = owner;
_local2.getCellIndex = getCellIndex;
_local2.getDataLabel = getDataLabel;
if (_local4 != undefined) {
_local2._x = _local4;
}
if (forceSizing) {
size();
}
}
function getCellIndex(Void) {
return({columnIndex:0, itemIndex:owner.rowIndex + listOwner.__vPosition});
}
function getDataLabel() {
return(listOwner.labelField);
}
function init(Void) {
super.init();
tabEnabled = false;
}
function createChildren(Void) {
setCellRenderer(false);
setupBG();
setState(state, false);
}
function drawRow(itmObj, state, transition) {
item = itmObj;
setState(state, transition);
setValue(itmObj, state, transition);
}
function itemToString(itmObj) {
if (itmObj == undefined) {
return(" ");
}
var _local2 = owner.__labelFunction(itmObj);
if (_local2 == undefined) {
_local2 = ((itmObj instanceof XMLNode) ? (itmObj.attributes[owner.__labelField]) : (itmObj[owner.__labelField]));
if (_local2 == undefined) {
_local2 = " ";
if (typeof(itmObj) == "object") {
for (var _local4 in itmObj) {
if (_local4 != "__ID__") {
_local2 = (itmObj[_local4] + ", ") + _local2;
}
}
_local2 = _local2.substring(0, _local2.length - 2);
} else {
_local2 = itmObj;
}
}
}
return(_local2);
}
function setupBG(Void) {
var _local2 = (backGround = createEmptyMovieClip("bG_mc", LOWEST_DEPTH));
drawRowFill(_local2, normalColor);
highlight = createEmptyMovieClip("tran_mc", LOWEST_DEPTH + 10);
_local2.owner = this;
_local2.grandOwner = owner;
_local2.onPress = bGOnPress;
_local2.onRelease = bGOnRelease;
_local2.onRollOver = bGOnRollOver;
_local2.onRollOut = bGOnRollOut;
_local2.onDragOver = bGOnDragOver;
_local2.onDragOut = bGOnDragOut;
_local2.useHandCursor = false;
_local2.trackAsMenu = true;
_local2.drawRect = drawRect;
highlight.drawRect = drawRect;
}
function drawRowFill(mc, newClr) {
mc.clear();
mc.beginFill(newClr);
mc.drawRect(1, 0, __width, __height);
mc.endFill();
mc._width = __width;
mc._height = __height;
}
function setState(newState, transition) {
var _local2 = highlight;
var _local8 = backGround;
var _local4 = __height;
var _local3 = owner;
if (!_local3.enabled) {
if ((newState == "selected") || (state == "selected")) {
highlightColor = _local3.getStyle("selectionDisabledColor");
drawRowFill(_local2, highlightColor);
_local2._visible = true;
_local2._y = 0;
_local2._height = _local4;
} else {
_local2._visible = false;
normalColor = _local3.getStyle("backgroundDisabledColor");
drawRowFill(_local8, normalColor);
}
cell.__enabled = false;
cell.setColor(_local3.getStyle("disabledColor"));
} else {
cell.__enabled = true;
if (transition && ((newState == state) || ((newState == "highlighted") && (state == "selected")))) {
isChangedToSelected = true;
return(undefined);
}
var _local6 = _local3.getStyle("selectionDuration");
var _local7 = 0;
if (isChangedToSelected && (newState == "selected")) {
transition = false;
}
var _local10 = transition && (_local6 != 0);
if (newState == "normal") {
_local7 = _local3.getStyle("color");
normalColor = getNormalColor();
drawRowFill(_local8, normalColor);
if (_local10) {
_local6 = _local6 / 2;
_local2._height = _local4;
_local2._width = __width;
_local2._y = 0;
bGTween = new mx.effects.Tween(this, _local4 + 2, _local4 * 0.2, _local6, 5);
} else {
_local2._visible = false;
}
delete isChangedToSelected;
} else {
highlightColor = _local3.getStyle(((newState == "highlighted") ? "rollOverColor" : "selectionColor"));
drawRowFill(_local2, highlightColor);
_local2._visible = true;
_local7 = _local3.getStyle(((newState == "highlighted") ? "textRollOverColor" : "textSelectedColor"));
if (_local10) {
_local2._height = _local4 * 0.5;
_local2._y = (_local4 - _local2._height) / 2;
bGTween = new mx.effects.Tween(this, _local2._height, _local4 + 2, _local6, 5);
var _local9 = _local3.getStyle("selectionEasing");
if (_local9 != undefined) {
bGTween.easingEquation = _local9;
}
} else {
_local2._y = 0;
_local2._height = _local4;
}
}
cell.setColor(_local7);
}
state = newState;
}
function onTweenUpdate(val) {
highlight._height = val;
highlight._y = (__height - val) / 2;
}
function onTweenEnd(val) {
onTweenUpdate(val);
highlight._visible = state != "normal";
}
function getNormalColor(Void) {
var _local3;
var _local2 = owner;
if (!owner.enabled) {
_local3 = _local2.getStyle("backgroundDisabledColor");
} else {
var _local5 = rowIndex + _local2.__vPosition;
if (rowIndex == undefined) {
_local3 = _local2.getPropertiesOf(item).backgroundColor;
} else {
_local3 = _local2.getPropertiesAt(_local5).backgroundColor;
}
if (_local3 == undefined) {
var _local4 = _local2.getStyle("alternatingRowColors");
if (_local4 == undefined) {
_local3 = _local2.getStyle("backgroundColor");
} else {
_local3 = _local4[_local5 % _local4.length];
}
}
}
return(_local3);
}
function invalidateStyle(propName) {
cell.invalidateStyle(propName);
super.invalidateStyle(propName);
}
function bGOnPress(Void) {
grandOwner.pressFocus();
grandOwner.onRowPress(owner.rowIndex);
}
function bGOnRelease(Void) {
grandOwner.releaseFocus();
grandOwner.onRowRelease(owner.rowIndex);
}
function bGOnRollOver(Void) {
grandOwner.onRowRollOver(owner.rowIndex);
}
function bGOnRollOut(Void) {
grandOwner.onRowRollOut(owner.rowIndex);
}
function bGOnDragOver(Void) {
grandOwner.onRowDragOver(owner.rowIndex);
}
function bGOnDragOut(Void) {
grandOwner.onRowDragOut(owner.rowIndex);
}
static var LOWEST_DEPTH = -16384;
var state = "normal";
var disabledColor = 15263976;
var normalColor = 16777215;
}
Symbol 247 MovieClip [__Packages.mx.skins.ColoredSkinElement] Frame 0
class mx.skins.ColoredSkinElement
{
var getStyle, _color, onEnterFrame;
function ColoredSkinElement () {
}
function setColor(c) {
if (c != undefined) {
var _local2 = new Color(this);
_local2.setRGB(c);
}
}
function draw(Void) {
setColor(getStyle(_color));
onEnterFrame = undefined;
}
function invalidateStyle(Void) {
onEnterFrame = draw;
}
static function setColorStyle(p, colorStyle) {
if (p._color == undefined) {
p._color = colorStyle;
}
p.setColor = mixins.setColor;
p.invalidateStyle = mixins.invalidateStyle;
p.draw = mixins.draw;
p.setColor(p.getStyle(colorStyle));
}
static var mixins = new mx.skins.ColoredSkinElement();
}
Symbol 248 MovieClip [__Packages.mx.core.ext.UIObjectExtensions] Frame 0
class mx.core.ext.UIObjectExtensions
{
function UIObjectExtensions () {
}
static function addGeometry(tf, ui) {
tf.addProperty("width", ui.__get__width, null);
tf.addProperty("height", ui.__get__height, null);
tf.addProperty("left", ui.__get__left, null);
tf.addProperty("x", ui.__get__x, null);
tf.addProperty("top", ui.__get__top, null);
tf.addProperty("y", ui.__get__y, null);
tf.addProperty("right", ui.__get__right, null);
tf.addProperty("bottom", ui.__get__bottom, null);
tf.addProperty("visible", ui.__get__visible, ui.__set__visible);
}
static function Extensions() {
if (bExtended == true) {
return(true);
}
bExtended = true;
var _local6 = mx.core.UIObject.prototype;
var _local9 = mx.skins.SkinElement.prototype;
addGeometry(_local9, _local6);
mx.events.UIEventDispatcher.initialize(_local6);
var _local13 = mx.skins.ColoredSkinElement;
mx.styles.CSSTextStyles.addTextStyles(_local6);
var _local5 = MovieClip.prototype;
_local5.getTopLevel = _local6.getTopLevel;
_local5.createLabel = _local6.createLabel;
_local5.createObject = _local6.createObject;
_local5.createClassObject = _local6.createClassObject;
_local5.createEmptyObject = _local6.createEmptyObject;
_local5.destroyObject = _local6.destroyObject;
_global.ASSetPropFlags(_local5, "getTopLevel", 1);
_global.ASSetPropFlags(_local5, "createLabel", 1);
_global.ASSetPropFlags(_local5, "createObject", 1);
_global.ASSetPropFlags(_local5, "createClassObject", 1);
_global.ASSetPropFlags(_local5, "createEmptyObject", 1);
_global.ASSetPropFlags(_local5, "destroyObject", 1);
_local5.__getTextFormat = _local6.__getTextFormat;
_local5._getTextFormat = _local6._getTextFormat;
_local5.getStyleName = _local6.getStyleName;
_local5.getStyle = _local6.getStyle;
_global.ASSetPropFlags(_local5, "__getTextFormat", 1);
_global.ASSetPropFlags(_local5, "_getTextFormat", 1);
_global.ASSetPropFlags(_local5, "getStyleName", 1);
_global.ASSetPropFlags(_local5, "getStyle", 1);
var _local7 = TextField.prototype;
addGeometry(_local7, _local6);
_local7.addProperty("enabled", function () {
return(this.__enabled);
}, function (x) {
this.__enabled = x;
this.invalidateStyle();
});
_local7.move = _local9.move;
_local7.setSize = _local9.setSize;
_local7.invalidateStyle = function () {
this.invalidateFlag = true;
};
_local7.draw = function () {
if (this.invalidateFlag) {
this.invalidateFlag = false;
var _local2 = this._getTextFormat();
this.setTextFormat(_local2);
this.setNewTextFormat(_local2);
this.embedFonts = _local2.embedFonts == true;
if (this.__text != undefined) {
if (this.text == "") {
this.text = this.__text;
}
delete this.__text;
}
this._visible = true;
}
};
_local7.setColor = function (color) {
this.textColor = color;
};
_local7.getStyle = _local5.getStyle;
_local7.__getTextFormat = _local6.__getTextFormat;
_local7.setValue = function (v) {
this.text = v;
};
_local7.getValue = function () {
return(this.text);
};
_local7.addProperty("value", function () {
return(this.getValue());
}, function (v) {
this.setValue(v);
});
_local7._getTextFormat = function () {
var _local2 = this.stylecache.tf;
if (_local2 != undefined) {
return(_local2);
}
_local2 = new TextFormat();
this.__getTextFormat(_local2);
this.stylecache.tf = _local2;
if (this.__enabled == false) {
if (this.enabledColor == undefined) {
var _local4 = this.getTextFormat();
this.enabledColor = _local4.color;
}
var _local3 = this.getStyle("disabledColor");
_local2.color = _local3;
} else if (this.enabledColor != undefined) {
if (_local2.color == undefined) {
_local2.color = this.enabledColor;
}
}
return(_local2);
};
_local7.getPreferredWidth = function () {
this.draw();
return(this.textWidth + 4);
};
_local7.getPreferredHeight = function () {
this.draw();
return(this.textHeight + 4);
};
TextFormat.prototype.getTextExtent2 = function (s) {
var _local3 = _root._getTextExtent;
if (_local3 == undefined) {
_root.createTextField("_getTextExtent", -2, 0, 0, 1000, 100);
_local3 = _root._getTextExtent;
_local3._visible = false;
}
_root._getTextExtent.text = s;
var _local4 = this.align;
this.align = "left";
_root._getTextExtent.setTextFormat(this);
this.align = _local4;
return({width:_local3.textWidth, height:_local3.textHeight});
};
if (_global.style == undefined) {
_global.style = new mx.styles.CSSStyleDeclaration();
_global.cascadingStyles = true;
_global.styles = new Object();
_global.skinRegistry = new Object();
if (_global._origWidth == undefined) {
_global.origWidth = Stage.width;
_global.origHeight = Stage.height;
}
}
var _local4 = _root;
while (_local4._parent != undefined) {
_local4 = _local4._parent;
}
_local4.addProperty("width", function () {
return(Stage.width);
}, null);
_local4.addProperty("height", function () {
return(Stage.height);
}, null);
_global.ASSetPropFlags(_local4, "width", 1);
_global.ASSetPropFlags(_local4, "height", 1);
return(true);
}
static var bExtended = false;
static var UIObjectExtended = Extensions();
static var UIObjectDependency = mx.core.UIObject;
static var SkinElementDependency = mx.skins.SkinElement;
static var CSSTextStylesDependency = mx.styles.CSSTextStyles;
static var UIEventDispatcherDependency = mx.events.UIEventDispatcher;
}
Symbol 249 MovieClip [__Packages.mx.skins.halo.Defaults] Frame 0
class mx.skins.halo.Defaults
{
var beginGradientFill, beginFill, moveTo, lineTo, curveTo, endFill;
function Defaults () {
}
static function setThemeDefaults() {
var _local2 = _global.style;
_local2.themeColor = 8453965 /* 0x80FF4D */;
_local2.disabledColor = 8684164 /* 0x848284 */;
_local2.modalTransparency = 0;
_local2.filled = true;
_local2.stroked = true;
_local2.strokeWidth = 1;
_local2.strokeColor = 0;
_local2.fillColor = 16777215 /* 0xFFFFFF */;
_local2.repeatInterval = 35;
_local2.repeatDelay = 500;
_local2.fontFamily = "_sans";
_local2.fontSize = 12;
_local2.selectionColor = 13500353 /* 0xCDFFC1 */;
_local2.rollOverColor = 14942166 /* 0xE3FFD6 */;
_local2.useRollOver = true;
_local2.backgroundDisabledColor = 14540253 /* 0xDDDDDD */;
_local2.selectionDisabledColor = 14540253 /* 0xDDDDDD */;
_local2.selectionDuration = 200;
_local2.openDuration = 250;
_local2.borderStyle = "inset";
_local2.color = 734012 /* 0x0B333C */;
_local2.textSelectedColor = 24371;
_local2.textRollOverColor = 2831164 /* 0x2B333C */;
_local2.textDisabledColor = 16777215 /* 0xFFFFFF */;
_local2.vGridLines = true;
_local2.hGridLines = false;
_local2.vGridLineColor = 6710886 /* 0x666666 */;
_local2.hGridLineColor = 6710886 /* 0x666666 */;
_local2.headerColor = 15395562 /* 0xEAEAEA */;
_local2.indentation = 17;
_local2.folderOpenIcon = "TreeFolderOpen";
_local2.folderClosedIcon = "TreeFolderClosed";
_local2.defaultLeafIcon = "TreeNodeIcon";
_local2.disclosureOpenIcon = "TreeDisclosureOpen";
_local2.disclosureClosedIcon = "TreeDisclosureClosed";
_local2.popupDuration = 150;
_local2.todayColor = 6710886 /* 0x666666 */;
_local2 = (_global.styles.ScrollSelectList = new mx.styles.CSSStyleDeclaration());
_local2.backgroundColor = 16777215 /* 0xFFFFFF */;
_local2.borderColor = 13290186 /* 0xCACACA */;
_local2.borderStyle = "inset";
_local2 = (_global.styles.ComboBox = new mx.styles.CSSStyleDeclaration());
_local2.borderStyle = "inset";
_local2 = (_global.styles.NumericStepper = new mx.styles.CSSStyleDeclaration());
_local2.textAlign = "center";
_local2 = (_global.styles.RectBorder = new mx.styles.CSSStyleDeclaration());
_local2.borderColor = 14015965 /* 0xD5DDDD */;
_local2.buttonColor = 7305079 /* 0x6F7777 */;
_local2.shadowColor = 15658734 /* 0xEEEEEE */;
_local2.highlightColor = 12897484 /* 0xC4CCCC */;
_local2.shadowCapColor = 14015965 /* 0xD5DDDD */;
_local2.borderCapColor = 9542041 /* 0x919999 */;
var _local4 = new Object();
_local4.borderColor = 16711680 /* 0xFF0000 */;
_local4.buttonColor = 16711680 /* 0xFF0000 */;
_local4.shadowColor = 16711680 /* 0xFF0000 */;
_local4.highlightColor = 16711680 /* 0xFF0000 */;
_local4.shadowCapColor = 16711680 /* 0xFF0000 */;
_local4.borderCapColor = 16711680 /* 0xFF0000 */;
mx.core.UIComponent.prototype.origBorderStyles = _local4;
var _local3;
_local3 = (_global.styles.TextInput = new mx.styles.CSSStyleDeclaration());
_local3.backgroundColor = 16777215 /* 0xFFFFFF */;
_local3.borderStyle = "inset";
_global.styles.TextArea = _global.styles.TextInput;
_local3 = (_global.styles.Window = new mx.styles.CSSStyleDeclaration());
_local3.borderStyle = "default";
_local3 = (_global.styles.windowStyles = new mx.styles.CSSStyleDeclaration());
_local3.fontWeight = "bold";
_local3 = (_global.styles.dataGridStyles = new mx.styles.CSSStyleDeclaration());
_local3.fontWeight = "bold";
_local3 = (_global.styles.Alert = new mx.styles.CSSStyleDeclaration());
_local3.borderStyle = "alert";
_local3 = (_global.styles.ScrollView = new mx.styles.CSSStyleDeclaration());
_local3.borderStyle = "inset";
_local3 = (_global.styles.View = new mx.styles.CSSStyleDeclaration());
_local3.borderStyle = "none";
_local3 = (_global.styles.ProgressBar = new mx.styles.CSSStyleDeclaration());
_local3.color = 11187123 /* 0xAAB3B3 */;
_local3.fontWeight = "bold";
_local3 = (_global.styles.AccordionHeader = new mx.styles.CSSStyleDeclaration());
_local3.fontWeight = "bold";
_local3.fontSize = "11";
_local3 = (_global.styles.Accordion = new mx.styles.CSSStyleDeclaration());
_local3.borderStyle = "solid";
_local3.backgroundColor = 16777215 /* 0xFFFFFF */;
_local3.borderColor = 9081738 /* 0x8A938A */;
_local3.headerHeight = 22;
_local3.marginLeft = (_local3.marginRight = (_local3.marginTop = (_local3.marginBottom = -1)));
_local3.verticalGap = -1;
_local3 = (_global.styles.DateChooser = new mx.styles.CSSStyleDeclaration());
_local3.borderColor = 9542041 /* 0x919999 */;
_local3.headerColor = 16777215 /* 0xFFFFFF */;
_local3 = (_global.styles.CalendarLayout = new mx.styles.CSSStyleDeclaration());
_local3.fontSize = 10;
_local3.textAlign = "right";
_local3.color = 2831164 /* 0x2B333C */;
_local3 = (_global.styles.WeekDayStyle = new mx.styles.CSSStyleDeclaration());
_local3.fontWeight = "bold";
_local3.fontSize = 11;
_local3.textAlign = "center";
_local3.color = 2831164 /* 0x2B333C */;
_local3 = (_global.styles.TodayStyle = new mx.styles.CSSStyleDeclaration());
_local3.color = 16777215 /* 0xFFFFFF */;
_local3 = (_global.styles.HeaderDateText = new mx.styles.CSSStyleDeclaration());
_local3.fontSize = 12;
_local3.fontWeight = "bold";
_local3.textAlign = "center";
}
function drawRoundRect(x, y, w, h, r, c, alpha, rot, gradient, ratios) {
if (typeof(r) == "object") {
var _local18 = r.br;
var _local16 = r.bl;
var _local15 = r.tl;
var _local10 = r.tr;
} else {
var _local10 = r;
var _local15 = _local10;
var _local16 = _local15;
var _local18 = _local16;
}
if (typeof(c) == "object") {
if (typeof(alpha) != "object") {
var _local9 = [alpha, alpha];
} else {
var _local9 = alpha;
}
if (ratios == undefined) {
ratios = [0, 255];
}
var _local14 = h * 0.7;
if (typeof(rot) != "object") {
var _local11 = {matrixType:"box", x:-_local14, y:_local14, w:w * 2, h:h * 4, r:rot * 0.0174532925199433 /* Math.PI/180 */};
} else {
var _local11 = rot;
}
if (gradient == "radial") {
beginGradientFill("radial", c, _local9, ratios, _local11);
} else {
beginGradientFill("linear", c, _local9, ratios, _local11);
}
} else if (c != undefined) {
beginFill(c, alpha);
}
r = _local18;
var _local13 = r - (r * 0.707106781186547);
var _local12 = r - (r * 0.414213562373095);
moveTo(x + w, (y + h) - r);
lineTo(x + w, (y + h) - r);
curveTo(x + w, (y + h) - _local12, (x + w) - _local13, (y + h) - _local13);
curveTo((x + w) - _local12, y + h, (x + w) - r, y + h);
r = _local16;
_local13 = r - (r * 0.707106781186547);
_local12 = r - (r * 0.414213562373095);
lineTo(x + r, y + h);
curveTo(x + _local12, y + h, x + _local13, (y + h) - _local13);
curveTo(x, (y + h) - _local12, x, (y + h) - r);
r = _local15;
_local13 = r - (r * 0.707106781186547);
_local12 = r - (r * 0.414213562373095);
lineTo(x, y + r);
curveTo(x, y + _local12, x + _local13, y + _local13);
curveTo(x + _local12, y, x + r, y);
r = _local10;
_local13 = r - (r * 0.707106781186547);
_local12 = r - (r * 0.414213562373095);
lineTo((x + w) - r, y);
curveTo((x + w) - _local12, y, (x + w) - _local13, y + _local13);
curveTo(x + w, y + _local12, x + w, y + r);
lineTo(x + w, (y + h) - r);
if (c != undefined) {
endFill();
}
}
static function classConstruct() {
mx.core.ext.UIObjectExtensions.Extensions();
setThemeDefaults();
mx.core.UIObject.prototype.drawRoundRect = mx.skins.halo.Defaults.prototype.drawRoundRect;
return(true);
}
static var classConstructed = classConstruct();
static var CSSStyleDeclarationDependency = mx.styles.CSSStyleDeclaration;
static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions;
static var UIObjectDependency = mx.core.UIObject;
}
Symbol 250 MovieClip [__Packages.mx.managers.SystemManager] Frame 0
class mx.managers.SystemManager
{
static var _xAddEventListener, addEventListener, __addEventListener, _xRemoveEventListener, removeEventListener, __removeEventListener, form, __screen, dispatchEvent;
function SystemManager () {
}
static function init(Void) {
if (_initialized == false) {
_initialized = true;
mx.events.EventDispatcher.initialize(mx.managers.SystemManager);
Mouse.addListener(mx.managers.SystemManager);
Stage.addListener(mx.managers.SystemManager);
_xAddEventListener = addEventListener;
addEventListener = __addEventListener;
_xRemoveEventListener = removeEventListener;
removeEventListener = __removeEventListener;
}
}
static function addFocusManager(f) {
form = f;
f.focusManager.activate();
}
static function removeFocusManager(f) {
}
static function onMouseDown(Void) {
var _local1 = form;
_local1.focusManager._onMouseDown();
}
static function onResize(Void) {
var _local7 = Stage.width;
var _local6 = Stage.height;
var _local9 = _global.origWidth;
var _local8 = _global.origHeight;
var _local3 = Stage.align;
var _local5 = (_local9 - _local7) / 2;
var _local4 = (_local8 - _local6) / 2;
if (_local3 == "T") {
_local4 = 0;
} else if (_local3 == "B") {
_local4 = _local8 - _local6;
} else if (_local3 == "L") {
_local5 = 0;
} else if (_local3 == "R") {
_local5 = _local9 - _local7;
} else if (_local3 == "LT") {
_local4 = 0;
_local5 = 0;
} else if (_local3 == "TR") {
_local4 = 0;
_local5 = _local9 - _local7;
} else if (_local3 == "LB") {
_local4 = _local8 - _local6;
_local5 = 0;
} else if (_local3 == "RB") {
_local4 = _local8 - _local6;
_local5 = _local9 - _local7;
}
if (__screen == undefined) {
__screen = new Object();
}
__screen.x = _local5;
__screen.y = _local4;
__screen.width = _local7;
__screen.height = _local6;
_root.focusManager.relocate();
dispatchEvent({type:"resize"});
}
static function get screen() {
init();
if (__screen == undefined) {
onResize();
}
return(__screen);
}
static var _initialized = false;
static var idleFrames = 0;
static var isMouseDown = false;
static var forms = new Array();
}
Symbol 251 MovieClip [__Packages.mx.managers.FocusManager] Frame 0
class mx.managers.FocusManager extends mx.core.UIComponent
{
var __defaultPushButton, defPushButton, form, move, tabEnabled, _width, _height, _x, _y, _alpha, _parent, tabCapture, watch, lastMouse, _visible, lastFocus, doLater, lastSelFocus, cancelAllDoLaters, _searchKey, _lastTarget, _firstNode, _nextIsNext, _nextNode, _lastx, _prevNode, _needPrev, _foundList, _prevObj, _nextObj, _firstObj, _lastObj, _lastNode, lastTabFocus, findFocusFromObject;
function FocusManager () {
super();
}
function get defaultPushButton() {
return(__defaultPushButton);
}
function set defaultPushButton(x) {
if (x != __defaultPushButton) {
__defaultPushButton.__set__emphasized(false);
__defaultPushButton = x;
defPushButton = x;
x.__set__emphasized(true);
}
//return(defaultPushButton);
}
function getMaxTabIndex(o) {
var _local3 = 0;
var _local6;
for (_local6 in o) {
var _local2 = o[_local6];
if (_local2._parent == o) {
if (_local2.tabIndex != undefined) {
if (_local2.tabIndex > _local3) {
_local3 = _local2.tabIndex;
}
}
if (_local2.tabChildren == true) {
var _local4 = getMaxTabIndex(_local2);
if (_local4 > _local3) {
_local3 = _local4;
}
}
}
}
return(_local3);
}
function getNextTabIndex(Void) {
return(getMaxTabIndex(form) + 1);
}
function get nextTabIndex() {
return(getNextTabIndex());
}
function relocate(Void) {
var _local2 = mx.managers.SystemManager.__get__screen();
move(_local2.x - 1, _local2.y - 1);
}
function init(Void) {
super.init();
tabEnabled = false;
_width = (_height = 1);
_x = (_y = -1);
_alpha = 0;
_parent.focusManager = this;
_parent.tabChildren = true;
_parent.tabEnabled = false;
form = _parent;
_parent.addEventListener("hide", this);
_parent.addEventListener("reveal", this);
mx.managers.SystemManager.init();
mx.managers.SystemManager.addFocusManager(form);
tabCapture.tabIndex = 0;
watch("enabled", enabledChanged);
Selection.addListener(this);
lastMouse = new Object();
_global.ASSetPropFlags(_parent, "focusManager", 1);
_global.ASSetPropFlags(_parent, "tabChildren", 1);
_global.ASSetPropFlags(_parent, "tabEnabled", 1);
}
function enabledChanged(id, oldValue, newValue) {
_visible = newValue;
return(newValue);
}
function activate(Void) {
Key.addListener(this);
activated = (_visible = true);
if (lastFocus != undefined) {
bNeedFocus = true;
if (!mx.managers.SystemManager.isMouseDown) {
doLater(this, "restoreFocus");
}
}
}
function deactivate(Void) {
Key.removeListener(this);
activated = (_visible = false);
var _local2 = getSelectionFocus();
var _local3 = getActualFocus(_local2);
if (isOurFocus(_local3)) {
lastSelFocus = _local2;
lastFocus = _local3;
}
cancelAllDoLaters();
}
function isOurFocus(o) {
if (o.focusManager == this) {
return(true);
}
while (o != undefined) {
if (o.focusManager != undefined) {
return(false);
}
if (o._parent == _parent) {
return(true);
}
o = o._parent;
}
return(false);
}
function onSetFocus(o, n) {
if (n == null) {
if (activated) {
bNeedFocus = true;
}
} else {
var _local2 = getFocus();
if (isOurFocus(_local2)) {
bNeedFocus = false;
lastFocus = _local2;
lastSelFocus = n;
}
}
}
function restoreFocus(Void) {
var _local2 = lastSelFocus.hscroll;
if (_local2 != undefined) {
var _local5 = lastSelFocus.scroll;
var _local4 = lastSelFocus.background;
}
lastFocus.setFocus();
var _local3 = Selection;
Selection.setSelection(_local3.lastBeginIndex, _local3.lastEndIndex);
if (_local2 != undefined) {
lastSelFocus.scroll = _local5;
lastSelFocus.hscroll = _local2;
lastSelFocus.background = _local4;
}
}
function onUnload(Void) {
mx.managers.SystemManager.removeFocusManager(form);
}
function setFocus(o) {
if (o == null) {
Selection.setFocus(null);
} else if (o.setFocus == undefined) {
Selection.setFocus(o);
} else {
o.setFocus();
}
}
function getActualFocus(o) {
var _local1 = o._parent;
while (_local1 != undefined) {
if (_local1.focusTextField != undefined) {
while (_local1.focusTextField != undefined) {
o = _local1;
_local1 = _local1._parent;
if (_local1 == undefined) {
return(undefined);
}
if (_local1.focusTextField == undefined) {
return(o);
}
}
}
if (_local1.tabEnabled != true) {
return(o);
}
o = _local1;
_local1 = o._parent;
}
return(undefined);
}
function getSelectionFocus() {
var m = Selection.getFocus();
var o = eval (m);
return(o);
}
function getFocus(Void) {
var _local2 = getSelectionFocus();
return(getActualFocus(_local2));
}
function walkTree(p, index, groupName, dir, lookup, firstChild) {
var _local5 = true;
var _local11;
for (_local11 in p) {
var _local2 = p[_local11];
if ((((_local2._parent == p) && (_local2.enabled != false)) && (_local2._visible != false)) && ((_local2.tabEnabled == true) || ((_local2.tabEnabled != false) && ((((((((_local2.onPress != undefined) || (_local2.onRelease != undefined)) || (_local2.onReleaseOutside != undefined)) || (_local2.onDragOut != undefined)) || (_local2.onDragOver != undefined)) || (_local2.onRollOver != undefined)) || (_local2.onRollOut != undefined)) || (_local2 instanceof TextField))))) {
if (_local2._searchKey == _searchKey) {
continue;
}
_local2._searchKey = _searchKey;
if (_local2 != _lastTarget) {
if (((_local2.groupName != undefined) || (groupName != undefined)) && (_local2.groupName == groupName)) {
continue;
}
if ((_local2 instanceof TextField) && (_local2.selectable == false)) {
continue;
}
if (_local5 || (((_local2.groupName != undefined) && (_local2.groupName == _firstNode.groupName)) && (_local2.selected == true))) {
if (firstChild) {
_firstNode = _local2;
firstChild = false;
}
}
if (_nextIsNext == true) {
if ((((_local2.groupName != undefined) && (_local2.groupName == _nextNode.groupName)) && (_local2.selected == true)) || ((_nextNode == undefined) && ((_local2.groupName == undefined) || ((_local2.groupName != undefined) && (_local2.groupName != groupName))))) {
_nextNode = _local2;
}
}
if ((_local2.groupName == undefined) || (groupName != _local2.groupName)) {
if (((_lastx.groupName != undefined) && (_local2.groupName == _lastx.groupName)) && (_lastx.selected == true)) {
} else {
_lastx = _local2;
}
}
} else {
_prevNode = _lastx;
_needPrev = false;
_nextIsNext = true;
}
if (_local2.tabIndex != undefined) {
if (_local2.tabIndex == index) {
if (_foundList[_local2._name] == undefined) {
if (_needPrev) {
_prevObj = _local2;
_needPrev = false;
}
_nextObj = _local2;
}
}
if (dir && (_local2.tabIndex > index)) {
if (((_nextObj == undefined) || ((_nextObj.tabIndex > _local2.tabIndex) && (((_local2.groupName == undefined) || (_nextObj.groupName == undefined)) || (_local2.groupName != _nextObj.groupName)))) || ((((_nextObj.groupName != undefined) && (_nextObj.groupName == _local2.groupName)) && (_nextObj.selected != true)) && ((_local2.selected == true) || (_nextObj.tabIndex > _local2.tabIndex)))) {
_nextObj = _local2;
}
} else if ((!dir) && (_local2.tabIndex < index)) {
if (((_prevObj == undefined) || ((_prevObj.tabIndex < _local2.tabIndex) && (((_local2.groupName == undefined) || (_prevObj.groupName == undefined)) || (_local2.groupName != _prevObj.groupName)))) || ((((_prevObj.groupName != undefined) && (_prevObj.groupName == _local2.groupName)) && (_prevObj.selected != true)) && ((_local2.selected == true) || (_prevObj.tabIndex < _local2.tabIndex)))) {
_prevObj = _local2;
}
}
if (((_firstObj == undefined) || ((_local2.tabIndex < _firstObj.tabIndex) && (((_local2.groupName == undefined) || (_firstObj.groupName == undefined)) || (_local2.groupName != _firstObj.groupName)))) || ((((_firstObj.groupName != undefined) && (_firstObj.groupName == _local2.groupName)) && (_firstObj.selected != true)) && ((_local2.selected == true) || (_local2.tabIndex < _firstObj.tabIndex)))) {
_firstObj = _local2;
}
if (((_lastObj == undefined) || ((_local2.tabIndex > _lastObj.tabIndex) && (((_local2.groupName == undefined) || (_lastObj.groupName == undefined)) || (_local2.groupName != _lastObj.groupName)))) || ((((_lastObj.groupName != undefined) && (_lastObj.groupName == _local2.groupName)) && (_lastObj.selected != true)) && ((_local2.selected == true) || (_local2.tabIndex > _lastObj.tabIndex)))) {
_lastObj = _local2;
}
}
if (_local2.tabChildren) {
getTabCandidateFromChildren(_local2, index, groupName, dir, _local5 && (firstChild));
}
_local5 = false;
} else if (((_local2._parent == p) && (_local2.tabChildren == true)) && (_local2._visible != false)) {
if (_local2 == _lastTarget) {
if (_local2._searchKey == _searchKey) {
continue;
}
_local2._searchKey = _searchKey;
if (_prevNode == undefined) {
var _local3 = _lastx;
var _local7 = false;
while (_local3 != undefined) {
if (_local3 == _local2) {
_local7 = true;
break;
}
_local3 = _local3._parent;
}
if (_local7 == false) {
_prevNode = _lastx;
}
}
_needPrev = false;
if (_nextNode == undefined) {
_nextIsNext = true;
}
} else if (!((_local2.focusManager != undefined) && (_local2.focusManager._parent == _local2))) {
if (_local2._searchKey == _searchKey) {
continue;
}
_local2._searchKey = _searchKey;
getTabCandidateFromChildren(_local2, index, groupName, dir, _local5 && (firstChild));
}
_local5 = false;
}
}
_lastNode = _lastx;
if (lookup) {
if (p._parent != undefined) {
if (p != _parent) {
if ((_prevNode == undefined) && (dir)) {
_needPrev = true;
} else if ((_nextNode == undefined) && (!dir)) {
_nextIsNext = false;
}
_lastTarget = _lastTarget._parent;
getTabCandidate(p._parent, index, groupName, dir, true);
}
}
}
}
function getTabCandidate(o, index, groupName, dir, firstChild) {
var _local2;
var _local3 = true;
if (o == _parent) {
_local2 = o;
_local3 = false;
} else {
_local2 = o._parent;
if (_local2 == undefined) {
_local2 = o;
_local3 = false;
}
}
walkTree(_local2, index, groupName, dir, _local3, firstChild);
}
function getTabCandidateFromChildren(o, index, groupName, dir, firstChild) {
walkTree(o, index, groupName, dir, false, firstChild);
}
function getFocusManagerFromObject(o) {
while (o != undefined) {
if (o.focusManager != undefined) {
return(o.focusManager);
}
o = o._parent;
}
return(undefined);
}
function tabHandler(Void) {
bDrawFocus = true;
var _local5 = getSelectionFocus();
var _local4 = getActualFocus(_local5);
if (_local4 != _local5) {
_local5 = _local4;
}
if (getFocusManagerFromObject(_local5) != this) {
_local5 == undefined;
}
if (_local5 == undefined) {
_local5 = form;
} else if (_local5.tabIndex != undefined) {
if ((_foundList != undefined) || (_foundList.tabIndex != _local5.tabIndex)) {
_foundList = new Object();
_foundList.tabIndex = _local5.tabIndex;
}
_foundList[_local5._name] = _local5;
}
var _local3 = Key.isDown(16) != true;
_searchKey = getTimer();
_needPrev = true;
_nextIsNext = false;
_lastx = undefined;
_firstNode = undefined;
_lastNode = undefined;
_nextNode = undefined;
_prevNode = undefined;
_firstObj = undefined;
_lastObj = undefined;
_nextObj = undefined;
_prevObj = undefined;
_lastTarget = _local5;
var _local6 = _local5;
getTabCandidate(_local6, ((_local5.tabIndex == undefined) ? 0 : (_local5.tabIndex)), _local5.groupName, _local3, true);
var _local2;
if (_local3) {
if (_nextObj != undefined) {
_local2 = _nextObj;
} else {
_local2 = _firstObj;
}
} else if (_prevObj != undefined) {
_local2 = _prevObj;
} else {
_local2 = _lastObj;
}
if (_local2.tabIndex != _local5.tabIndex) {
_foundList = new Object();
_foundList.tabIndex = _local2.tabIndex;
_foundList[_local2._name] = _local2;
} else {
if (_foundList == undefined) {
_foundList = new Object();
_foundList.tabIndex = _local2.tabIndex;
}
_foundList[_local2._name] = _local2;
}
if (_local2 == undefined) {
if (_local3 == false) {
if (_nextNode != undefined) {
_local2 = _nextNode;
} else {
_local2 = _firstNode;
}
} else if ((_prevNode == undefined) || (_local5 == form)) {
_local2 = _lastNode;
} else {
_local2 = _prevNode;
}
}
if (_local2 == undefined) {
return(undefined);
}
lastTabFocus = _local2;
setFocus(_local2);
if (_local2.emphasized != undefined) {
if (defPushButton != undefined) {
_local5 = defPushButton;
defPushButton = _local2;
_local5.emphasized = false;
_local2.emphasized = true;
}
} else if ((defPushButton != undefined) && (defPushButton != __defaultPushButton)) {
_local5 = defPushButton;
defPushButton = __defaultPushButton;
_local5.emphasized = false;
__defaultPushButton.__set__emphasized(true);
}
}
function onKeyDown(Void) {
mx.managers.SystemManager.idleFrames = 0;
if (defaultPushButtonEnabled) {
if (Key.getCode() == 13) {
if (defaultPushButton != undefined) {
doLater(this, "sendDefaultPushButtonEvent");
}
}
}
}
function sendDefaultPushButtonEvent(Void) {
defPushButton.dispatchEvent({type:"click"});
}
function getMousedComponentFromChildren(x, y, o) {
for (var _local7 in o) {
var _local2 = o[_local7];
if (((_local2._visible && (_local2.enabled)) && (_local2._parent == o)) && (_local2._searchKey != _searchKey)) {
_local2._searchKey = _searchKey;
if (_local2.hitTest(x, y, true)) {
if ((_local2.onPress != undefined) || (_local2.onRelease != undefined)) {
return(_local2);
}
var _local3 = getMousedComponentFromChildren(x, y, _local2);
if (_local3 != undefined) {
return(_local3);
}
return(_local2);
}
}
}
return(undefined);
}
function mouseActivate(Void) {
if (!bNeedFocus) {
return(undefined);
}
_searchKey = getTimer();
var _local2 = getMousedComponentFromChildren(lastMouse.x, lastMouse.y, form);
if (_local2 instanceof mx.core.UIComponent) {
return(undefined);
}
_local2 = findFocusFromObject(_local2);
if (_local2 == lastFocus) {
return(undefined);
}
if (_local2 == undefined) {
doLater(this, "restoreFocus");
return(undefined);
}
var _local3 = _local2.hscroll;
if (_local3 != undefined) {
var _local6 = _local2.scroll;
var _local5 = _local2.background;
}
setFocus(_local2);
var _local4 = Selection;
Selection.setSelection(_local4.lastBeginIndex, _local4.lastEndIndex);
if (_local3 != undefined) {
_local2.scroll = _local6;
_local2.hscroll = _local3;
_local2.background = _local5;
}
}
function _onMouseDown(Void) {
bDrawFocus = false;
if (lastFocus != undefined) {
lastFocus.drawFocus(false);
}
mx.managers.SystemManager.idleFrames = 0;
var _local3 = Selection;
_local3.lastBeginIndex = Selection.getBeginIndex();
_local3.lastEndIndex = Selection.getEndIndex();
lastMouse.x = _root._xmouse;
lastMouse.y = _root._ymouse;
_root.localToGlobal(lastMouse);
}
function onMouseUp(Void) {
if (_visible) {
doLater(this, "mouseActivate");
}
}
function handleEvent(e) {
if (e.type == "reveal") {
mx.managers.SystemManager.activate(form);
} else {
mx.managers.SystemManager.deactivate(form);
}
}
static function enableFocusManagement() {
if (!initialized) {
initialized = true;
Object.registerClass("FocusManager", mx.managers.FocusManager);
if (_root.focusManager == undefined) {
_root.createClassObject(mx.managers.FocusManager, "focusManager", mx.managers.DepthManager.highestDepth--);
}
}
}
static var symbolName = "FocusManager";
static var symbolOwner = mx.managers.FocusManager;
static var version = "2.0.2.126";
var className = "FocusManager";
var bNeedFocus = false;
var bDrawFocus = false;
var defaultPushButtonEnabled = true;
var activated = true;
static var initialized = false;
static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions;
}
Symbol 252 MovieClip [__Packages.mx.skins.halo.FocusRect] Frame 0
class mx.skins.halo.FocusRect extends mx.skins.SkinElement
{
var boundingBox_mc, _xscale, _yscale, clear, beginFill, drawRoundRect, endFill, _visible;
function FocusRect () {
super();
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
function draw(o) {
o.adjustFocusRect();
}
function setSize(w, h, r, a, rectCol) {
_xscale = (_yscale = 100);
clear();
if (typeof(r) == "object") {
r.br = ((r.br > 2) ? (r.br - 2) : 0);
r.bl = ((r.bl > 2) ? (r.bl - 2) : 0);
r.tr = ((r.tr > 2) ? (r.tr - 2) : 0);
r.tl = ((r.tl > 2) ? (r.tl - 2) : 0);
beginFill(rectCol, a * 0.3);
drawRoundRect(0, 0, w, h, r);
drawRoundRect(2, 2, w - 4, h - 4, r);
endFill();
r.br = ((r.br > 1) ? (r.br + 1) : 0);
r.bl = ((r.bl > 1) ? (r.bl + 1) : 0);
r.tr = ((r.tr > 1) ? (r.tr + 1) : 0);
r.tl = ((r.tl > 1) ? (r.tl + 1) : 0);
beginFill(rectCol, a * 0.3);
drawRoundRect(1, 1, w - 2, h - 2, r);
r.br = ((r.br > 1) ? (r.br - 1) : 0);
r.bl = ((r.bl > 1) ? (r.bl - 1) : 0);
r.tr = ((r.tr > 1) ? (r.tr - 1) : 0);
r.tl = ((r.tl > 1) ? (r.tl - 1) : 0);
drawRoundRect(2, 2, w - 4, h - 4, r);
endFill();
} else {
var _local5;
if (r != 0) {
_local5 = r - 2;
} else {
_local5 = 0;
}
beginFill(rectCol, a * 0.3);
drawRoundRect(0, 0, w, h, r);
drawRoundRect(2, 2, w - 4, h - 4, _local5);
endFill();
beginFill(rectCol, a * 0.3);
if (r != 0) {
_local5 = r - 2;
r = r - 1;
} else {
_local5 = 0;
r = 0;
}
drawRoundRect(1, 1, w - 2, h - 2, r);
drawRoundRect(2, 2, w - 4, h - 4, _local5);
endFill();
}
}
function handleEvent(e) {
if (e.type == "unload") {
_visible = true;
} else if (e.type == "resize") {
e.target.adjustFocusRect();
} else if (e.type == "move") {
e.target.adjustFocusRect();
}
}
static function classConstruct() {
mx.core.UIComponent.prototype.drawFocus = function (focused) {
var _local2 = this._parent.focus_mc;
if (!focused) {
_local2._visible = false;
this.removeEventListener("unload", _local2);
this.removeEventListener("move", _local2);
this.removeEventListener("resize", _local2);
} else {
if (_local2 == undefined) {
_local2 = this._parent.createChildAtDepth("FocusRect", mx.managers.DepthManager.kTop);
_local2.tabEnabled = false;
this._parent.focus_mc = _local2;
} else {
_local2._visible = true;
}
_local2.draw(this);
if (_local2.getDepth() < this.getDepth()) {
_local2.setDepthAbove(this);
}
this.addEventListener("unload", _local2);
this.addEventListener("move", _local2);
this.addEventListener("resize", _local2);
}
};
mx.core.UIComponent.prototype.adjustFocusRect = function () {
var _local2 = this.getStyle("themeColor");
if (_local2 == undefined) {
_local2 = 8453965 /* 0x80FF4D */;
}
var _local3 = this._parent.focus_mc;
_local3.setSize(this.width + 4, this.height + 4, 0, 100, _local2);
_local3.move(this.x - 2, this.y - 2);
};
TextField.prototype.drawFocus = mx.core.UIComponent.prototype.drawFocus;
TextField.prototype.adjustFocusRect = mx.core.UIComponent.prototype.adjustFocusRect;
mx.skins.halo.FocusRect.prototype.drawRoundRect = mx.skins.halo.Defaults.prototype.drawRoundRect;
return(true);
}
static var classConstructed = classConstruct();
static var DefaultsDependency = mx.skins.halo.Defaults;
static var UIComponentDependency = mx.core.UIComponent;
}
Symbol 253 MovieClip [__Packages.mx.managers.OverlappedWindows] Frame 0
class mx.managers.OverlappedWindows
{
function OverlappedWindows () {
}
static function checkIdle(Void) {
if (mx.managers.SystemManager.idleFrames > 10) {
mx.managers.SystemManager.dispatchEvent({type:"idle"});
} else {
mx.managers.SystemManager.idleFrames++;
}
}
static function __addEventListener(e, o, l) {
if (e == "idle") {
if (mx.managers.SystemManager.interval == undefined) {
mx.managers.SystemManager.interval = setInterval(mx.managers.SystemManager.checkIdle, 100);
}
}
mx.managers.SystemManager._xAddEventListener(e, o, l);
}
static function __removeEventListener(e, o, l) {
if (e == "idle") {
if (mx.managers.SystemManager._xRemoveEventListener(e, o, l) == 0) {
clearInterval(mx.managers.SystemManager.interval);
}
} else {
mx.managers.SystemManager._xRemoveEventListener(e, o, l);
}
}
static function onMouseDown(Void) {
mx.managers.SystemManager.idleFrames = 0;
mx.managers.SystemManager.isMouseDown = true;
var _local5 = _root;
var _local3;
var _local8 = _root._xmouse;
var _local7 = _root._ymouse;
if (mx.managers.SystemManager.form.modalWindow == undefined) {
if (mx.managers.SystemManager.forms.length > 1) {
var _local6 = mx.managers.SystemManager.forms.length;
var _local4;
_local4 = 0;
while (_local4 < _local6) {
var _local2 = mx.managers.SystemManager.forms[_local4];
if (_local2._visible) {
if (_local2.hitTest(_local8, _local7)) {
if (_local3 == undefined) {
_local3 = _local2.getDepth();
_local5 = _local2;
} else if (_local3 < _local2.getDepth()) {
_local3 = _local2.getDepth();
_local5 = _local2;
}
}
}
_local4++;
}
if (_local5 != mx.managers.SystemManager.form) {
mx.managers.SystemManager.activate(_local5);
}
}
}
var _local9 = mx.managers.SystemManager.form;
_local9.focusManager._onMouseDown();
}
static function onMouseMove(Void) {
mx.managers.SystemManager.idleFrames = 0;
}
static function onMouseUp(Void) {
mx.managers.SystemManager.isMouseDown = false;
mx.managers.SystemManager.idleFrames = 0;
}
static function activate(f) {
if (mx.managers.SystemManager.form != undefined) {
if ((mx.managers.SystemManager.form != f) && (mx.managers.SystemManager.forms.length > 1)) {
var _local1 = mx.managers.SystemManager.form;
_local1.focusManager.deactivate();
}
}
mx.managers.SystemManager.form = f;
f.focusManager.activate();
}
static function deactivate(f) {
if (mx.managers.SystemManager.form != undefined) {
if ((mx.managers.SystemManager.form == f) && (mx.managers.SystemManager.forms.length > 1)) {
var _local5 = mx.managers.SystemManager.form;
_local5.focusManager.deactivate();
var _local3 = mx.managers.SystemManager.forms.length;
var _local1;
var _local2;
_local1 = 0;
while (_local1 < _local3) {
if (mx.managers.SystemManager.forms[_local1] == f) {
_local1 = _local1 + 1;
while (_local1 < _local3) {
if (mx.managers.SystemManager.forms[_local1]._visible == true) {
_local2 = mx.managers.SystemManager.forms[_local1];
}
_local1++;
}
mx.managers.SystemManager.form = _local2;
break;
}
if (mx.managers.SystemManager.forms[_local1]._visible == true) {
_local2 = mx.managers.SystemManager.forms[_local1];
}
_local1++;
}
_local5 = mx.managers.SystemManager.form;
_local5.focusManager.activate();
}
}
}
static function addFocusManager(f) {
mx.managers.SystemManager.forms.push(f);
mx.managers.SystemManager.activate(f);
}
static function removeFocusManager(f) {
var _local3 = mx.managers.SystemManager.forms.length;
var _local1;
_local1 = 0;
while (_local1 < _local3) {
if (mx.managers.SystemManager.forms[_local1] == f) {
if (mx.managers.SystemManager.form == f) {
mx.managers.SystemManager.deactivate(f);
}
mx.managers.SystemManager.forms.splice(_local1, 1);
return(undefined);
}
_local1++;
}
}
static function enableOverlappedWindows() {
if (!initialized) {
initialized = true;
mx.managers.SystemManager.checkIdle = checkIdle;
mx.managers.SystemManager.__addEventListener = __addEventListener;
mx.managers.SystemManager.__removeEventListener = __removeEventListener;
mx.managers.SystemManager.onMouseDown = onMouseDown;
mx.managers.SystemManager.onMouseMove = onMouseMove;
mx.managers.SystemManager.onMouseUp = onMouseUp;
mx.managers.SystemManager.activate = activate;
mx.managers.SystemManager.deactivate = deactivate;
mx.managers.SystemManager.addFocusManager = addFocusManager;
mx.managers.SystemManager.removeFocusManager = removeFocusManager;
}
}
static var initialized = false;
static var SystemManagerDependency = mx.managers.SystemManager;
}
Symbol 254 MovieClip [__Packages.mx.styles.CSSSetStyle] Frame 0
class mx.styles.CSSSetStyle
{
var styleName, stylecache, _color, setColor, invalidateStyle;
function CSSSetStyle () {
}
function _setStyle(styleProp, newValue) {
this[styleProp] = newValue;
if (mx.styles.StyleManager.TextStyleMap[styleProp] != undefined) {
if (styleProp == "color") {
if (isNaN(newValue)) {
newValue = mx.styles.StyleManager.getColorName(newValue);
this[styleProp] = newValue;
if (newValue == undefined) {
return(undefined);
}
}
}
_level0.changeTextStyleInChildren(styleProp);
return(undefined);
}
if (mx.styles.StyleManager.isColorStyle(styleProp)) {
if (isNaN(newValue)) {
newValue = mx.styles.StyleManager.getColorName(newValue);
this[styleProp] = newValue;
if (newValue == undefined) {
return(undefined);
}
}
if (styleProp == "themeColor") {
var _local7 = mx.styles.StyleManager.colorNames.haloBlue;
var _local6 = mx.styles.StyleManager.colorNames.haloGreen;
var _local8 = mx.styles.StyleManager.colorNames.haloOrange;
var _local4 = {};
_local4[_local7] = 12188666 /* 0xB9FBFA */;
_local4[_local6] = 13500353 /* 0xCDFFC1 */;
_local4[_local8] = 16766319 /* 0xFFD56F */;
var _local5 = {};
_local5[_local7] = 13958653 /* 0xD4FDFD */;
_local5[_local6] = 14942166 /* 0xE3FFD6 */;
_local5[_local8] = 16772787 /* 0xFFEEB3 */;
var _local9 = _local4[newValue];
var _local10 = _local5[newValue];
if (_local9 == undefined) {
_local9 = newValue;
}
if (_local10 == undefined) {
_local10 = newValue;
}
setStyle("selectionColor", _local9);
setStyle("rollOverColor", _local10);
}
_level0.changeColorStyleInChildren(styleName, styleProp, newValue);
} else {
if ((styleProp == "backgroundColor") && (isNaN(newValue))) {
newValue = mx.styles.StyleManager.getColorName(newValue);
this[styleProp] = newValue;
if (newValue == undefined) {
return(undefined);
}
}
_level0.notifyStyleChangeInChildren(styleName, styleProp, newValue);
}
}
function changeTextStyleInChildren(styleProp) {
var _local4 = getTimer();
var _local5;
for (_local5 in this) {
var _local2 = this[_local5];
if (_local2._parent == this) {
if (_local2.searchKey != _local4) {
if (_local2.stylecache != undefined) {
delete _local2.stylecache.tf;
delete _local2.stylecache[styleProp];
}
_local2.invalidateStyle(styleProp);
_local2.changeTextStyleInChildren(styleProp);
_local2.searchKey = _local4;
}
}
}
}
function changeColorStyleInChildren(sheetName, colorStyle, newValue) {
var _local6 = getTimer();
var _local7;
for (_local7 in this) {
var _local2 = this[_local7];
if (_local2._parent == this) {
if (_local2.searchKey != _local6) {
if (((_local2.getStyleName() == sheetName) || (sheetName == undefined)) || (sheetName == "_global")) {
if (_local2.stylecache != undefined) {
delete _local2.stylecache[colorStyle];
}
if (typeof(_local2._color) == "string") {
if (_local2._color == colorStyle) {
var _local4 = _local2.getStyle(colorStyle);
if (colorStyle == "color") {
if (stylecache.tf.color != undefined) {
stylecache.tf.color = _local4;
}
}
_local2.setColor(_local4);
}
} else if (_local2._color[colorStyle] != undefined) {
if (typeof(_local2) != "movieclip") {
_local2._parent.invalidateStyle();
} else {
_local2.invalidateStyle(colorStyle);
}
}
}
_local2.changeColorStyleInChildren(sheetName, colorStyle, newValue);
_local2.searchKey = _local6;
}
}
}
}
function notifyStyleChangeInChildren(sheetName, styleProp, newValue) {
var _local5 = getTimer();
var _local6;
for (_local6 in this) {
var _local2 = this[_local6];
if (_local2._parent == this) {
if (_local2.searchKey != _local5) {
if (((_local2.styleName == sheetName) || ((_local2.styleName != undefined) && (typeof(_local2.styleName) == "movieclip"))) || (sheetName == undefined)) {
if (_local2.stylecache != undefined) {
delete _local2.stylecache[styleProp];
delete _local2.stylecache.tf;
}
delete _local2.enabledColor;
_local2.invalidateStyle(styleProp);
}
_local2.notifyStyleChangeInChildren(sheetName, styleProp, newValue);
_local2.searchKey = _local5;
}
}
}
}
function setStyle(styleProp, newValue) {
if (stylecache != undefined) {
delete stylecache[styleProp];
delete stylecache.tf;
}
this[styleProp] = newValue;
if (mx.styles.StyleManager.isColorStyle(styleProp)) {
if (isNaN(newValue)) {
newValue = mx.styles.StyleManager.getColorName(newValue);
this[styleProp] = newValue;
if (newValue == undefined) {
return(undefined);
}
}
if (styleProp == "themeColor") {
var _local10 = mx.styles.StyleManager.colorNames.haloBlue;
var _local9 = mx.styles.StyleManager.colorNames.haloGreen;
var _local11 = mx.styles.StyleManager.colorNames.haloOrange;
var _local6 = {};
_local6[_local10] = 12188666 /* 0xB9FBFA */;
_local6[_local9] = 13500353 /* 0xCDFFC1 */;
_local6[_local11] = 16766319 /* 0xFFD56F */;
var _local7 = {};
_local7[_local10] = 13958653 /* 0xD4FDFD */;
_local7[_local9] = 14942166 /* 0xE3FFD6 */;
_local7[_local11] = 16772787 /* 0xFFEEB3 */;
var _local12 = _local6[newValue];
var _local13 = _local7[newValue];
if (_local12 == undefined) {
_local12 = newValue;
}
if (_local13 == undefined) {
_local13 = newValue;
}
setStyle("selectionColor", _local12);
setStyle("rollOverColor", _local13);
}
if (typeof(_color) == "string") {
if (_color == styleProp) {
if (styleProp == "color") {
if (stylecache.tf.color != undefined) {
stylecache.tf.color = newValue;
}
}
setColor(newValue);
}
} else if (_color[styleProp] != undefined) {
invalidateStyle(styleProp);
}
changeColorStyleInChildren(undefined, styleProp, newValue);
} else {
if ((styleProp == "backgroundColor") && (isNaN(newValue))) {
newValue = mx.styles.StyleManager.getColorName(newValue);
this[styleProp] = newValue;
if (newValue == undefined) {
return(undefined);
}
}
invalidateStyle(styleProp);
}
if (mx.styles.StyleManager.isInheritingStyle(styleProp) || (styleProp == "styleName")) {
var _local8;
var _local5 = newValue;
if (styleProp == "styleName") {
_local8 = ((typeof(newValue) == "string") ? (_global.styles[newValue]) : (_local5));
_local5 = _local8.themeColor;
if (_local5 != undefined) {
_local8.rollOverColor = (_local8.selectionColor = _local5);
}
}
notifyStyleChangeInChildren(undefined, styleProp, newValue);
}
}
static function enableRunTimeCSS() {
}
static function classConstruct() {
var _local2 = MovieClip.prototype;
var _local3 = mx.styles.CSSSetStyle.prototype;
mx.styles.CSSStyleDeclaration.prototype.setStyle = _local3._setStyle;
_local2.changeTextStyleInChildren = _local3.changeTextStyleInChildren;
_local2.changeColorStyleInChildren = _local3.changeColorStyleInChildren;
_local2.notifyStyleChangeInChildren = _local3.notifyStyleChangeInChildren;
_local2.setStyle = _local3.setStyle;
_global.ASSetPropFlags(_local2, "changeTextStyleInChildren", 1);
_global.ASSetPropFlags(_local2, "changeColorStyleInChildren", 1);
_global.ASSetPropFlags(_local2, "notifyStyleChangeInChildren", 1);
_global.ASSetPropFlags(_local2, "setStyle", 1);
var _local4 = TextField.prototype;
_local4.setStyle = _local2.setStyle;
_local4.changeTextStyleInChildren = _local3.changeTextStyleInChildren;
return(true);
}
static var classConstructed = classConstruct();
static var CSSStyleDeclarationDependency = mx.styles.CSSStyleDeclaration;
}
Symbol 255 MovieClip [__Packages.mx.core.ext.UIComponentExtensions] Frame 0
class mx.core.ext.UIComponentExtensions
{
function UIComponentExtensions () {
}
static function Extensions() {
if (bExtended == true) {
return(true);
}
bExtended = true;
TextField.prototype.setFocus = function () {
Selection.setFocus(this);
};
TextField.prototype.onSetFocus = function (oldFocus) {
if (this.tabEnabled != false) {
if (this.getFocusManager().bDrawFocus) {
this.drawFocus(true);
}
}
};
TextField.prototype.onKillFocus = function (oldFocus) {
if (this.tabEnabled != false) {
this.drawFocus(false);
}
};
TextField.prototype.drawFocus = mx.core.UIComponent.prototype.drawFocus;
TextField.prototype.getFocusManager = mx.core.UIComponent.prototype.getFocusManager;
mx.managers.OverlappedWindows.enableOverlappedWindows();
mx.styles.CSSSetStyle.enableRunTimeCSS();
mx.managers.FocusManager.enableFocusManagement();
}
static var bExtended = false;
static var UIComponentExtended = Extensions();
static var UIComponentDependency = mx.core.UIComponent;
static var FocusManagerDependency = mx.managers.FocusManager;
static var OverlappedWindowsDependency = mx.managers.OverlappedWindows;
}
Symbol 256 MovieClip [__Packages.mx.controls.HScrollBar] Frame 0
class mx.controls.HScrollBar extends mx.controls.scrollClasses.ScrollBar
{
var _minHeight, _minWidth, _xscale, _rotation, __width, scrollIt;
function HScrollBar () {
super();
}
function getMinWidth(Void) {
return(_minHeight);
}
function getMinHeight(Void) {
return(_minWidth);
}
function init(Void) {
super.init();
_xscale = -100;
_rotation = -90;
}
function get virtualHeight() {
return(__width);
}
function isScrollBarKey(k) {
if (k == 37) {
scrollIt("Line", -1);
return(true);
}
if (k == 39) {
scrollIt("Line", 1);
return(true);
}
return(super.isScrollBarKey(k));
}
static var symbolName = "HScrollBar";
static var symbolOwner = mx.core.UIComponent;
static var version = "2.0.2.126";
var className = "HScrollBar";
var minusMode = "Left";
var plusMode = "Right";
var minMode = "AtLeft";
var maxMode = "AtRight";
}
Symbol 257 MovieClip [__Packages.mx.controls.Button] Frame 0
class mx.controls.Button extends mx.controls.SimpleButton
{
var initializing, labelPath, initIcon, getState, enabled, phase, idNames, __width, __height, setState, invalidate, iconName, refresh, createLabel, _iconLinkageName, removeIcons, hitArea_mc, createEmptyObject;
function Button () {
super();
}
function init(Void) {
super.init();
}
function draw() {
if (initializing) {
labelPath.visible = true;
}
super.draw();
if (initIcon != undefined) {
_setIcon(initIcon);
}
delete initIcon;
}
function onRelease(Void) {
super.onRelease();
}
function createChildren(Void) {
super.createChildren();
}
function setSkin(tag, linkageName, initobj) {
return(super.setSkin(tag, linkageName, initobj));
}
function viewSkin(varName) {
var _local3 = (getState() ? "true" : "false");
_local3 = _local3 + (enabled ? (phase) : "disabled");
super.viewSkin(varName, {styleName:this, borderStyle:_local3});
}
function invalidateStyle(c) {
labelPath.invalidateStyle(c);
super.invalidateStyle(c);
}
function setColor(c) {
var _local2 = 0;
while (_local2 < 8) {
this[idNames[_local2]].redraw(true);
_local2++;
}
}
function setEnabled(enable) {
labelPath.enabled = enable;
super.setEnabled(enable);
}
function calcSize(tag, ref) {
if ((__width == undefined) || (__height == undefined)) {
return(undefined);
}
if (tag < 7) {
ref.setSize(__width, __height, true);
}
}
function size(Void) {
setState(getState());
setHitArea(__width, __height);
var _local3 = 0;
while (_local3 < 8) {
var _local4 = idNames[_local3];
if (typeof(this[_local4]) == "movieclip") {
this[_local4].setSize(__width, __height, true);
}
_local3++;
}
super.size();
}
function set labelPlacement(val) {
__labelPlacement = val;
invalidate();
//return(labelPlacement);
}
function get labelPlacement() {
return(__labelPlacement);
}
function getLabelPlacement(Void) {
return(__labelPlacement);
}
function setLabelPlacement(val) {
__labelPlacement = val;
invalidate();
}
function getBtnOffset(Void) {
if (getState()) {
var _local2 = btnOffset;
} else if (phase == "down") {
var _local2 = btnOffset;
} else {
var _local2 = 0;
}
return(_local2);
}
function setView(offset) {
var _local16 = (offset ? (btnOffset) : 0);
var _local12 = getLabelPlacement();
var _local7 = 0;
var _local6 = 0;
var _local9 = 0;
var _local8 = 0;
var _local5 = 0;
var _local4 = 0;
var _local3 = labelPath;
var _local2 = iconName;
var _local15 = _local3.textWidth;
var _local14 = _local3.textHeight;
var _local10 = (__width - borderW) - borderW;
var _local11 = (__height - borderW) - borderW;
if (_local2 != undefined) {
_local7 = _local2._width;
_local6 = _local2._height;
}
if ((_local12 == "left") || (_local12 == "right")) {
if (_local3 != undefined) {
_local9 = Math.min(_local10 - _local7, _local15 + 5);
_local3._width = _local9;
_local8 = Math.min(_local11, _local14 + 5);
_local3._height = _local8;
}
if (_local12 == "right") {
_local5 = _local7;
if (centerContent) {
_local5 = _local5 + (((_local10 - _local9) - _local7) / 2);
}
_local2._x = _local5 - _local7;
} else {
_local5 = (_local10 - _local9) - _local7;
if (centerContent) {
_local5 = _local5 / 2;
}
_local2._x = _local5 + _local9;
}
_local4 = 0;
_local2._y = _local4;
if (centerContent) {
_local2._y = (_local11 - _local6) / 2;
_local4 = (_local11 - _local8) / 2;
}
if (!centerContent) {
_local2._y = _local2._y + Math.max(0, (_local8 - _local6) / 2);
}
} else {
if (_local3 != undefined) {
_local9 = Math.min(_local10, _local15 + 5);
_local3._width = _local9;
_local8 = Math.min(_local11 - _local6, _local14 + 5);
_local3._height = _local8;
}
_local5 = (_local10 - _local9) / 2;
_local2._x = (_local10 - _local7) / 2;
if (_local12 == "top") {
_local4 = (_local11 - _local8) - _local6;
if (centerContent) {
_local4 = _local4 / 2;
}
_local2._y = _local4 + _local8;
} else {
_local4 = _local6;
if (centerContent) {
_local4 = _local4 + (((_local11 - _local8) - _local6) / 2);
}
_local2._y = _local4 - _local6;
}
}
var _local13 = borderW + _local16;
_local3._x = _local5 + _local13;
_local3._y = _local4 + _local13;
_local2._x = _local2._x + _local13;
_local2._y = _local2._y + _local13;
}
function set label(lbl) {
setLabel(lbl);
//return(label);
}
function setLabel(label) {
if (label == "") {
labelPath.removeTextField();
refresh();
return(undefined);
}
if (labelPath == undefined) {
var _local2 = createLabel("labelPath", 200, label);
_local2._width = _local2.textWidth + 5;
_local2._height = _local2.textHeight + 5;
if (initializing) {
_local2.visible = false;
}
} else {
delete labelPath.__text;
labelPath.text = label;
refresh();
}
}
function getLabel(Void) {
return(((labelPath.__text != undefined) ? (labelPath.__text) : (labelPath.text)));
}
function get label() {
return(getLabel());
}
function _getIcon(Void) {
return(_iconLinkageName);
}
function get icon() {
if (initializing) {
return(initIcon);
}
return(_iconLinkageName);
}
function _setIcon(linkage) {
if (initializing) {
if (linkage == "") {
return(undefined);
}
initIcon = linkage;
} else {
if (linkage == "") {
removeIcons();
return(undefined);
}
super.changeIcon(0, linkage);
super.changeIcon(1, linkage);
super.changeIcon(3, linkage);
super.changeIcon(4, linkage);
super.changeIcon(5, linkage);
_iconLinkageName = linkage;
refresh();
}
}
function set icon(linkage) {
_setIcon(linkage);
//return(icon);
}
function setHitArea(w, h) {
if (hitArea_mc == undefined) {
createEmptyObject("hitArea_mc", 100);
}
var _local2 = hitArea_mc;
_local2.clear();
_local2.beginFill(16711680);
_local2.drawRect(0, 0, w, h);
_local2.endFill();
_local2.setVisible(false);
}
static var symbolName = "Button";
static var symbolOwner = mx.controls.Button;
var className = "Button";
static var version = "2.0.2.126";
var btnOffset = 0;
var _color = "buttonColor";
var __label = "default value";
var __labelPlacement = "right";
var falseUpSkin = "ButtonSkin";
var falseDownSkin = "ButtonSkin";
var falseOverSkin = "ButtonSkin";
var falseDisabledSkin = "ButtonSkin";
var trueUpSkin = "ButtonSkin";
var trueDownSkin = "ButtonSkin";
var trueOverSkin = "ButtonSkin";
var trueDisabledSkin = "ButtonSkin";
var falseUpIcon = "";
var falseDownIcon = "";
var falseOverIcon = "";
var falseDisabledIcon = "";
var trueUpIcon = "";
var trueDownIcon = "";
var trueOverIcon = "";
var trueDisabledIcon = "";
var clipParameters = {labelPlacement:1, icon:1, toggle:1, selected:1, label:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.Button.prototype.clipParameters, mx.controls.SimpleButton.prototype.clipParameters);
var centerContent = true;
var borderW = 1;
}
Symbol 258 MovieClip [__Packages.mx.skins.halo.RectBorder] Frame 0
class mx.skins.halo.RectBorder extends mx.skins.RectBorder
{
var offset, getStyle, borderStyleName, __borderMetrics, className, borderColorName, backgroundColorName, shadowColorName, highlightColorName, buttonColorName, __get__width, __get__height, clear, _color, drawRoundRect, beginFill, drawRect, endFill;
function RectBorder () {
super();
}
function init(Void) {
borderWidths.default = 3;
super.init();
}
function getBorderMetrics(Void) {
if (offset == undefined) {
var _local3 = getStyle(borderStyleName);
offset = borderWidths[_local3];
}
if ((getStyle(borderStyleName) == "default") || (getStyle(borderStyleName) == "alert")) {
__borderMetrics = {left:3, top:1, right:3, bottom:3};
return(__borderMetrics);
}
return(super.getBorderMetrics());
}
function drawBorder(Void) {
var _local6 = _global.styles[className];
if (_local6 == undefined) {
_local6 = _global.styles.RectBorder;
}
var _local5 = getStyle(borderStyleName);
var _local7 = getStyle(borderColorName);
if (_local7 == undefined) {
_local7 = _local6[borderColorName];
}
var _local8 = getStyle(backgroundColorName);
if (_local8 == undefined) {
_local8 = _local6[backgroundColorName];
}
var _local16 = getStyle("backgroundImage");
if (_local5 != "none") {
var _local14 = getStyle(shadowColorName);
if (_local14 == undefined) {
_local14 = _local6[shadowColorName];
}
var _local13 = getStyle(highlightColorName);
if (_local13 == undefined) {
_local13 = _local6[highlightColorName];
}
var _local12 = getStyle(buttonColorName);
if (_local12 == undefined) {
_local12 = _local6[buttonColorName];
}
var _local11 = getStyle(borderCapColorName);
if (_local11 == undefined) {
_local11 = _local6[borderCapColorName];
}
var _local10 = getStyle(shadowCapColorName);
if (_local10 == undefined) {
_local10 = _local6[shadowCapColorName];
}
}
offset = borderWidths[_local5];
var _local9 = offset;
var _local3 = __get__width();
var _local4 = __get__height();
clear();
_color = undefined;
if (_local5 == "none") {
} else if (_local5 == "inset") {
_color = colorList;
draw3dBorder(_local11, _local12, _local7, _local13, _local14, _local10);
} else if (_local5 == "outset") {
_color = colorList;
draw3dBorder(_local11, _local7, _local12, _local14, _local13, _local10);
} else if (_local5 == "alert") {
var _local15 = getStyle("themeColor");
drawRoundRect(0, 5, _local3, _local4 - 5, 5, 6184542, 10);
drawRoundRect(1, 4, _local3 - 2, _local4 - 5, 4, [6184542, 6184542], 10, 0, "radial");
drawRoundRect(2, 0, _local3 - 4, _local4 - 2, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(2, 0, _local3 - 4, _local4 - 2, 3, _local15, 50);
drawRoundRect(3, 1, _local3 - 6, _local4 - 4, 2, 16777215, 100);
} else if (_local5 == "default") {
drawRoundRect(0, 5, _local3, _local4 - 5, {tl:5, tr:5, br:0, bl:0}, 6184542, 10);
drawRoundRect(1, 4, _local3 - 2, _local4 - 5, {tl:4, tr:4, br:0, bl:0}, [6184542, 6184542], 10, 0, "radial");
drawRoundRect(2, 0, _local3 - 4, _local4 - 2, {tl:3, tr:3, br:0, bl:0}, [12897484, 11844796], 100, 0, "radial");
drawRoundRect(3, 1, _local3 - 6, _local4 - 4, {tl:2, tr:2, br:0, bl:0}, 16777215, 100);
} else if (_local5 == "dropDown") {
drawRoundRect(0, 0, _local3 + 1, _local4, {tl:4, tr:0, br:0, bl:4}, [13290186, 7895160], 100, -10, "linear");
drawRoundRect(1, 1, _local3 - 1, _local4 - 2, {tl:3, tr:0, br:0, bl:3}, 16777215, 100);
} else if (_local5 == "menuBorder") {
var _local15 = getStyle("themeColor");
drawRoundRect(4, 4, _local3 - 2, _local4 - 3, 0, [6184542, 6184542], 10, 0, "radial");
drawRoundRect(4, 4, _local3 - 1, _local4 - 2, 0, 6184542, 10);
drawRoundRect(0, 0, _local3 + 1, _local4, 0, [0, 14342874], 100, 250, "linear");
drawRoundRect(0, 0, _local3 + 1, _local4, 0, _local15, 50);
drawRoundRect(2, 2, _local3 - 3, _local4 - 4, 0, 16777215, 100);
} else if (_local5 == "comboNonEdit") {
} else {
beginFill(_local7);
drawRect(0, 0, _local3, _local4);
drawRect(1, 1, _local3 - 1, _local4 - 1);
endFill();
_color = borderColorName;
}
if (_local8 != undefined) {
beginFill(_local8);
drawRect(_local9, _local9, __get__width() - _local9, __get__height() - _local9);
endFill();
}
}
function draw3dBorder(c1, c2, c3, c4, c5, c6) {
var _local3 = __get__width();
var _local2 = __get__height();
beginFill(c1);
drawRect(0, 0, _local3, _local2);
drawRect(1, 0, _local3 - 1, _local2);
endFill();
beginFill(c2);
drawRect(1, 0, _local3 - 1, 1);
endFill();
beginFill(c3);
drawRect(1, _local2 - 1, _local3 - 1, _local2);
endFill();
beginFill(c4);
drawRect(1, 1, _local3 - 1, 2);
endFill();
beginFill(c5);
drawRect(1, _local2 - 2, _local3 - 1, _local2 - 1);
endFill();
beginFill(c6);
drawRect(1, 2, _local3 - 1, _local2 - 2);
drawRect(2, 2, _local3 - 2, _local2 - 2);
endFill();
}
static function classConstruct() {
mx.core.ext.UIObjectExtensions.Extensions();
_global.styles.rectBorderClass = mx.skins.halo.RectBorder;
_global.skinRegistry.RectBorder = true;
return(true);
}
static var symbolName = "RectBorder";
static var symbolOwner = mx.skins.halo.RectBorder;
static var version = "2.0.2.126";
var borderCapColorName = "borderCapColor";
var shadowCapColorName = "shadowCapColor";
var colorList = {highlightColor:0, borderColor:0, buttonColor:0, shadowColor:0, borderCapColor:0, shadowCapColor:0};
var borderWidths = {none:0, solid:1, inset:2, outset:2, alert:3, dropDown:2, menuBorder:2, comboNonEdit:2};
static var classConstructed = classConstruct();
static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions;
}
Symbol 259 MovieClip [__Packages.mx.skins.halo.ButtonSkin] Frame 0
class mx.skins.halo.ButtonSkin extends mx.skins.RectBorder
{
var __get__width, __get__height, getStyle, _parent, clear, drawRoundRect, __get__x, __get__y;
function ButtonSkin () {
super();
}
function init() {
super.init();
}
function size() {
drawHaloRect(__get__width(), __get__height());
}
function drawHaloRect(w, h) {
var _local6 = getStyle("borderStyle");
var _local4 = getStyle("themeColor");
var _local5 = _parent.emphasized;
clear();
switch (_local6) {
case "falseup" :
if (_local5) {
drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100);
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 75);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 85, 0, "radial");
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 75);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100);
} else {
drawRoundRect(0, 0, w, h, 5, 9542041, 100);
drawRoundRect(1, 1, w - 2, h - 2, 4, [13291985, 16250871], 100, 0, "radial");
drawRoundRect(2, 2, w - 4, h - 4, 3, [9542041, 13818586], 100, 0, "radial");
drawRoundRect(3, 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(3, 4, w - 6, h - 7, 2, 16316664, 100);
}
break;
case "falsedown" :
drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial");
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50);
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, _local4, 20);
break;
case "falserollover" :
drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100);
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 50);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 100, 0, "radial");
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 50);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100);
break;
case "falsedisabled" :
drawRoundRect(0, 0, w, h, 5, 13159628, 100);
drawRoundRect(1, 1, w - 2, h - 2, 4, 15921906, 100);
drawRoundRect(2, 2, w - 4, h - 4, 3, 13949401, 100);
drawRoundRect(3, 3, w - 6, h - 6, 2, 15921906, 100);
break;
case "trueup" :
drawRoundRect(__get__x(), __get__y(), w, h, 5, 10066329, 100);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial");
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50);
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16250871, 100);
break;
case "truedown" :
drawRoundRect(__get__x(), __get__y(), w, h, 5, 10066329, 100);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16579836], 100, 0, "radial");
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 50);
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 40);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, _local4, 20);
break;
case "truerollover" :
drawRoundRect(__get__x(), __get__y(), w, h, 5, 9542041, 100);
drawRoundRect(__get__x(), __get__y(), w, h, 5, _local4, 50);
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, [3355443, 16777215], 100, 0, "radial");
drawRoundRect(__get__x() + 1, __get__y() + 1, w - 2, h - 2, 4, _local4, 40);
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, [0, 14342874], 100, 0, "radial");
drawRoundRect(__get__x() + 2, __get__y() + 2, w - 4, h - 4, 3, _local4, 40);
drawRoundRect(__get__x() + 3, __get__y() + 3, w - 6, h - 6, 2, 16777215, 100);
drawRoundRect(__get__x() + 3, __get__y() + 4, w - 6, h - 7, 2, 16316664, 100);
break;
case "truedisabled" :
drawRoundRect(0, 0, w, h, 5, 13159628, 100);
drawRoundRect(1, 1, w - 2, h - 2, 4, 15921906, 100);
drawRoundRect(2, 2, w - 4, h - 4, 3, 13949401, 100);
drawRoundRect(3, 3, w - 6, h - 6, 2, 15921906, 100);
}
}
static function classConstruct() {
mx.core.ext.UIObjectExtensions.Extensions();
_global.skinRegistry.ButtonSkin = true;
return(true);
}
static var symbolName = "ButtonSkin";
static var symbolOwner = mx.skins.halo.ButtonSkin;
var className = "ButtonSkin";
var backgroundColorName = "buttonColor";
static var classConstructed = classConstruct();
static var UIObjectExtensionsDependency = mx.core.ext.UIObjectExtensions;
}
Symbol 260 MovieClip [__Packages.mx.controls.VScrollBar] Frame 0
class mx.controls.VScrollBar extends mx.controls.scrollClasses.ScrollBar
{
var scrollIt;
function VScrollBar () {
super();
}
function init(Void) {
super.init();
}
function isScrollBarKey(k) {
if (k == 38) {
scrollIt("Line", -1);
return(true);
}
if (k == 40) {
scrollIt("Line", 1);
return(true);
}
if (k == 33) {
scrollIt("Page", -1);
return(true);
}
if (k == 34) {
scrollIt("Page", 1);
return(true);
}
return(super.isScrollBarKey(k));
}
static var symbolName = "VScrollBar";
static var symbolOwner = mx.core.UIComponent;
static var version = "2.0.2.126";
var className = "VScrollBar";
var minusMode = "Up";
var plusMode = "Down";
var minMode = "AtTop";
var maxMode = "AtBottom";
}
Symbol 261 MovieClip [__Packages.mx.controls.ComboBase] Frame 0
class mx.controls.ComboBase extends mx.core.UIComponent
{
var getValue, tabEnabled, tabChildren, boundingBox_mc, downArrow_mc, createClassObject, onDownArrow, border_mc, __border, text_mc, focusTextField, __width, __height, getFocusManager, __get__height, height, _parent;
function ComboBase () {
super();
getValue = _getValue;
}
function init() {
super.init();
tabEnabled = !_editable;
tabChildren = _editable;
boundingBox_mc._visible = false;
boundingBox_mc._width = (boundingBox_mc._height = 0);
}
function createChildren() {
var _local3 = new Object();
_local3.styleName = this;
if (downArrow_mc == undefined) {
_local3.falseUpSkin = downArrowUpName;
_local3.falseOverSkin = downArrowOverName;
_local3.falseDownSkin = downArrowDownName;
_local3.falseDisabledSkin = downArrowDisabledName;
_local3.validateNow = true;
_local3.tabEnabled = false;
createClassObject(mx.controls.SimpleButton, "downArrow_mc", 19, _local3);
downArrow_mc.buttonDownHandler = onDownArrow;
downArrow_mc.useHandCursor = false;
downArrow_mc.onPressWas = downArrow_mc.onPress;
downArrow_mc.onPress = function () {
this.trackAsMenuWas = this.trackAsMenu;
this.trackAsMenu = true;
if (!this._editable) {
this._parent.text_mc.trackAsMenu = this.trackAsMenu;
}
this.onPressWas();
};
downArrow_mc.onDragOutWas = downArrow_mc.onDragOut;
downArrow_mc.onDragOut = function () {
this.trackAsMenuWas = this.trackAsMenu;
this.trackAsMenu = false;
if (!this._editable) {
this._parent.text_mc.trackAsMenu = this.trackAsMenu;
}
this.onDragOutWas();
};
downArrow_mc.onDragOverWas = downArrow_mc.onDragOver;
downArrow_mc.onDragOver = function () {
this.trackAsMenu = this.trackAsMenuWas;
if (!this._editable) {
this._parent.text_mc.trackAsMenu = this.trackAsMenu;
}
this.onDragOverWas();
};
}
if (border_mc == undefined) {
_local3.tabEnabled = false;
createClassObject(_global.styles.rectBorderClass, "border_mc", 17, _local3);
border_mc.move(0, 0);
__border = border_mc;
}
_local3.borderStyle = "none";
_local3.readOnly = !_editable;
_local3.tabEnabled = _editable;
if (text_mc == undefined) {
createClassObject(mx.controls.TextInput, "text_mc", 18, _local3);
text_mc.move(0, 0);
text_mc.addEnterEvents();
text_mc.enterHandler = _enterHandler;
text_mc.changeHandler = _changeHandler;
text_mc.oldOnSetFocus = text_mc.onSetFocus;
text_mc.onSetFocus = function () {
this.oldOnSetFocus();
this._parent.onSetFocus();
};
text_mc.__set__restrict("^\x1B");
text_mc.oldOnKillFocus = text_mc.onKillFocus;
text_mc.onKillFocus = function (n) {
this.oldOnKillFocus(n);
this._parent.onKillFocus(n);
};
text_mc.drawFocus = function (b) {
this._parent.drawFocus(b);
};
delete text_mc.borderStyle;
}
focusTextField = text_mc;
text_mc.owner = this;
layoutChildren(__width, __height);
}
function onKillFocus() {
super.onKillFocus();
Key.removeListener(text_mc);
getFocusManager().defaultPushButtonEnabled = true;
}
function onSetFocus() {
super.onSetFocus();
getFocusManager().defaultPushButtonEnabled = false;
Key.addListener(text_mc);
}
function setFocus() {
if (_editable) {
Selection.setFocus(text_mc);
} else {
Selection.setFocus(this);
}
}
function setSize(w, h, noEvent) {
super.setSize(w, ((h == undefined) ? (__get__height()) : (h)), noEvent);
}
function setEnabled(enabledFlag) {
super.setEnabled(enabledFlag);
downArrow_mc.enabled = enabledFlag;
text_mc.enabled = enabledFlag;
}
function setEditable(e) {
_editable = e;
if (wrapDownArrowButton == false) {
if (e) {
border_mc.borderStyle = "inset";
text_mc.borderStyle = "inset";
symbolName = "ComboBox";
invalidateStyle();
} else {
border_mc.borderStyle = "comboNonEdit";
text_mc.borderStyle = "dropDown";
symbolName = "DropDown";
invalidateStyle();
}
}
tabEnabled = !e;
tabChildren = e;
text_mc.tabEnabled = e;
if (e) {
delete text_mc.onPress;
delete text_mc.onRelease;
delete text_mc.onReleaseOutside;
delete text_mc.onDragOut;
delete text_mc.onDragOver;
delete text_mc.onRollOver;
delete text_mc.onRollOut;
} else {
text_mc.onPress = function () {
this._parent.downArrow_mc.onPress();
};
text_mc.onRelease = function () {
this._parent.downArrow_mc.onRelease();
};
text_mc.onReleaseOutside = function () {
this._parent.downArrow_mc.onReleaseOutside();
};
text_mc.onDragOut = function () {
this._parent.downArrow_mc.onDragOut();
};
text_mc.onDragOver = function () {
this._parent.downArrow_mc.onDragOver();
};
text_mc.onRollOver = function () {
this._parent.downArrow_mc.onRollOver();
};
text_mc.onRollOut = function () {
this._parent.downArrow_mc.onRollOut();
};
text_mc.useHandCursor = false;
}
}
function get editable() {
return(_editable);
}
function set editable(e) {
setEditable(e);
//return(editable);
}
function _getValue() {
return((_editable ? (text_mc.getText()) : (DSgetValue())));
}
function draw() {
downArrow_mc.draw();
border_mc.draw();
}
function size() {
layoutChildren(__width, __height);
}
function setTheme(t) {
downArrowUpName = (t + "downArrow") + "Up_mc";
downArrowDownName = (t + "downArrow") + "Down_mc";
downArrowDisabledName = (t + "downArrow") + "Disabled_mc";
}
function get text() {
return(text_mc.getText());
}
function set text(t) {
setText(t);
//return(text);
}
function setText(t) {
text_mc.setText(t);
}
function get textField() {
return(text_mc);
}
function get restrict() {
return(text_mc.__get__restrict());
}
function set restrict(w) {
text_mc.__set__restrict(w);
//return(restrict);
}
function invalidateStyle() {
downArrow_mc.invalidateStyle();
text_mc.invalidateStyle();
border_mc.invalidateStyle();
}
function layoutChildren(w, h) {
if (downArrow_mc == undefined) {
return(undefined);
}
if (wrapDownArrowButton) {
var _local2 = border_mc.__get__borderMetrics();
downArrow_mc._width = (downArrow_mc._height = (h - _local2.top) - _local2.bottom);
downArrow_mc.move((w - downArrow_mc._width) - _local2.right, _local2.top);
border_mc.setSize(w, h);
text_mc.setSize(w - downArrow_mc._width, h);
} else {
downArrow_mc.move(w - downArrow_mc._width, 0);
border_mc.setSize(w - downArrow_mc.width, h);
text_mc.setSize(w - downArrow_mc._width, h);
downArrow_mc._height = height;
}
}
function _changeHandler(obj) {
}
function _enterHandler(obj) {
var _local2 = _parent;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function get tabIndex() {
return(text_mc.__get__tabIndex());
}
function set tabIndex(w) {
text_mc.__set__tabIndex(w);
//return(tabIndex);
}
static var mixIt1 = mx.controls.listclasses.DataSelector.Initialize(mx.controls.ComboBase);
static var symbolName = "ComboBase";
static var symbolOwner = mx.controls.ComboBase;
static var version = "2.0.2.126";
var _editable = false;
var downArrowUpName = "ScrollDownArrowUp";
var downArrowDownName = "ScrollDownArrowDown";
var downArrowOverName = "ScrollDownArrowOver";
var downArrowDisabledName = "ScrollDownArrowDisabled";
var wrapDownArrowButton = true;
var DSgetValue = mx.controls.listclasses.DataSelector.prototype.getValue;
var multipleSelection = false;
}
Symbol 262 MovieClip [__Packages.mx.controls.ComboBox] Frame 0
class mx.controls.ComboBox extends mx.controls.ComboBase
{
var __set__editable, editable, __labels, data, __dropdownWidth, __width, _editable, selectedIndex, __dropdown, dataProvider, __labelFunction, createObject, border_mc, mask, text_mc, dispatchValueChangedEvent, getValue, length, selectedItem, _y, isPressed, owner, __set__visible, height, localToGlobal, __selectedIndexOnDropdown, __initialSelectedIndexOnDropdown, __get__height, getStyle, _parent, width, __dataProvider, selected, dispatchEvent;
function ComboBox () {
super();
}
function init() {
super.init();
}
function createChildren() {
super.createChildren();
__set__editable(editable);
if (__labels.length > 0) {
var _local6 = new Array();
var _local3 = 0;
while (_local3 < labels.length) {
_local6.addItem({label:labels[_local3], data:data[_local3]});
_local3++;
}
setDataProvider(_local6);
}
dropdownWidth = (((typeof(__dropdownWidth) == "number") ? (__dropdownWidth) : (__width)));
if (!_editable) {
selectedIndex = 0;
}
initializing = false;
}
function onKillFocus(n) {
if (_showingDropdown && (n != null)) {
displayDropdown(false);
}
super.onKillFocus();
}
function getDropdown() {
if (initializing) {
return(undefined);
}
if (!hasDropdown()) {
var _local3 = new Object();
_local3.styleName = this;
if (dropdownBorderStyle != undefined) {
_local3.borderStyle = dropdownBorderStyle;
}
_local3._visible = false;
__dropdown = mx.managers.PopUpManager.createPopUp(this, mx.controls.List, false, _local3, true);
__dropdown.scroller.mask.removeMovieClip();
if (dataProvider == undefined) {
dataProvider = new Array();
}
__dropdown.setDataProvider(dataProvider);
__dropdown.selectMultiple = false;
__dropdown.rowCount = __rowCount;
__dropdown.selectedIndex = selectedIndex;
__dropdown.vScrollPolicy = "auto";
__dropdown.labelField = __labelField;
__dropdown.labelFunction = __labelFunction;
__dropdown.owner = this;
__dropdown.changeHandler = _changeHandler;
__dropdown.scrollHandler = _scrollHandler;
__dropdown.itemRollOverHandler = _itemRollOverHandler;
__dropdown.itemRollOutHandler = _itemRollOutHandler;
__dropdown.resizeHandler = _resizeHandler;
__dropdown.mouseDownOutsideHandler = function (eventObj) {
var _local3 = this.owner;
var _local4 = new Object();
_local4.x = _local3._root._xmouse;
_local4.y = _local3._root._ymouse;
_local3._root.localToGlobal(_local4);
if (_local3.hitTest(_local4.x, _local4.y, false)) {
} else if ((!this.wrapDownArrowButton) && (this.owner.downArrow_mc.hitTest(_root._xmouse, _root._ymouse, false))) {
} else {
_local3.displayDropdown(false);
}
};
__dropdown.onTweenUpdate = function (v) {
this._y = v;
};
__dropdown.setSize(__dropdownWidth, __dropdown.height);
createObject("BoundingBox", "mask", 20);
mask._y = border_mc.height;
mask._width = __dropdownWidth;
mask._height = __dropdown.height;
mask._visible = false;
__dropdown.setMask(mask);
}
return(__dropdown);
}
function setSize(w, h, noEvent) {
super.setSize(w, h, noEvent);
__dropdownWidth = w;
__dropdown.rowHeight = h;
__dropdown.setSize(__dropdownWidth, __dropdown.height);
}
function setEditable(e) {
super.setEditable(e);
if (e) {
text_mc.setText("");
} else {
text_mc.setText(selectedLabel);
}
}
function get labels() {
return(__labels);
}
function set labels(lbls) {
__labels = lbls;
setDataProvider(lbls);
//return(labels);
}
function getLabelField() {
return(__labelField);
}
function get labelField() {
return(getLabelField());
}
function setLabelField(s) {
__dropdown.labelField = (__labelField = s);
text_mc.setText(selectedLabel);
}
function set labelField(s) {
setLabelField(s);
//return(labelField);
}
function getLabelFunction() {
return(__labelFunction);
}
function get labelFunction() {
return(getLabelFunction());
}
function set labelFunction(f) {
__dropdown.labelFunction = (__labelFunction = f);
text_mc.setText(selectedLabel);
//return(labelFunction);
}
function setSelectedItem(v) {
super.setSelectedItem(v);
__dropdown.selectedItem = v;
text_mc.setText(selectedLabel);
}
function setSelectedIndex(v) {
super.setSelectedIndex(v);
__dropdown.selectedIndex = v;
if (v != undefined) {
text_mc.setText(selectedLabel);
}
dispatchValueChangedEvent(getValue());
}
function setRowCount(count) {
if (isNaN(count)) {
return(undefined);
}
__rowCount = count;
__dropdown.setRowCount(count);
}
function get rowCount() {
return(Math.max(1, Math.min(length, __rowCount)));
}
function set rowCount(v) {
setRowCount(v);
//return(rowCount);
}
function setDropdownWidth(w) {
__dropdownWidth = w;
__dropdown.setSize(w, __dropdown.height);
}
function get dropdownWidth() {
return(__dropdownWidth);
}
function set dropdownWidth(v) {
setDropdownWidth(v);
//return(dropdownWidth);
}
function get dropdown() {
return(getDropdown());
}
function setDataProvider(dp) {
super.setDataProvider(dp);
__dropdown.setDataProvider(dp);
if (!_editable) {
selectedIndex = 0;
}
}
function open() {
displayDropdown(true);
}
function close() {
displayDropdown(false);
}
function get selectedLabel() {
var _local2 = selectedItem;
if (_local2 == undefined) {
return("");
}
if (labelFunction != undefined) {
return(labelFunction(_local2));
}
if (typeof(_local2) != "object") {
return(_local2);
}
if (_local2[labelField] != undefined) {
return(_local2[labelField]);
}
if (_local2.label != undefined) {
return(_local2.label);
}
var _local3 = " ";
for (var _local4 in _local2) {
if (_local4 != "__ID__") {
_local3 = (_local2[_local4] + ", ") + _local3;
}
}
_local3 = _local3.substring(0, _local3.length - 3);
return(_local3);
}
function hasDropdown() {
return((__dropdown != undefined) && (__dropdown.valueOf() != undefined));
}
function tweenEndShow(value) {
_y = value;
isPressed = true;
owner.dispatchEvent({type:"open", target:owner});
}
function tweenEndHide(value) {
_y = value;
__set__visible(false);
owner.dispatchEvent({type:"close", target:owner});
}
function displayDropdown(show) {
if (show == _showingDropdown) {
return(undefined);
}
var _local3 = new Object();
_local3.x = 0;
_local3.y = height;
localToGlobal(_local3);
if (show) {
__selectedIndexOnDropdown = selectedIndex;
__initialSelectedIndexOnDropdown = selectedIndex;
getDropdown();
var _local2 = __dropdown;
_local2.isPressed = true;
_local2.rowCount = rowCount;
_local2.visible = show;
_local2._parent.globalToLocal(_local3);
_local2.onTweenEnd = tweenEndShow;
var _local5;
var _local8;
if ((_local3.y + _local2.height) > Stage.height) {
_local5 = _local3.y - __get__height();
_local8 = _local5 - _local2.height;
mask._y = -_local2.height;
} else {
_local5 = _local3.y - _local2.height;
_local8 = _local3.y;
mask._y = border_mc.height;
}
var _local6 = _local2.selectedIndex;
if (_local6 == undefined) {
_local6 = 0;
}
var _local4 = _local2.vPosition;
_local4 = _local6 - 1;
_local4 = Math.min(Math.max(_local4, 0), _local2.length - _local2.rowCount);
_local2.vPosition = _local4;
_local2.move(_local3.x, _local5);
_local2.tween = new mx.effects.Tween(__dropdown, _local5, _local8, getStyle("openDuration"));
} else {
__dropdown._parent.globalToLocal(_local3);
delete __dropdown.dragScrolling;
__dropdown.onTweenEnd = tweenEndHide;
__dropdown.tween = new mx.effects.Tween(__dropdown, __dropdown._y, _local3.y - __dropdown.height, getStyle("openDuration"));
if (__initialSelectedIndexOnDropdown != selectedIndex) {
dispatchChangeEvent(undefined, __initialSelectedIndexOnDropdown, selectedIndex);
}
}
var _local9 = getStyle("openEasing");
if (_local9 != undefined) {
__dropdown.tween.easingEquation = _local9;
}
_showingDropdown = show;
}
function onDownArrow() {
_parent.displayDropdown(!_parent._showingDropdown);
}
function keyDown(e) {
if (e.ctrlKey && (e.code == 40)) {
displayDropdown(true);
} else if (e.ctrlKey && (e.code == 38)) {
displayDropdown(false);
dispatchChangeEvent(undefined, __selectedIndexOnDropdown, selectedIndex);
} else if (e.code == 27) {
displayDropdown(false);
} else if (e.code == 13) {
if (_showingDropdown) {
selectedIndex = __dropdown.selectedIndex;
displayDropdown(false);
}
} else if (((((!_editable) || (e.code == 38)) || (e.code == 40)) || (e.code == 33)) || (e.code == 34)) {
selectedIndex = 0 + selectedIndex;
bInKeyDown = true;
var _local3 = dropdown;
_local3.keyDown(e);
bInKeyDown = false;
selectedIndex = __dropdown.selectedIndex;
}
}
function invalidateStyle(styleProp) {
__dropdown.invalidateStyle(styleProp);
super.invalidateStyle(styleProp);
}
function changeTextStyleInChildren(styleProp) {
if (dropdown.stylecache != undefined) {
delete dropdown.stylecache[styleProp];
delete dropdown.stylecache.tf;
}
__dropdown.changeTextStyleInChildren(styleProp);
super.changeTextStyleInChildren(styleProp);
}
function changeColorStyleInChildren(sheetName, styleProp, newValue) {
if (dropdown.stylecache != undefined) {
delete dropdown.stylecache[styleProp];
delete dropdown.stylecache.tf;
}
__dropdown.changeColorStyleInChildren(sheetName, styleProp, newValue);
super.changeColorStyleInChildren(sheetName, styleProp, newValue);
}
function notifyStyleChangeInChildren(sheetName, styleProp, newValue) {
if (dropdown.stylecache != undefined) {
delete dropdown.stylecache[styleProp];
delete dropdown.stylecache.tf;
}
__dropdown.notifyStyleChangeInChildren(sheetName, styleProp, newValue);
super.notifyStyleChangeInChildren(sheetName, styleProp, newValue);
}
function onUnload() {
__dropdown.removeMovieClip();
}
function _resizeHandler() {
var _local2 = owner;
_local2.mask._width = width;
_local2.mask._height = height;
}
function _changeHandler(obj) {
var _local2 = owner;
var _local3 = _local2.selectedIndex;
obj.target = _local2;
if (this == owner.text_mc) {
_local2.selectedIndex = undefined;
_local2.dispatchChangeEvent(obj, -1, -2);
} else {
_local2.selectedIndex = selectedIndex;
if (!_local2._showingDropdown) {
_local2.dispatchChangeEvent(obj, _local3, _local2.selectedIndex);
} else if (!_local2.bInKeyDown) {
_local2.displayDropdown(false);
}
}
}
function _scrollHandler(obj) {
var _local2 = owner;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function _itemRollOverHandler(obj) {
var _local2 = owner;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function _itemRollOutHandler(obj) {
var _local2 = owner;
obj.target = _local2;
_local2.dispatchEvent(obj);
}
function modelChanged(eventObj) {
super.modelChanged(eventObj);
if (0 == __dataProvider.length) {
text_mc.setText("");
delete selected;
} else if ((__dataProvider.length == ((eventObj.lastItem - eventObj.firstItem) + 1)) && (eventObj.eventName == "addItems")) {
selectedIndex = 0;
}
}
function dispatchChangeEvent(obj, prevValue, newValue) {
var _local2;
if (prevValue != newValue) {
if ((obj != undefined) && (obj.type == "change")) {
_local2 = obj;
} else {
_local2 = {type:"change"};
}
dispatchEvent(_local2);
}
}
static var symbolName = "ComboBox";
static var symbolOwner = mx.controls.ComboBox;
static var version = "2.0.2.126";
var clipParameters = {labels:1, data:1, editable:1, rowCount:1, dropdownWidth:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.ComboBox.prototype.clipParameters, mx.controls.ComboBase.prototype.clipParameters);
var className = "ComboBox";
var _showingDropdown = false;
var __rowCount = 5;
var dropdownBorderStyle = undefined;
var initializing = true;
var __labelField = "label";
var bInKeyDown = false;
}
Symbol 279 MovieClip [__Packages.mx.controls.TextInput] Frame 0
class mx.controls.TextInput extends mx.core.UIComponent
{
var owner, enterListener, label, tabChildren, tabEnabled, focusTextField, _color, _parent, border_mc, createClassObject, dispatchValueChangedEvent, __get__width, __get__height, tfx, tfy, tfw, tfh, getStyle, bind, updateModel, _getTextFormat, enabled;
function TextInput () {
super();
}
function addEventListener(event, handler) {
if (event == "enter") {
addEnterEvents();
}
super.addEventListener(event, handler);
}
function enterOnKeyDown() {
if (Key.getAscii() == 13) {
owner.dispatchEvent({type:"enter"});
}
}
function addEnterEvents() {
if (enterListener == undefined) {
enterListener = new Object();
enterListener.owner = this;
enterListener.onKeyDown = enterOnKeyDown;
}
}
function init(Void) {
super.init();
label.styleName = this;
tabChildren = true;
tabEnabled = false;
focusTextField = label;
_color = mx.core.UIObject.textColorList;
label.onSetFocus = function () {
this._parent.onSetFocus();
};
label.onKillFocus = function (n) {
this._parent.onKillFocus(n);
};
label.drawFocus = function (b) {
this._parent.drawFocus(b);
};
label.onChanged = onLabelChanged;
}
function setFocus() {
Selection.setFocus(label);
}
function onLabelChanged(Void) {
_parent.dispatchEvent({type:"change"});
_parent.dispatchValueChangedEvent(text);
}
function createChildren(Void) {
super.createChildren();
if (border_mc == undefined) {
createClassObject(_global.styles.rectBorderClass, "border_mc", 0, {styleName:this});
}
border_mc.swapDepths(label);
label.autoSize = "none";
}
function get html() {
return(getHtml());
}
function set html(value) {
setHtml(value);
//return(html);
}
function getHtml() {
return(label.html);
}
function setHtml(value) {
if (value != label.html) {
label.html = value;
}
}
function get text() {
return(getText());
}
function set text(t) {
setText(t);
//return(text);
}
function getText() {
if (initializing) {
return(initText);
}
if (label.html == true) {
return(label.htmlText);
}
return(label.text);
}
function setText(t) {
if (initializing) {
initText = t;
} else {
var _local2 = label;
if (_local2.html == true) {
_local2.htmlText = t;
} else {
_local2.text = t;
}
}
dispatchValueChangedEvent(t);
}
function size(Void) {
border_mc.setSize(__get__width(), __get__height());
var _local2 = border_mc.__get__borderMetrics();
var _local6 = _local2.left + _local2.right;
var _local3 = _local2.top + _local2.bottom;
var _local5 = _local2.left;
var _local4 = _local2.top;
tfx = _local5;
tfy = _local4;
tfw = __get__width() - _local6;
tfh = __get__height() - _local3;
label.move(tfx, tfy);
label.setSize(tfw, tfh + 1);
}
function setEnabled(enable) {
label.type = (((__editable == true) || (enable == false)) ? "input" : "dynamic");
label.selectable = enable;
var _local2 = getStyle((enable ? "color" : "disabledColor"));
if (_local2 == undefined) {
_local2 = (enable ? 0 : 8947848);
}
setColor(_local2);
}
function setColor(col) {
label.textColor = col;
}
function onKillFocus(newFocus) {
if (enterListener != undefined) {
Key.removeListener(enterListener);
}
if (bind != undefined) {
updateModel(text);
}
super.onKillFocus(newFocus);
}
function onSetFocus(oldFocus) {
var f = Selection.getFocus();
var o = eval (f);
if (o != label) {
Selection.setFocus(label);
return(undefined);
}
if (enterListener != undefined) {
Key.addListener(enterListener);
}
super.onSetFocus(oldFocus);
}
function draw(Void) {
var _local2 = label;
var _local4 = getText();
if (initializing) {
initializing = false;
delete initText;
}
var _local3 = _getTextFormat();
_local2.embedFonts = _local3.embedFonts == true;
if (_local3 != undefined) {
_local2.setTextFormat(_local3);
_local2.setNewTextFormat(_local3);
}
_local2.multiline = false;
_local2.wordWrap = false;
if (_local2.html == true) {
_local2.setTextFormat(_local3);
_local2.htmlText = _local4;
} else {
_local2.text = _local4;
}
_local2.type = (((__editable == true) || (enabled == false)) ? "input" : "dynamic");
size();
}
function setEditable(s) {
__editable = s;
label.type = (s ? "input" : "dynamic");
}
function get maxChars() {
return(label.maxChars);
}
function set maxChars(w) {
label.maxChars = w;
//return(maxChars);
}
function get length() {
return(label.length);
}
function get restrict() {
return(label.restrict);
}
function set restrict(w) {
label.restrict = ((w == "") ? null : (w));
//return(restrict);
}
function get hPosition() {
return(label.hscroll);
}
function set hPosition(w) {
label.hscroll = w;
//return(hPosition);
}
function get maxHPosition() {
return(label.maxhscroll);
}
function get editable() {
return(__editable);
}
function set editable(w) {
setEditable(w);
//return(editable);
}
function get password() {
return(label.password);
}
function set password(w) {
label.password = w;
//return(password);
}
function get tabIndex() {
return(label.tabIndex);
}
function set tabIndex(w) {
label.tabIndex = w;
//return(tabIndex);
}
function set _accProps(val) {
label._accProps = val;
//return(_accProps);
}
function get _accProps() {
return(label._accProps);
}
static var symbolName = "TextInput";
static var symbolOwner = mx.controls.TextInput;
static var version = "2.0.2.126";
var className = "TextInput";
var initializing = true;
var clipParameters = {text:1, editable:1, password:1, maxChars:1, restrict:1};
static var mergedClipParameters = mx.core.UIObject.mergeClipParameters(mx.controls.TextInput.prototype.clipParameters, mx.core.UIComponent.prototype.clipParameters);
var _maxWidth = mx.core.UIComponent.kStretch;
var __editable = true;
var initText = "";
}
Symbol 280 MovieClip [__Packages.mx.managers.PopUpManager] Frame 0
class mx.managers.PopUpManager
{
var popUp, setSize, move, modalWindow, _parent, _name, _visible, owner;
function PopUpManager () {
}
static function createModalWindow(parent, o, broadcastOutsideEvents) {
var _local2 = parent.createChildAtDepth("Modal", mx.managers.DepthManager.kTopmost);
_local2.setDepthBelow(o);
o.modalID = _local2._name;
_local2._alpha = _global.style.modalTransparency;
_local2.tabEnabled = false;
if (broadcastOutsideEvents) {
_local2.onPress = mixins.onPress;
} else {
_local2.onPress = mixins.nullFunction;
}
_local2.onRelease = mixins.nullFunction;
_local2.resize = mixins.resize;
mx.managers.SystemManager.init();
mx.managers.SystemManager.addEventListener("resize", _local2);
_local2.resize();
_local2.useHandCursor = false;
_local2.popUp = o;
o.modalWindow = _local2;
o.deletePopUp = mixins.deletePopUp;
o.setVisible = mixins.setVisible;
o.getVisible = mixins.getVisible;
o.addProperty("visible", o.getVisible, o.setVisible);
}
static function createPopUp(parent, className, modal, initobj, broadcastOutsideEvents) {
if (mixins == undefined) {
mixins = new mx.managers.PopUpManager();
}
if (broadcastOutsideEvents == undefined) {
broadcastOutsideEvents = false;
}
var _local5 = parent._root;
if (_local5 == undefined) {
_local5 = _root;
}
while (parent != _local5) {
parent = parent._parent;
}
initobj.popUp = true;
var _local4 = parent.createClassChildAtDepth(className, ((broadcastOutsideEvents || (modal)) ? (mx.managers.DepthManager.kTopmost) : (mx.managers.DepthManager.kTop)), initobj);
var _local2 = _root;
var _local6 = _local2.focusManager != undefined;
while (_local2._parent != undefined) {
_local2 = _local2._parent._root;
if (_local2.focusManager != undefined) {
_local6 = true;
break;
}
}
if (_local6) {
_local4.createObject("FocusManager", "focusManager", -1);
if (_local4._visible == false) {
mx.managers.SystemManager.deactivate(_local4);
}
}
if (modal) {
createModalWindow(parent, _local4, broadcastOutsideEvents);
} else {
if (broadcastOutsideEvents) {
_local4.mouseListener = new Object();
_local4.mouseListener.owner = _local4;
_local4.mouseListener.onMouseDown = mixins.onMouseDown;
Mouse.addListener(_local4.mouseListener);
}
_local4.deletePopUp = mixins.deletePopUp;
}
return(_local4);
}
function onPress(Void) {
var _local3 = popUp._root;
if (_local3 == undefined) {
_local3 = _root;
}
if (popUp.hitTest(_local3._xmouse, _local3._ymouse, false)) {
return(undefined);
}
popUp.dispatchEvent({type:"mouseDownOutside"});
}
function nullFunction(Void) {
}
function resize(Void) {
var _local2 = mx.managers.SystemManager.__get__screen();
setSize(_local2.width, _local2.height);
move(_local2.x, _local2.y);
}
function deletePopUp(Void) {
if (modalWindow != undefined) {
_parent.destroyObject(modalWindow._name);
}
_parent.destroyObject(_name);
}
function setVisible(v, noEvent) {
super.setVisible(v, noEvent);
modalWindow._visible = v;
}
function getVisible(Void) {
return(_visible);
}
function onMouseDown(Void) {
var _local3 = owner._root;
if (_local3 == undefined) {
_local3 = _root;
}
var _local4 = new Object();
_local4.x = _local3._xmouse;
_local4.y = _local3._ymouse;
_local3.localToGlobal(_local4);
if (owner.hitTest(_local4.x, _local4.y, false)) {
} else {
owner.mouseDownOutsideHandler(owner);
}
}
static var version = "2.0.2.126";
static var mixins = undefined;
}
Symbol 296 MovieClip Frame 26
stop();
Symbol 302 Button
on (release) {
gotoAndStop ("submit");
}
Symbol 307 Button
on (release) {
gotoAndStop (1);
}
Symbol 315 Button
on (release) {
gotoAndStop ("submited");
}
Symbol 320 Button
on (release) {
viewHighscore();
}
Symbol 321 MovieClip Frame 1
stop();
_global.game_name = _game_name;
var highscore = eval (score_var);
_global.viewHighscore = function () {
getURL ("http://www.freeworldgroup.com/score/index.asp?game=" + game_name, "_blank");
};
if (highscore == 0) {
this._visible = false;
}
Symbol 321 MovieClip Frame 3
function sendData() {
send_var.game = game_name;
send_var.score = highscore;
send_var.name = name_txt.text;
if (send_var.name == "") {
send_var.name = "guest" + int(Math.random() * 1000);
}
send_var.sendAndLoad("http://www.freeworldgroup.com/score/score.asp", load_var, "POST");
gotoAndStop ("sending");
}
stop();
gold_txt.text = highscore;
_root.focusManager.setFocus(name_txt);
name_txt.restrict = "^$!<>?#%@~`&*()=^";
send_var = new LoadVars();
load_var = new LoadVars();
ok_btn.onRelease = sendData;
load_var.onLoad = function () {
gotoAndStop ("done");
};
Instance of Symbol 304 MovieClip in Symbol 321 MovieClip Frame 3
on (release) {
}
Instance of Symbol 265 MovieClip [TextInput] "gold_txt" in Symbol 321 MovieClip Frame 3
//component parameters
onClipEvent (construct) {
editable = false;
password = false;
text = "";
maxChars = null;
restrict = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 265 MovieClip [TextInput] "name_txt" in Symbol 321 MovieClip Frame 3
//component parameters
onClipEvent (construct) {
editable = true;
password = false;
text = "";
maxChars = null;
restrict = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Symbol 324 MovieClip Frame 1
this._visible = false;
Symbol 342 MovieClip Frame 1
stop();
Symbol 342 MovieClip Frame 5
gotoAndStop ("normal");
Symbol 342 MovieClip Frame 9
gotoAndStop ("normal");
Symbol 397 MovieClip Frame 2
_root.soundStart("boom4_snd");
Symbol 397 MovieClip Frame 32
stop();
Symbol 398 MovieClip [role] Frame 1
stop();
Symbol 398 MovieClip [role] Frame 5
gotoAndStop ("normal");
Symbol 398 MovieClip [role] Frame 9
gotoAndStop ("normal");
Symbol 398 MovieClip [role] Frame 37
stop();
_root.roleDie();
this.swapDepths(_parent.getNextHighestDepth());
this.removeMovieClip();
Symbol 403 MovieClip [shoot_circle_role] Frame 1
#initclip 310
Object.registerClass("shoot_circle_role", Shoot_s1);
#endinitclip
stop();
var initData = {bullet_type:bullet_type, r:r, time_shoot:time_shoot, angle_start:angle_start, angle_total:angle_total, d_angle:d_angle, V:V};
init(initData);
Symbol 403 MovieClip [shoot_circle_role] Frame 3
gotoAndStop (1);
Symbol 407 MovieClip [bullet_canon_lv1] Frame 1
#initclip 169
Object.registerClass("bullet_canon_lv1", Bullet_canon);
#endinitclip
stop();
damage = 20;
Symbol 407 MovieClip [bullet_canon_lv1] Frame 2
var initData = {bullet_type:"bullet_canonSpread", r:10, time_shoot:0, angle_start:this._rotation - 45, angle_total:90, d_angle:15, V:15};
shoot_mc.init(initData);
shoot_mc.shoot();
_root.role.setPower(_root.powerUse.canon);
_root.soundStart("boom3_snd");
play();
Instance of Symbol 403 MovieClip [shoot_circle_role] "shoot_mc" in Symbol 407 MovieClip [bullet_canon_lv1] Frame 2
//component parameters
onClipEvent (construct) {
bullet_type = "bullet1";
angle_start = -45;
angle_total = 90;
d_angle = 20;
r = 30;
V = 10;
time_shoot = 50;
}
Symbol 407 MovieClip [bullet_canon_lv1] Frame 11
stop();
Symbol 408 MovieClip [bullet_canon_lv2] Frame 1
#initclip 170
Object.registerClass("bullet_canon_lv2", Bullet_canon);
#endinitclip
stop();
damage = 20;
Symbol 408 MovieClip [bullet_canon_lv2] Frame 2
var initData = {bullet_type:"bullet_canonSpread", r:10, time_shoot:0, angle_start:this._rotation - 90, angle_total:180, d_angle:15, V:15};
shoot_mc.init(initData);
shoot_mc.shoot();
_root.role.setPower(_root.powerUse.canon);
_root.soundStart("boom3_snd");
play();
Instance of Symbol 403 MovieClip [shoot_circle_role] "shoot_mc" in Symbol 408 MovieClip [bullet_canon_lv2] Frame 2
//component parameters
onClipEvent (construct) {
bullet_type = "bullet1";
angle_start = -90;
angle_total = 180;
d_angle = 20;
r = 30;
V = 10;
time_shoot = 50;
}
Symbol 408 MovieClip [bullet_canon_lv2] Frame 11
stop();
Symbol 409 MovieClip [bullet_canon_lv3] Frame 1
#initclip 171
Object.registerClass("bullet_canon_lv3", Bullet_canon);
#endinitclip
stop();
damage = 20;
Symbol 409 MovieClip [bullet_canon_lv3] Frame 2
var initData = {bullet_type:"bullet_canonSpread", r:10, time_shoot:0, angle_start:0, angle_total:360, d_angle:15, V:15};
shoot_mc.init(initData);
shoot_mc.shoot();
_root.role.setPower(_root.powerUse.canon);
_root.soundStart("boom3_snd");
play();
Instance of Symbol 403 MovieClip [shoot_circle_role] "shoot_mc" in Symbol 409 MovieClip [bullet_canon_lv3] Frame 2
//component parameters
onClipEvent (construct) {
bullet_type = "bullet1";
angle_start = 0;
angle_total = 360;
d_angle = 20;
r = 30;
V = 10;
time_shoot = 50;
}
Symbol 409 MovieClip [bullet_canon_lv3] Frame 11
stop();
Symbol 413 MovieClip [bullet_missile] Frame 1
#initclip 172
Object.registerClass("bullet_missile", Bullet_chase);
#endinitclip
stop();
damage = 150;
Symbol 413 MovieClip [bullet_missile] Frame 30
stop();
this.removeMovieClip();
Symbol 414 MovieClip [bullet_missile_1] Frame 1
#initclip 173
Object.registerClass("bullet_missile_1", Bullet_missile_1);
#endinitclip
stop();
damage = 50;
Symbol 414 MovieClip [bullet_missile_1] Frame 30
stop();
this.removeMovieClip();
Symbol 415 MovieClip [shoot2_missile_lv3] Frame 1
#initclip 174
Object.registerClass("shoot2_missile_lv3", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_missile_1";
V = 20;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 415 MovieClip [shoot2_missile_lv3] Frame 2
_root.soundStart("missile_snd");
Instance of Symbol 21 MovieClip in Symbol 415 MovieClip [shoot2_missile_lv3] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 415 MovieClip [shoot2_missile_lv3] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 415 MovieClip [shoot2_missile_lv3] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 5;
}
Instance of Symbol 21 MovieClip in Symbol 415 MovieClip [shoot2_missile_lv3] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -5;
}
Symbol 415 MovieClip [shoot2_missile_lv3] Frame 32
gotoAndStop (1);
Symbol 416 MovieClip [shoot2_missile2_lv1] Frame 1
#initclip 175
Object.registerClass("shoot2_missile2_lv1", Shoot_aim);
#endinitclip
stop();
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 416 MovieClip [shoot2_missile2_lv1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 416 MovieClip [shoot2_missile2_lv1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -30;
}
Instance of Symbol 21 MovieClip in Symbol 416 MovieClip [shoot2_missile2_lv1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 30;
}
Symbol 416 MovieClip [shoot2_missile2_lv1] Frame 4
_root.soundStart("missile_snd");
Symbol 416 MovieClip [shoot2_missile2_lv1] Frame 30
gotoAndStop (1);
Symbol 417 MovieClip [shoot2_missile_lv1] Frame 1
#initclip 176
Object.registerClass("shoot2_missile_lv1", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_missile_1";
V = 20;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 417 MovieClip [shoot2_missile_lv1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 417 MovieClip [shoot2_missile_lv1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 417 MovieClip [shoot2_missile_lv1] Frame 4
_root.soundStart("missile_snd");
Symbol 417 MovieClip [shoot2_missile_lv1] Frame 19
gotoAndStop (1);
Symbol 418 MovieClip [shoot2_canon_lv1] Frame 1
#initclip 177
Object.registerClass("shoot2_canon_lv1", Shoot_aim);
#endinitclip
stop();
bullet_type = "bullet_canon_lv1";
V = 30;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 418 MovieClip [shoot2_canon_lv1] Frame 2
if (_root.role.checkPower(_root.powerUse.canon)) {
} else {
gotoAndStop (1);
}
Symbol 418 MovieClip [shoot2_canon_lv1] Frame 3
_root.soundStart("fire_snd");
Instance of Symbol 21 MovieClip in Symbol 418 MovieClip [shoot2_canon_lv1] Frame 3
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 418 MovieClip [shoot2_canon_lv1] Frame 19
gotoAndStop (1);
Symbol 419 MovieClip [shoot2_canon_lv2] Frame 1
#initclip 178
Object.registerClass("shoot2_canon_lv2", Shoot_aim);
#endinitclip
stop();
bullet_type = "bullet_canon_lv2";
V = 30;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 419 MovieClip [shoot2_canon_lv2] Frame 2
if (_root.role.checkPower(_root.powerUse.canon)) {
} else {
gotoAndStop (1);
}
Symbol 419 MovieClip [shoot2_canon_lv2] Frame 3
_root.soundStart("fire_snd");
Instance of Symbol 21 MovieClip in Symbol 419 MovieClip [shoot2_canon_lv2] Frame 3
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 419 MovieClip [shoot2_canon_lv2] Frame 20
gotoAndStop (1);
Symbol 420 MovieClip [shoot2_canon_lv3] Frame 1
#initclip 179
Object.registerClass("shoot2_canon_lv3", Shoot_aim);
#endinitclip
stop();
bullet_type = "bullet_canon_lv3";
V = 30;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 420 MovieClip [shoot2_canon_lv3] Frame 2
if (_root.role.checkPower(_root.powerUse.canon)) {
} else {
gotoAndStop (1);
}
Symbol 420 MovieClip [shoot2_canon_lv3] Frame 3
_root.soundStart("fire_snd");
Instance of Symbol 21 MovieClip in Symbol 420 MovieClip [shoot2_canon_lv3] Frame 3
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 420 MovieClip [shoot2_canon_lv3] Frame 20
gotoAndStop (1);
Symbol 421 MovieClip [shoot2_missile_lv2] Frame 1
#initclip 180
Object.registerClass("shoot2_missile_lv2", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_missile_1";
V = 20;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 421 MovieClip [shoot2_missile_lv2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 421 MovieClip [shoot2_missile_lv2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = -5;
}
Instance of Symbol 21 MovieClip in Symbol 421 MovieClip [shoot2_missile_lv2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 5;
}
Symbol 421 MovieClip [shoot2_missile_lv2] Frame 3
_root.soundStart("missile_snd");
Symbol 421 MovieClip [shoot2_missile_lv2] Frame 21
gotoAndStop (1);
Symbol 422 MovieClip [weaponControl_missile] Frame 1
#initclip 181
Object.registerClass("weaponControl_missile", WeaponControl_missile);
#endinitclip
Symbol 425 MovieClip Frame 1
this._visible = false;
Symbol 426 MovieClip [hitTest_missile] Frame 1
stop();
this._visible = false;
Symbol 426 MovieClip [hitTest_missile] Frame 8
this._visible = true;
Symbol 426 MovieClip [hitTest_missile] Frame 16
stop();
Symbol 428 MovieClip [hitTest_lightning] Frame 1
stop();
this._visible = false;
Symbol 428 MovieClip [hitTest_lightning] Frame 2
this._visible = true;
Symbol 428 MovieClip [hitTest_lightning] Frame 5
Symbol 428 MovieClip [hitTest_lightning] Frame 16
stop();
Symbol 429 MovieClip [hitTest_lightning2] Frame 1
stop();
this._visible = false;
Symbol 432 MovieClip [weaponControl_lightning] Frame 1
#initclip 182
Object.registerClass("weaponControl_lightning", Draw);
#endinitclip
Symbol 433 MovieClip [weaponControl_deflector] Frame 1
#initclip 183
Object.registerClass("weaponControl_deflector", Draw2);
#endinitclip
Symbol 434 MovieClip [shoot_bullet_lv1] Frame 1
#initclip 184
Object.registerClass("shoot_bullet_lv1", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_lv1";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 434 MovieClip [shoot_bullet_lv1] Frame 2
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 434 MovieClip [shoot_bullet_lv1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 434 MovieClip [shoot_bullet_lv1] Frame 6
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 434 MovieClip [shoot_bullet_lv1] Frame 7
_root.soundStart("shoot2_snd");
Symbol 434 MovieClip [shoot_bullet_lv1] Frame 10
Instance of Symbol 21 MovieClip in Symbol 434 MovieClip [shoot_bullet_lv1] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 434 MovieClip [shoot_bullet_lv1] Frame 15
gotoAndStop (1);
Symbol 435 MovieClip [shoot_bullet2_lv1] Frame 1
#initclip 185
Object.registerClass("shoot_bullet2_lv1", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet2_lv1";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 435 MovieClip [shoot_bullet2_lv1] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 435 MovieClip [shoot_bullet2_lv1] Frame 3
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 435 MovieClip [shoot_bullet2_lv1] Frame 6
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 435 MovieClip [shoot_bullet2_lv1] Frame 8
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 435 MovieClip [shoot_bullet2_lv1] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 435 MovieClip [shoot_bullet2_lv1] Frame 15
gotoAndStop (1);
Symbol 438 MovieClip [bullet_canonSpread] Frame 1
#initclip 186
Object.registerClass("bullet_canonSpread", Bullet1);
#endinitclip
function control() {
f = 0;
this.onEnterFrame = function () {
if (_root.inPause) {
return(undefined);
}
this._x = this._x + this.Vx;
this._y = this._y + this.Vy;
f++;
checkHit();
if (f > 15) {
this.removeMovieClip();
}
};
}
function hit() {
delete this.onEnterFrame;
this.gotoAndPlay("end");
}
stop();
damage = 10;
control();
Symbol 438 MovieClip [bullet_canonSpread] Frame 2
stop();
this.removeMovieClip();
Symbol 439 MovieClip [bullet_lv1] Frame 1
#initclip 187
Object.registerClass("bullet_lv1", Bullet1);
#endinitclip
stop();
damage = 20;
Symbol 439 MovieClip [bullet_lv1] Frame 10
stop();
this.removeMovieClip();
Symbol 440 MovieClip [bullet_lv2] Frame 1
#initclip 188
Object.registerClass("bullet_lv2", Bullet1);
#endinitclip
stop();
damage = 20;
Symbol 440 MovieClip [bullet_lv2] Frame 10
stop();
this.removeMovieClip();
Symbol 441 MovieClip [bullet_lv3] Frame 1
#initclip 189
Object.registerClass("bullet_lv3", Bullet1);
#endinitclip
stop();
damage = 25;
Symbol 441 MovieClip [bullet_lv3] Frame 10
stop();
this.removeMovieClip();
Symbol 442 MovieClip [bullet1] Frame 1
#initclip 190
Object.registerClass("bullet1", Bullet1);
#endinitclip
stop();
damage = 20;
Symbol 442 MovieClip [bullet1] Frame 10
stop();
this.removeMovieClip();
Symbol 443 MovieClip [bullet2_l] Frame 1
#initclip 191
Object.registerClass("bullet2_l", Bullet1);
#endinitclip
stop();
damage = 30;
Symbol 443 MovieClip [bullet2_l] Frame 10
stop();
this.removeMovieClip();
Symbol 444 MovieClip [bullet2_l2] Frame 1
#initclip 192
Object.registerClass("bullet2_l2", Bullet1);
#endinitclip
stop();
damage = 30;
Symbol 444 MovieClip [bullet2_l2] Frame 10
stop();
this.removeMovieClip();
Symbol 445 MovieClip [bullet2_lv1] Frame 1
#initclip 193
Object.registerClass("bullet2_lv1", Bullet1);
#endinitclip
stop();
damage = 20;
Symbol 445 MovieClip [bullet2_lv1] Frame 10
stop();
this.removeMovieClip();
Symbol 446 MovieClip [bullet2_lv2] Frame 1
#initclip 194
Object.registerClass("bullet2_lv2", Bullet1);
#endinitclip
stop();
damage = 30;
Symbol 446 MovieClip [bullet2_lv2] Frame 10
stop();
this.removeMovieClip();
Symbol 447 MovieClip [bullet2_lv3] Frame 1
#initclip 195
Object.registerClass("bullet2_lv3", Bullet1);
#endinitclip
stop();
damage = 35;
Symbol 447 MovieClip [bullet2_lv3] Frame 9
stop();
this.removeMovieClip();
Symbol 448 MovieClip [shoot_bullet_lv2] Frame 1
#initclip 196
Object.registerClass("shoot_bullet_lv2", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_lv2";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 448 MovieClip [shoot_bullet_lv2] Frame 2
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 448 MovieClip [shoot_bullet_lv2] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 448 MovieClip [shoot_bullet_lv2] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet1";
angle = -5;
}
Instance of Symbol 21 MovieClip in Symbol 448 MovieClip [shoot_bullet_lv2] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet1";
angle = 5;
}
Symbol 448 MovieClip [shoot_bullet_lv2] Frame 6
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 448 MovieClip [shoot_bullet_lv2] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 448 MovieClip [shoot_bullet_lv2] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet1";
angle = -5;
}
Instance of Symbol 21 MovieClip in Symbol 448 MovieClip [shoot_bullet_lv2] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet1";
angle = 5;
}
Symbol 448 MovieClip [shoot_bullet_lv2] Frame 14
gotoAndStop (1);
Symbol 449 MovieClip [shoot_bullet_lv3] Frame 1
#initclip 197
Object.registerClass("shoot_bullet_lv3", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_lv1";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 449 MovieClip [shoot_bullet_lv3] Frame 2
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 449 MovieClip [shoot_bullet_lv3] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 449 MovieClip [shoot_bullet_lv3] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -5;
}
Instance of Symbol 21 MovieClip in Symbol 449 MovieClip [shoot_bullet_lv3] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 5;
}
Symbol 449 MovieClip [shoot_bullet_lv3] Frame 6
Instance of Symbol 21 MovieClip in Symbol 449 MovieClip [shoot_bullet_lv3] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 449 MovieClip [shoot_bullet_lv3] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -5;
}
Instance of Symbol 21 MovieClip in Symbol 449 MovieClip [shoot_bullet_lv3] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 5;
}
Symbol 449 MovieClip [shoot_bullet_lv3] Frame 14
gotoAndStop (1);
Symbol 450 MovieClip [shoot_bullet_lv4] Frame 1
#initclip 198
Object.registerClass("shoot_bullet_lv4", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_lv1";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 450 MovieClip [shoot_bullet_lv4] Frame 2
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 450 MovieClip [shoot_bullet_lv4] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 450 MovieClip [shoot_bullet_lv4] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -5;
}
Instance of Symbol 21 MovieClip in Symbol 450 MovieClip [shoot_bullet_lv4] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 5;
}
Instance of Symbol 21 MovieClip in Symbol 450 MovieClip [shoot_bullet_lv4] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet1";
angle = -10;
}
Instance of Symbol 21 MovieClip in Symbol 450 MovieClip [shoot_bullet_lv4] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet1";
angle = 10;
}
Instance of Symbol 21 MovieClip in Symbol 450 MovieClip [shoot_bullet_lv4] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 450 MovieClip [shoot_bullet_lv4] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -5;
}
Instance of Symbol 21 MovieClip in Symbol 450 MovieClip [shoot_bullet_lv4] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 5;
}
Instance of Symbol 21 MovieClip in Symbol 450 MovieClip [shoot_bullet_lv4] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet1";
angle = -10;
}
Instance of Symbol 21 MovieClip in Symbol 450 MovieClip [shoot_bullet_lv4] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet1";
angle = 10;
}
Symbol 450 MovieClip [shoot_bullet_lv4] Frame 14
gotoAndStop (1);
Symbol 451 MovieClip [shoot_bullet_lv5] Frame 1
#initclip 199
Object.registerClass("shoot_bullet_lv5", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_lv1";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 451 MovieClip [shoot_bullet_lv5] Frame 2
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 451 MovieClip [shoot_bullet_lv5] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 451 MovieClip [shoot_bullet_lv5] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -5;
}
Instance of Symbol 21 MovieClip in Symbol 451 MovieClip [shoot_bullet_lv5] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 5;
}
Instance of Symbol 21 MovieClip in Symbol 451 MovieClip [shoot_bullet_lv5] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -15;
}
Instance of Symbol 21 MovieClip in Symbol 451 MovieClip [shoot_bullet_lv5] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 15;
}
Instance of Symbol 21 MovieClip in Symbol 451 MovieClip [shoot_bullet_lv5] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 451 MovieClip [shoot_bullet_lv5] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -5;
}
Instance of Symbol 21 MovieClip in Symbol 451 MovieClip [shoot_bullet_lv5] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 5;
}
Instance of Symbol 21 MovieClip in Symbol 451 MovieClip [shoot_bullet_lv5] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -15;
}
Instance of Symbol 21 MovieClip in Symbol 451 MovieClip [shoot_bullet_lv5] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 15;
}
Symbol 451 MovieClip [shoot_bullet_lv5] Frame 14
gotoAndStop (1);
Symbol 452 MovieClip [shoot_bullet_lv7] Frame 1
#initclip 200
Object.registerClass("shoot_bullet_lv7", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_lv1";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 452 MovieClip [shoot_bullet_lv7] Frame 2
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 452 MovieClip [shoot_bullet_lv7] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 452 MovieClip [shoot_bullet_lv7] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = -7;
}
Instance of Symbol 21 MovieClip in Symbol 452 MovieClip [shoot_bullet_lv7] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 7;
}
Instance of Symbol 21 MovieClip in Symbol 452 MovieClip [shoot_bullet_lv7] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -18;
}
Instance of Symbol 21 MovieClip in Symbol 452 MovieClip [shoot_bullet_lv7] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 18;
}
Instance of Symbol 21 MovieClip in Symbol 452 MovieClip [shoot_bullet_lv7] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 452 MovieClip [shoot_bullet_lv7] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = -7;
}
Instance of Symbol 21 MovieClip in Symbol 452 MovieClip [shoot_bullet_lv7] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 7;
}
Instance of Symbol 21 MovieClip in Symbol 452 MovieClip [shoot_bullet_lv7] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -18;
}
Instance of Symbol 21 MovieClip in Symbol 452 MovieClip [shoot_bullet_lv7] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 18;
}
Symbol 452 MovieClip [shoot_bullet_lv7] Frame 14
gotoAndStop (1);
Symbol 453 MovieClip [shoot_bullet_lv8] Frame 1
#initclip 201
Object.registerClass("shoot_bullet_lv8", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_lv1";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 453 MovieClip [shoot_bullet_lv8] Frame 2
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 453 MovieClip [shoot_bullet_lv8] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 453 MovieClip [shoot_bullet_lv8] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = -7;
}
Instance of Symbol 21 MovieClip in Symbol 453 MovieClip [shoot_bullet_lv8] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 7;
}
Instance of Symbol 21 MovieClip in Symbol 453 MovieClip [shoot_bullet_lv8] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = -18;
}
Instance of Symbol 21 MovieClip in Symbol 453 MovieClip [shoot_bullet_lv8] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 18;
}
Instance of Symbol 21 MovieClip in Symbol 453 MovieClip [shoot_bullet_lv8] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 453 MovieClip [shoot_bullet_lv8] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = -7;
}
Instance of Symbol 21 MovieClip in Symbol 453 MovieClip [shoot_bullet_lv8] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 7;
}
Instance of Symbol 21 MovieClip in Symbol 453 MovieClip [shoot_bullet_lv8] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = -18;
}
Instance of Symbol 21 MovieClip in Symbol 453 MovieClip [shoot_bullet_lv8] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 18;
}
Symbol 453 MovieClip [shoot_bullet_lv8] Frame 14
gotoAndStop (1);
Symbol 454 MovieClip [shoot_bullet_lv9] Frame 1
#initclip 202
Object.registerClass("shoot_bullet_lv9", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_lv1";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 454 MovieClip [shoot_bullet_lv9] Frame 2
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 454 MovieClip [shoot_bullet_lv9] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 454 MovieClip [shoot_bullet_lv9] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = -8;
}
Instance of Symbol 21 MovieClip in Symbol 454 MovieClip [shoot_bullet_lv9] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 8;
}
Instance of Symbol 21 MovieClip in Symbol 454 MovieClip [shoot_bullet_lv9] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = -20;
}
Instance of Symbol 21 MovieClip in Symbol 454 MovieClip [shoot_bullet_lv9] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = 20;
}
Instance of Symbol 21 MovieClip in Symbol 454 MovieClip [shoot_bullet_lv9] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 454 MovieClip [shoot_bullet_lv9] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = -8;
}
Instance of Symbol 21 MovieClip in Symbol 454 MovieClip [shoot_bullet_lv9] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 8;
}
Instance of Symbol 21 MovieClip in Symbol 454 MovieClip [shoot_bullet_lv9] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = -20;
}
Instance of Symbol 21 MovieClip in Symbol 454 MovieClip [shoot_bullet_lv9] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = 20;
}
Symbol 454 MovieClip [shoot_bullet_lv9] Frame 14
gotoAndStop (1);
Symbol 455 MovieClip [shoot_bullet_lv10] Frame 1
#initclip 203
Object.registerClass("shoot_bullet_lv10", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_lv1";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 455 MovieClip [shoot_bullet_lv10] Frame 2
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 455 MovieClip [shoot_bullet_lv10] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 455 MovieClip [shoot_bullet_lv10] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = -8;
}
Instance of Symbol 21 MovieClip in Symbol 455 MovieClip [shoot_bullet_lv10] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = 8;
}
Instance of Symbol 21 MovieClip in Symbol 455 MovieClip [shoot_bullet_lv10] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = -20;
}
Instance of Symbol 21 MovieClip in Symbol 455 MovieClip [shoot_bullet_lv10] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = 20;
}
Instance of Symbol 21 MovieClip in Symbol 455 MovieClip [shoot_bullet_lv10] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 455 MovieClip [shoot_bullet_lv10] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = -8;
}
Instance of Symbol 21 MovieClip in Symbol 455 MovieClip [shoot_bullet_lv10] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = 8;
}
Instance of Symbol 21 MovieClip in Symbol 455 MovieClip [shoot_bullet_lv10] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = -20;
}
Instance of Symbol 21 MovieClip in Symbol 455 MovieClip [shoot_bullet_lv10] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv3";
angle = 20;
}
Symbol 455 MovieClip [shoot_bullet_lv10] Frame 14
gotoAndStop (1);
Symbol 456 MovieClip [shoot_bullet2_lv2] Frame 1
#initclip 204
Object.registerClass("shoot_bullet2_lv2", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet2_lv2";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 456 MovieClip [shoot_bullet2_lv2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 456 MovieClip [shoot_bullet2_lv2] Frame 3
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 456 MovieClip [shoot_bullet2_lv2] Frame 6
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 456 MovieClip [shoot_bullet2_lv2] Frame 8
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 456 MovieClip [shoot_bullet2_lv2] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 456 MovieClip [shoot_bullet2_lv2] Frame 15
gotoAndStop (1);
Symbol 457 MovieClip [shoot_bullet2_lv3] Frame 1
#initclip 205
Object.registerClass("shoot_bullet2_lv3", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet2_lv3";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Instance of Symbol 21 MovieClip in Symbol 457 MovieClip [shoot_bullet2_lv3] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 457 MovieClip [shoot_bullet2_lv3] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Symbol 457 MovieClip [shoot_bullet2_lv3] Frame 4
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 457 MovieClip [shoot_bullet2_lv3] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 457 MovieClip [shoot_bullet2_lv3] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Symbol 457 MovieClip [shoot_bullet2_lv3] Frame 9
_root.soundStart("shoot4_snd");
Instance of Symbol 21 MovieClip in Symbol 457 MovieClip [shoot_bullet2_lv3] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_l";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 457 MovieClip [shoot_bullet2_lv3] Frame 10
//component parameters
onClipEvent (construct) {
type = "bullet2_r";
angle = 0;
}
Symbol 457 MovieClip [shoot_bullet2_lv3] Frame 15
gotoAndStop (1);
Symbol 460 MovieClip [bullet_laser_lv1] Frame 1
#initclip 206
Object.registerClass("bullet_laser_lv1", Bullet_laser);
#endinitclip
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof MovieClip) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
_local3.hit(damage);
colorEffect(_local3);
}
}
}
damage = 10;
Symbol 460 MovieClip [bullet_laser_lv1] Frame 3
var i = 0;
this.onEnterFrame = function () {
if (i == 1) {
i = 0;
return(undefined);
}
i = 1;
checkHit();
};
Symbol 460 MovieClip [bullet_laser_lv1] Frame 14
delete this.onEnterFrame;
colorRecover();
Symbol 460 MovieClip [bullet_laser_lv1] Frame 15
stop();
this.removeMovieClip();
Symbol 461 MovieClip [shoot_laser_lv1] Frame 1
#initclip 207
Object.registerClass("shoot_laser_lv1", Shoot_straight);
#endinitclip
function shoot() {
this.play();
}
stop();
this._visible = false;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 461 MovieClip [shoot_laser_lv1] Frame 2
this._visible = true;
_root.soundStart("laser3_snd");
Symbol 461 MovieClip [shoot_laser_lv1] Frame 20
gotoAndStop (1);
Symbol 462 MovieClip [bullet_laser_lv2] Frame 1
#initclip 208
Object.registerClass("bullet_laser_lv2", Bullet_laser);
#endinitclip
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof MovieClip) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
_local3.hit(damage);
colorEffect(_local3);
}
}
}
damage = 10;
Symbol 462 MovieClip [bullet_laser_lv2] Frame 3
var i = 0;
this.onEnterFrame = function () {
if (i == 1) {
i = 0;
return(undefined);
}
i = 1;
checkHit();
};
Symbol 462 MovieClip [bullet_laser_lv2] Frame 18
delete this.onEnterFrame;
colorRecover();
Symbol 462 MovieClip [bullet_laser_lv2] Frame 19
stop();
this.removeMovieClip();
Symbol 463 MovieClip [shoot_laser_lv2] Frame 1
#initclip 209
Object.registerClass("shoot_laser_lv2", Shoot_straight);
#endinitclip
function shoot() {
this.play();
}
stop();
this._visible = false;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 463 MovieClip [shoot_laser_lv2] Frame 2
this._visible = true;
_root.soundStart("laser3_snd");
Symbol 463 MovieClip [shoot_laser_lv2] Frame 23
gotoAndStop (1);
Symbol 464 MovieClip [bullet_laser_lv3] Frame 1
#initclip 210
Object.registerClass("bullet_laser_lv3", Bullet_laser);
#endinitclip
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof MovieClip) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
_local3.hit(damage);
colorEffect(_local3);
}
}
}
damage = 15;
Symbol 464 MovieClip [bullet_laser_lv3] Frame 3
var i = 0;
this.onEnterFrame = function () {
if (i == 1) {
i = 0;
return(undefined);
}
i = 1;
checkHit();
};
Symbol 464 MovieClip [bullet_laser_lv3] Frame 22
delete this.onEnterFrame;
colorRecover();
Symbol 464 MovieClip [bullet_laser_lv3] Frame 23
stop();
this.removeMovieClip();
Symbol 465 MovieClip [shoot_laser_lv3] Frame 1
#initclip 211
Object.registerClass("shoot_laser_lv3", Shoot_straight);
#endinitclip
function shoot() {
this.play();
}
stop();
this._visible = false;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 465 MovieClip [shoot_laser_lv3] Frame 2
this._visible = true;
_root.soundStart("laser3_snd");
Symbol 465 MovieClip [shoot_laser_lv3] Frame 27
gotoAndStop (1);
Symbol 466 MovieClip [bullet_laser_lv4] Frame 1
#initclip 212
Object.registerClass("bullet_laser_lv4", Bullet_laser);
#endinitclip
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof MovieClip) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
_local3.hit(damage);
colorEffect(_local3);
}
}
}
damage = 15;
Symbol 466 MovieClip [bullet_laser_lv4] Frame 3
var i = 0;
this.onEnterFrame = function () {
if (i == 1) {
i = 0;
return(undefined);
}
i = 1;
checkHit();
};
Symbol 466 MovieClip [bullet_laser_lv4] Frame 23
delete this.onEnterFrame;
colorRecover();
Symbol 466 MovieClip [bullet_laser_lv4] Frame 24
stop();
this.removeMovieClip();
Symbol 467 MovieClip [shoot_laser_lv4] Frame 1
#initclip 213
Object.registerClass("shoot_laser_lv4", Shoot_straight);
#endinitclip
function shoot() {
this.play();
}
stop();
this._visible = false;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 467 MovieClip [shoot_laser_lv4] Frame 2
this._visible = true;
_root.soundStart("laser3_snd");
Symbol 467 MovieClip [shoot_laser_lv4] Frame 31
gotoAndStop (1);
Symbol 468 MovieClip [bullet_laser_lv5] Frame 1
#initclip 214
Object.registerClass("bullet_laser_lv5", Bullet_laser);
#endinitclip
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof MovieClip) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
_local3.hit(damage);
colorEffect(_local3);
}
}
}
damage = 20;
Symbol 468 MovieClip [bullet_laser_lv5] Frame 3
var i = 0;
this.onEnterFrame = function () {
if (i == 1) {
i = 0;
return(undefined);
}
i = 1;
checkHit();
};
Symbol 468 MovieClip [bullet_laser_lv5] Frame 26
delete this.onEnterFrame;
colorRecover();
Symbol 468 MovieClip [bullet_laser_lv5] Frame 27
stop();
this.removeMovieClip();
Symbol 469 MovieClip [shoot_laser_lv5] Frame 1
#initclip 215
Object.registerClass("shoot_laser_lv5", Shoot_straight);
#endinitclip
function shoot() {
this.play();
}
stop();
this._visible = false;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 469 MovieClip [shoot_laser_lv5] Frame 2
this._visible = true;
_root.soundStart("laser3_snd");
Symbol 469 MovieClip [shoot_laser_lv5] Frame 31
gotoAndStop (1);
Symbol 470 MovieClip [bullet_laser_lv6] Frame 1
#initclip 216
Object.registerClass("bullet_laser_lv6", Bullet_laser);
#endinitclip
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof MovieClip) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
_local3.hit(damage);
colorEffect(_local3);
}
}
}
damage = 25;
Symbol 470 MovieClip [bullet_laser_lv6] Frame 3
var i = 0;
this.onEnterFrame = function () {
if (i == 1) {
i = 0;
return(undefined);
}
i = 1;
checkHit();
};
Symbol 470 MovieClip [bullet_laser_lv6] Frame 26
delete this.onEnterFrame;
colorRecover();
Symbol 470 MovieClip [bullet_laser_lv6] Frame 27
stop();
this.removeMovieClip();
Symbol 471 MovieClip [shoot_laser_lv6] Frame 1
#initclip 217
Object.registerClass("shoot_laser_lv6", Shoot_straight);
#endinitclip
function shoot() {
this.play();
}
stop();
this._visible = false;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 471 MovieClip [shoot_laser_lv6] Frame 2
this._visible = true;
_root.soundStart("laser3_snd");
Symbol 471 MovieClip [shoot_laser_lv6] Frame 31
gotoAndStop (1);
Symbol 472 MovieClip [bullet_laser_lv7] Frame 1
#initclip 218
Object.registerClass("bullet_laser_lv7", Bullet_laser);
#endinitclip
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof MovieClip) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
_local3.hit(damage);
colorEffect(_local3);
}
}
}
damage = 30;
Symbol 472 MovieClip [bullet_laser_lv7] Frame 3
var i = 0;
this.onEnterFrame = function () {
if (i == 1) {
i = 0;
return(undefined);
}
i = 1;
checkHit();
};
Symbol 472 MovieClip [bullet_laser_lv7] Frame 26
delete this.onEnterFrame;
colorRecover();
Symbol 472 MovieClip [bullet_laser_lv7] Frame 27
stop();
this.removeMovieClip();
Symbol 473 MovieClip [shoot_laser_lv7] Frame 1
#initclip 219
Object.registerClass("shoot_laser_lv7", Shoot_straight);
#endinitclip
function shoot() {
this.play();
}
stop();
this._visible = false;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 473 MovieClip [shoot_laser_lv7] Frame 2
this._visible = true;
_root.soundStart("laser3_snd");
Symbol 473 MovieClip [shoot_laser_lv7] Frame 31
gotoAndStop (1);
Symbol 474 MovieClip [bullet_laser_lv8] Frame 1
#initclip 220
Object.registerClass("bullet_laser_lv8", Bullet_laser);
#endinitclip
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof MovieClip) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
_local3.hit(damage);
colorEffect(_local3);
}
}
}
damage = 35;
Symbol 474 MovieClip [bullet_laser_lv8] Frame 3
var i = 0;
this.onEnterFrame = function () {
if (i == 1) {
i = 0;
return(undefined);
}
i = 1;
checkHit();
};
Symbol 474 MovieClip [bullet_laser_lv8] Frame 26
delete this.onEnterFrame;
colorRecover();
Symbol 474 MovieClip [bullet_laser_lv8] Frame 27
stop();
this.removeMovieClip();
Symbol 475 MovieClip [shoot_laser_lv8] Frame 1
#initclip 221
Object.registerClass("shoot_laser_lv8", Shoot_straight);
#endinitclip
function shoot() {
this.play();
}
stop();
this._visible = false;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 475 MovieClip [shoot_laser_lv8] Frame 2
this._visible = true;
_root.soundStart("laser3_snd");
Symbol 475 MovieClip [shoot_laser_lv8] Frame 32
gotoAndStop (1);
Symbol 476 MovieClip [bullet_laser_lv10] Frame 1
#initclip 222
Object.registerClass("bullet_laser_lv10", Bullet_laser);
#endinitclip
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof MovieClip) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
_local3.hit(damage);
colorEffect(_local3);
}
}
}
damage = 45;
Symbol 476 MovieClip [bullet_laser_lv10] Frame 3
var i = 0;
this.onEnterFrame = function () {
if (i == 1) {
i = 0;
return(undefined);
}
i = 1;
checkHit();
};
Symbol 476 MovieClip [bullet_laser_lv10] Frame 26
delete this.onEnterFrame;
colorRecover();
Symbol 476 MovieClip [bullet_laser_lv10] Frame 27
stop();
this.removeMovieClip();
Symbol 477 MovieClip [shoot_laser_lv9] Frame 1
#initclip 223
Object.registerClass("shoot_laser_lv9", Shoot_straight);
#endinitclip
function shoot() {
this.play();
}
stop();
this._visible = false;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 477 MovieClip [shoot_laser_lv9] Frame 2
this._visible = true;
_root.soundStart("laser3_snd");
Symbol 477 MovieClip [shoot_laser_lv9] Frame 32
gotoAndStop (1);
Symbol 478 MovieClip [bullet_laser_lv9] Frame 1
#initclip 224
Object.registerClass("bullet_laser_lv9", Bullet_laser);
#endinitclip
function checkHit() {
for (var _local4 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local4];
if ((_local3 instanceof MovieClip) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
_local3.hit(damage);
colorEffect(_local3);
}
}
}
damage = 40;
Symbol 478 MovieClip [bullet_laser_lv9] Frame 3
var i = 0;
this.onEnterFrame = function () {
if (i == 1) {
i = 0;
return(undefined);
}
i = 1;
checkHit();
};
Symbol 478 MovieClip [bullet_laser_lv9] Frame 26
delete this.onEnterFrame;
colorRecover();
Symbol 478 MovieClip [bullet_laser_lv9] Frame 27
stop();
this.removeMovieClip();
Symbol 479 MovieClip [shoot_laser_lv10] Frame 1
#initclip 225
Object.registerClass("shoot_laser_lv10", Shoot_straight);
#endinitclip
function shoot() {
this.play();
}
stop();
this._visible = false;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 479 MovieClip [shoot_laser_lv10] Frame 2
this._visible = true;
_root.soundStart("laser3_snd");
Symbol 479 MovieClip [shoot_laser_lv10] Frame 32
gotoAndStop (1);
Symbol 480 MovieClip [bullet2_r] Frame 1
#initclip 226
Object.registerClass("bullet2_r", Bullet1);
#endinitclip
stop();
damage = 30;
Symbol 480 MovieClip [bullet2_r] Frame 10
stop();
this.removeMovieClip();
Symbol 481 MovieClip [shoot_bullet_lv6] Frame 1
#initclip 227
Object.registerClass("shoot_bullet_lv6", Shoot_straight);
#endinitclip
stop();
bullet_type = "bullet_lv1";
V = 40;
if (_parent.class_code.continueShoot()) {
play();
}
Symbol 481 MovieClip [shoot_bullet_lv6] Frame 2
_root.soundStart("shoot2_snd");
Instance of Symbol 21 MovieClip in Symbol 481 MovieClip [shoot_bullet_lv6] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 481 MovieClip [shoot_bullet_lv6] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -7;
}
Instance of Symbol 21 MovieClip in Symbol 481 MovieClip [shoot_bullet_lv6] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 7;
}
Instance of Symbol 21 MovieClip in Symbol 481 MovieClip [shoot_bullet_lv6] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -18;
}
Instance of Symbol 21 MovieClip in Symbol 481 MovieClip [shoot_bullet_lv6] Frame 2
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 18;
}
Instance of Symbol 21 MovieClip in Symbol 481 MovieClip [shoot_bullet_lv6] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv2";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 481 MovieClip [shoot_bullet_lv6] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -7;
}
Instance of Symbol 21 MovieClip in Symbol 481 MovieClip [shoot_bullet_lv6] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 7;
}
Instance of Symbol 21 MovieClip in Symbol 481 MovieClip [shoot_bullet_lv6] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = -18;
}
Instance of Symbol 21 MovieClip in Symbol 481 MovieClip [shoot_bullet_lv6] Frame 6
//component parameters
onClipEvent (construct) {
type = "bullet_lv1";
angle = 18;
}
Symbol 481 MovieClip [shoot_bullet_lv6] Frame 14
gotoAndStop (1);
Symbol 551 MovieClip [super_mc] Frame 1
Symbol 551 MovieClip [super_mc] Frame 2
_root.soundStart("boomSuper_snd");
Symbol 551 MovieClip [super_mc] Frame 30
damage = 20;
this.onEnterFrame = function () {
for (var _local5 in _root.enemy_loader) {
var _local3 = _root.enemy_loader[_local5];
if ((_local3 instanceof Enemy) != true) {
continue;
}
if (_local3.area.hitTest(this.area)) {
new ColorEffect(_local3);
_local3.hit(damage);
}
}
for (var _local5 in _root.bullet_mc) {
var _local4 = _root.bullet_mc[_local5];
if ((_local4 instanceof Bullet_enemy) != true) {
continue;
}
if (this.area.hitTest(_local4._x, _local4._y, true)) {
_local4.checkBounce_back();
}
}
};
Symbol 551 MovieClip [super_mc] Frame 56
delete this.onEnterFrame;
Symbol 551 MovieClip [super_mc] Frame 57
_parent.class_code.superEnd();
this.removeMovieClip();
Symbol 552 MovieClip [super_mc_self] Frame 49
_parent.class_code.superEnd();
this.removeMovieClip();
Symbol 553 MovieClip [draw_area] Frame 1
this._visible = false;
Symbol 554 MovieClip [effect_mc] Frame 1
function pushSource(source_mc) {
this.onEnterFrame = function () {
bmp.applyFilter(bmp, bmp.rectangle, p0, bf);
};
}
var bmp;
var p0;
var bf;
var source_array = new Array();
p0 = new flash.geom.Point(0, 0);
bf = new flash.filters.BlurFilter(8, 4, 1);
bmp = new flash.display.BitmapData(_root.stage_w, _root.stage_h, true, 0);
this.attachBitmap(bmp, 0);
Symbol 565 MovieClip [bullet_e_1] Frame 1
#initclip 228
Object.registerClass("bullet_e_1", Bullet_enemy);
#endinitclip
stop();
damage = 20;
Symbol 565 MovieClip [bullet_e_1] Frame 2
stop();
this.removeMovieClip();
Symbol 566 MovieClip [bullet_e_1_2] Frame 1
#initclip 229
Object.registerClass("bullet_e_1_2", Bullet_enemy);
#endinitclip
stop();
damage = 20;
Symbol 566 MovieClip [bullet_e_1_2] Frame 2
stop();
this.removeMovieClip();
Symbol 569 MovieClip [bullet_e_2] Frame 1
#initclip 230
Object.registerClass("bullet_e_2", Bullet_enemy);
#endinitclip
stop();
damage = 50;
Symbol 569 MovieClip [bullet_e_2] Frame 2
stop();
this.removeMovieClip();
Symbol 570 MovieClip [bullet_e_2_2] Frame 1
#initclip 231
Object.registerClass("bullet_e_2_2", Bullet_enemy);
#endinitclip
stop();
damage = 50;
Symbol 570 MovieClip [bullet_e_2_2] Frame 2
stop();
this.removeMovieClip();
Symbol 573 MovieClip [bullet_e_3] Frame 1
#initclip 232
Object.registerClass("bullet_e_3", Bullet_enemy);
#endinitclip
stop();
damage = 100;
Symbol 573 MovieClip [bullet_e_3] Frame 2
stop();
this.removeMovieClip();
Symbol 576 MovieClip [bullet_e_5] Frame 1
#initclip 233
Object.registerClass("bullet_e_5", Bullet_enemy);
#endinitclip
stop();
damage = 50;
Symbol 576 MovieClip [bullet_e_5] Frame 2
stop();
this.removeMovieClip();
Symbol 579 MovieClip [bullet_e_6] Frame 1
#initclip 234
Object.registerClass("bullet_e_6", Bullet_enemy);
#endinitclip
stop();
damage = 50;
Symbol 579 MovieClip [bullet_e_6] Frame 2
stop();
this.removeMovieClip();
Symbol 583 MovieClip [bullet_e_7] Frame 1
#initclip 235
Object.registerClass("bullet_e_7", Bullet_enemy);
#endinitclip
damage = 150;
Symbol 583 MovieClip [bullet_e_7] Frame 51
delete this.onEnterFrame;
Instance of Symbol 126 MovieClip [shoot_circle] "mc" in Symbol 583 MovieClip [bullet_e_7] Frame 51
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_2";
angle_start = 0;
angle_total = 360;
d_angle = 30;
r = 20;
V = 5;
time_shoot = 0;
}
Symbol 583 MovieClip [bullet_e_7] Frame 52
mc.shoot();
Symbol 583 MovieClip [bullet_e_7] Frame 58
stop();
this.removeMovieClip();
Symbol 584 MovieClip [bullet_e_laser_aim1] Frame 1
#initclip 236
Object.registerClass("bullet_e_laser_aim1", Bullet_enemy);
#endinitclip
function checkHit() {
if (area.hitTest(_root.role_mc._x, _root.role_mc._y, true)) {
new ColorEffect(hitTatget.mc);
hitTatget.hit(damage);
hit();
}
}
damage = 100;
Symbol 584 MovieClip [bullet_e_laser_aim1] Frame 27
stop();
this.removeMovieClip();
Symbol 588 MovieClip [bullet_e_missle1] Frame 1
#initclip 237
Object.registerClass("bullet_e_missle1", Bullet_enemy_chase);
#endinitclip
stop();
Symbol 588 MovieClip [bullet_e_missle1] Frame 30
stop();
this.removeMovieClip();
Symbol 590 MovieClip [lock_mc] Frame 1
stop();
Symbol 591 MovieClip [enemy_shape_ship1] Frame 1
#initclip 238
Object.registerClass("enemy_shape_ship1", Enemy_shape);
#endinitclip
stop();
Symbol 592 MovieClip [enemy_shape_tank1] Frame 1
#initclip 239
Object.registerClass("enemy_shape_tank1", Enemy_shape);
#endinitclip
stop();
Symbol 593 MovieClip [enemy_shape_train1] Frame 1
#initclip 240
Object.registerClass("enemy_shape_train1", Enemy_shape);
#endinitclip
stop();
Symbol 596 MovieClip Frame 1
this._name = "pathDot_mc";
Symbol 597 MovieClip [path_role] Frame 1
function move1() {
var pt = ExtMath.toGlobal(pathDot_mc, this);
this.onEnterFrame = function () {
var _local3 = ExtMath.angleOfLine(_root.role_mc._x, _root.role_mc._y, pt.x, pt.y);
Vx = V * ExtMath.cosD(_local3);
Vy = V * ExtMath.sinD(_local3);
var _local4 = ExtMath.distance(_root.role_mc._x, _root.role_mc._y, pt.x, pt.y);
if (_local4 <= V) {
_root.role_mc._x = pt.x;
_root.role_mc._y = pt.y;
delete this.onEnterFrame;
play();
return(undefined);
}
_root.role_mc._x = _root.role_mc._x + Vx;
_root.role_mc._y = _root.role_mc._y + Vy;
if (_root.role_mc._x < pt.x) {
_root.role_mc.body.gotoAndPlay("right");
} else if (_root.role_mc._x > pt.x) {
_root.role_mc.body.gotoAndPlay("left");
}
};
}
function move2() {
play();
this.onEnterFrame = function () {
var _local3 = ExtMath.toGlobal(pathDot_mc, this);
_root.role_mc._x = _local3.x;
_root.role_mc._y = _local3.y;
_root.role_mc._rotation = pathDot_mc._rotation;
_root.role_mc.body.gotoAndPlay("right");
};
}
stop();
this._visible = false;
var V = 3;
move1();
Symbol 597 MovieClip [path_role] Frame 19
move2();
Symbol 597 MovieClip [path_role] Frame 99
stop();
delete this.onEnterFrame;
_parent.play();
Symbol 598 MovieClip [path1] Frame 1
stop();
this._visible = false;
this._name = "path_mc";
Symbol 598 MovieClip [path1] Frame 86
stop();
Symbol 599 MovieClip [path2] Frame 1
stop();
this._visible = false;
this._name = "path_mc";
Symbol 599 MovieClip [path2] Frame 82
stop();
Symbol 600 MovieClip [path3] Frame 1
stop();
this._visible = false;
this._name = "path_mc";
Symbol 600 MovieClip [path3] Frame 132
stop();
Symbol 601 MovieClip [path4] Frame 1
stop();
this._visible = false;
this._name = "path_mc";
Symbol 601 MovieClip [path4] Frame 108
stop();
Symbol 602 MovieClip [path5] Frame 1
stop();
this._visible = false;
this._name = "path_mc";
Symbol 602 MovieClip [path5] Frame 103
stop();
Symbol 603 MovieClip [path6] Frame 1
stop();
this._visible = false;
this._name = "path_mc";
Symbol 603 MovieClip [path6] Frame 146
stop();
Symbol 604 MovieClip [path7] Frame 1
stop();
this._visible = false;
this._name = "path_mc";
Symbol 604 MovieClip [path7] Frame 168
stop();
Symbol 605 MovieClip [path8] Frame 1
stop();
this._visible = false;
this._name = "path_mc";
Symbol 605 MovieClip [path8] Frame 227
stop();
Symbol 606 MovieClip [path9] Frame 1
stop();
this._visible = false;
this._name = "path_mc";
Symbol 606 MovieClip [path9] Frame 103
stop();
Symbol 612 MovieClip [enemy1] Frame 1
#initclip 241
Object.registerClass("enemy1", Enemy);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 20;
life = _life;
Symbol 612 MovieClip [enemy1] Frame 29
stop();
this.removeMovieClip();
Symbol 616 MovieClip [enemy6] Frame 1
#initclip 242
Object.registerClass("enemy6", Enemy);
#endinitclip
function doInit() {
var _local1;
if (defaultData != false) {
_local1 = {type:"aim", dir_angle:90, V:7, delayTime:0, path:1, life:20, time_shoot:2000, type_shoot:"s_aim_common", type_bullet:1, V_bullet:7};
} else {
_local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
}
init(_local1);
}
stop();
doInit();
_life = 20;
life = _life;
Symbol 616 MovieClip [enemy6] Frame 29
stop();
this.removeMovieClip();
Symbol 620 MovieClip [enemy7] Frame 1
#initclip 243
Object.registerClass("enemy7", Enemy);
#endinitclip
function doInit() {
var _local1;
if (defaultData != false) {
_local1 = {type:"chase", dir_angle:90, V:6, delayTime:0, path:1, life:20, time_shoot:2000, type_shoot:"s_aim_common", type_bullet:1, V_bullet:7};
} else {
_local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
}
init(_local1);
}
stop();
doInit();
_life = 20;
life = _life;
Symbol 620 MovieClip [enemy7] Frame 29
stop();
this.removeMovieClip();
Symbol 624 MovieClip [enemy5_1] Frame 1
#initclip 244
Object.registerClass("enemy5_1", Enemy_movoTo_back);
#endinitclip
stop();
init(delayTime, backTime, _posX, _posY, V, aim);
_life = 200;
life = _life;
time_shoot = 1400;
Instance of Symbol 124 MovieClip [s_aim3] "shoot_mc" in Symbol 624 MovieClip [enemy5_1] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "";
V = 8;
}
Symbol 624 MovieClip [enemy5_1] Frame 29
stop();
this.removeMovieClip();
Symbol 628 MovieClip [enemy2] Frame 1
#initclip 245
Object.registerClass("enemy2", Enemy);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 20;
life = _life;
Symbol 628 MovieClip [enemy2] Frame 29
stop();
this.removeMovieClip();
Symbol 632 MovieClip [enemy_big1] Frame 1
#initclip 246
Object.registerClass("enemy_big1", Enemy_movoTo);
#endinitclip
function doInit() {
var _local1 = {dir_angle:dir_angle, V:V, delayTime:delayTime, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet, toPosX:toPosX, toPosY:toPosY, endPosX:endPosX, endPosY:endPosY, continueTime:continueTime};
init(_local1);
}
stop();
doInit();
_life = 400;
life = _life;
Symbol 632 MovieClip [enemy_big1] Frame 29
stop();
this.removeMovieClip();
Symbol 636 MovieClip [enemy3] Frame 1
#initclip 247
Object.registerClass("enemy3", Enemy);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 20;
life = _life;
Symbol 636 MovieClip [enemy3] Frame 2
_root.dorpItem(_root.itemObj.powerUP1, this);
Symbol 636 MovieClip [enemy3] Frame 29
stop();
this.removeMovieClip();
Symbol 637 MovieClip [enemy3_2] Frame 1
#initclip 248
Object.registerClass("enemy3_2", Enemy);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 20;
life = _life;
Symbol 637 MovieClip [enemy3_2] Frame 2
_root.dorpItem(_root.itemObj.powerUP2, this);
Symbol 637 MovieClip [enemy3_2] Frame 29
stop();
this.removeMovieClip();
Symbol 638 MovieClip [enemy3_3] Frame 1
#initclip 249
Object.registerClass("enemy3_3", Enemy);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 20;
life = _life;
Symbol 638 MovieClip [enemy3_3] Frame 2
_root.dorpItem(_root.itemObj.lifeUP1, this);
Symbol 638 MovieClip [enemy3_3] Frame 29
stop();
this.removeMovieClip();
Symbol 641 MovieClip Frame 1
stop();
Symbol 641 MovieClip Frame 10
stop();
Symbol 648 MovieClip [enemy_gun6] Frame 1
#initclip 250
Object.registerClass("enemy_gun6", Enemy_gun);
#endinitclip
stop();
if (life < 100) {
_life = 100;
life = _life;
}
Symbol 648 MovieClip [enemy_gun6] Frame 29
stop();
this.removeMovieClip();
Symbol 671 MovieClip Frame 1
stop();
this._visible = false;
Symbol 671 MovieClip Frame 12
gotoAndPlay (2);
Symbol 696 MovieClip Frame 1
stop();
this._visible = false;
Symbol 696 MovieClip Frame 12
gotoAndPlay (2);
Symbol 699 MovieClip Frame 1
this._visible = false;
Symbol 699 MovieClip Frame 17
_parent.shoot_mc1.shoot();
Symbol 699 MovieClip Frame 30
_parent.shoot_mc2.shoot();
Symbol 699 MovieClip Frame 55
_parent.shoot_mc3.shoot();
Symbol 699 MovieClip Frame 96
stop();
_parent.shoot_control();
Symbol 705 MovieClip Frame 2
_root.soundStart("boom6_snd");
Symbol 705 MovieClip Frame 33
stop();
Symbol 706 MovieClip [boss_plane5] Frame 1
#initclip 251
Object.registerClass("boss_plane5", Enemy_boss);
#endinitclip
function doInit() {
var _local1 = {toPosX:toPosX, toPosY:toPosY};
init(_local1);
}
function hit(damage, id) {
if (inDie) {
return(undefined);
}
if (_y < 0) {
return(undefined);
}
life = life - damage;
if (life <= 0) {
die();
} else if ((life / _life) < 0.5) {
goS3();
goS3 = null;
}
}
function goS3() {
body.play();
this.gotoAndPlay("s2");
}
stop();
doInit();
_life = 6000;
life = _life;
Instance of Symbol 648 MovieClip [enemy_gun6] in Symbol 706 MovieClip [boss_plane5] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim32";
type_bullet = "2";
V_bullet = 8;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2500;
}
Instance of Symbol 648 MovieClip [enemy_gun6] in Symbol 706 MovieClip [boss_plane5] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim32";
type_bullet = "2";
V_bullet = 8;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2500;
}
Symbol 706 MovieClip [boss_plane5] Frame 8
smoke_mc1._visible = true;
smoke_mc1.play();
fire_mc1._visible = true;
fire_mc1.play();
body.mc4.play();
Instance of Symbol 123 MovieClip [s_aim1] "shoot_mc1" in Symbol 706 MovieClip [boss_plane5] Frame 8
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_missle1";
V = 8;
}
Instance of Symbol 123 MovieClip [s_aim1] "shoot_mc2" in Symbol 706 MovieClip [boss_plane5] Frame 8
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_missle1";
V = 8;
}
Instance of Symbol 122 MovieClip [s_spread_forward52] "shoot_mc3" in Symbol 706 MovieClip [boss_plane5] Frame 8
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_3";
V = 8;
}
Symbol 706 MovieClip [boss_plane5] Frame 27
stop();
Symbol 706 MovieClip [boss_plane5] Frame 74
stop();
_root.game_passStage_1();
this.removeMovieClip();
Symbol 707 MovieClip [enemy_loader_ld2] Frame 1
#initclip 252
Object.registerClass("enemy_loader_ld2", Enemy_loader);
#endinitclip
stop();
frameArray = new Object();
frameArray.normal = [10, 20];
frameArray.path = [30, 38];
frameArray.big = [50, 58];
frameArray.item1 = [70, 79];
frameArray.item2 = [80, 89];
frameArray.item3 = [90, 99];
attackArray = new Array();
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("path");
attackArray.push("item1");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item2");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item3");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray2 = new Array();
attackArray2.push("normal");
attackArray2.push("normal");
attackArray2.push("normal");
Instance of Symbol 612 MovieClip [enemy1] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 10
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 16
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 624 MovieClip [enemy5_1] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 19
//component parameters
onClipEvent (construct) {
delayTime = 0;
backTime = 5000;
_posX = 200;
_posY = 200;
V = 10;
aim = false;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 50
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 200;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 53
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 100;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 55
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 300;
toPosY = 200;
endPosX = 200;
endPosY = -200;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 57
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 100;
toPosY = 200;
endPosX = 200;
endPosY = -200;
continueTime = 15000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 70
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 75
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 80
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 85
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 90
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 95
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 706 MovieClip [boss_plane5] in Symbol 707 MovieClip [enemy_loader_ld2] Frame 100
//component parameters
onClipEvent (construct) {
toPosX = 200;
toPosY = 150;
}
Symbol 715 MovieClip [enemy_gun3] Frame 1
#initclip 253
Object.registerClass("enemy_gun3", Enemy_gun);
#endinitclip
stop();
if (life < 100) {
_life = 100;
life = _life;
}
Symbol 715 MovieClip [enemy_gun3] Frame 29
stop();
this.removeMovieClip();
Symbol 716 MovieClip Frame 1
this._visible = false;
stop();
Symbol 716 MovieClip Frame 2
_parent.mc1.play();
_parent.shoot_mc1.shoot();
Symbol 716 MovieClip Frame 55
stop();
_parent.shoot_control();
Symbol 717 MovieClip [boss2] Frame 1
#initclip 254
Object.registerClass("boss2", Enemy_boss);
#endinitclip
function doInit() {
var _local1 = {toPosX:toPosX, toPosY:toPosY};
init(_local1);
}
stop();
doInit();
_life = 6500;
life = _life;
mc2.hit = function () {
if (this.life <= 0) {
fire_mc1.stop();
fire_mc1._visible = false;
smoke_mc1.stop();
smoke_mc1._visible = false;
} else if (this.life < (_life * 0.5)) {
fire_mc1.play();
fire_mc1._visible = true;
} else if (this.life < (_life * 0.7)) {
smoke_mc1.play();
smoke_mc1._visible = true;
}
};
mc3.hit = function () {
if (this.life <= 0) {
fire_mc2.stop();
fire_mc2._visible = false;
smoke_mc2.stop();
smoke_mc2._visible = false;
} else if (this.life < (_life * 0.5)) {
fire_mc2.play();
fire_mc2._visible = true;
} else if (this.life < (_life * 0.7)) {
smoke_mc2.play();
smoke_mc2._visible = true;
}
};
Instance of Symbol 121 MovieClip [s_laser1] "shoot_mc1" in Symbol 717 MovieClip [boss2] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
}
Instance of Symbol 715 MovieClip [enemy_gun3] in Symbol 717 MovieClip [boss2] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1_2";
V_bullet = 7;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 715 MovieClip [enemy_gun3] in Symbol 717 MovieClip [boss2] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1_2";
V_bullet = 7;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 3000;
}
Instance of Symbol 715 MovieClip [enemy_gun3] in Symbol 717 MovieClip [boss2] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim51";
type_bullet = "2";
V_bullet = 7;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 3000;
}
Instance of Symbol 715 MovieClip [enemy_gun3] in Symbol 717 MovieClip [boss2] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim51";
type_bullet = "2";
V_bullet = 7;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 4000;
}
Symbol 717 MovieClip [boss2] Frame 2
trace(55555555);
Symbol 717 MovieClip [boss2] Frame 29
stop();
_root.game_passStage_1();
this.removeMovieClip();
Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 1
#initclip 255
Object.registerClass("enemy_loader_ld2_b", Enemy_loader);
#endinitclip
stop();
frameArray = new Object();
frameArray.normal = [10, 20];
frameArray.path = [30, 38];
frameArray.big = [50, 58];
frameArray.item1 = [70, 79];
frameArray.item2 = [80, 89];
frameArray.item3 = [90, 99];
attackArray = new Array();
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("path");
attackArray.push("item1");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item2");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item3");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray2 = new Array();
attackArray2.push("normal");
attackArray2.push("normal");
attackArray2.push("normal");
Instance of Symbol 612 MovieClip [enemy1] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 10
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 16
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 624 MovieClip [enemy5_1] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 19
//component parameters
onClipEvent (construct) {
delayTime = 0;
backTime = 5000;
_posX = 200;
_posY = 200;
V = 10;
aim = false;
}
Instance of Symbol 624 MovieClip [enemy5_1] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 20
//component parameters
onClipEvent (construct) {
delayTime = 0;
backTime = 5000;
_posX = 200;
_posY = 200;
V = 10;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 50
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 200;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 53
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 100;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 55
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 300;
toPosY = 200;
endPosX = 200;
endPosY = -200;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 57
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 100;
toPosY = 200;
endPosX = 200;
endPosY = -200;
continueTime = 15000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 70
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 75
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 80
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 85
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 90
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 95
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 717 MovieClip [boss2] in Symbol 718 MovieClip [enemy_loader_ld2_b] Frame 100
//component parameters
onClipEvent (construct) {
toPosX = 200;
toPosY = 100;
}
Symbol 723 MovieClip [enemy9] Frame 1
#initclip 256
Object.registerClass("enemy9", Enemy);
#endinitclip
function doInit() {
var _local1;
if (defaultData != false) {
_local1 = {type:"normal", dir_angle:90, V:9, delayTime:0, path:1, life:40, time_shoot:2000, type_shoot:"s_aim_common", type_bullet:1, V_bullet:7};
} else {
_local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
}
init(_local1);
}
stop();
doInit();
_life = 40;
life = _life;
Symbol 723 MovieClip [enemy9] Frame 29
stop();
this.removeMovieClip();
Symbol 727 MovieClip [enemy_big0] Frame 1
#initclip 257
Object.registerClass("enemy_big0", Enemy_movoTo);
#endinitclip
function doInit() {
var _local1;
if (defaultData) {
_local1 = {dir_angle:-90, V:2, delayTime:0, life:400, time_shoot:2000, type_shoot:"s_big0", type_bullet:5, V_bullet:8, toPosX:200, toPosY:200, endPosX:100, endPosY:-200, continueTime:15000};
} else {
_local1 = {dir_angle:dir_angle, V:V, delayTime:delayTime, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet, toPosX:toPosX, toPosY:toPosY, endPosX:endPosX, endPosY:endPosY, continueTime:continueTime};
}
init(_local1);
}
stop();
doInit();
_life = 400;
life = _life;
Symbol 727 MovieClip [enemy_big0] Frame 29
stop();
this.removeMovieClip();
Symbol 742 MovieClip Frame 1
stop();
Symbol 744 MovieClip Frame 1
this._visible = false;
stop();
Symbol 744 MovieClip Frame 13
if (_root.inPause) {
gotoAndPlay ("start");
}
Symbol 744 MovieClip Frame 15
_parent.shoot_mc3.shoot();
Symbol 744 MovieClip Frame 30
_parent.shoot_mc4.shoot();
Symbol 744 MovieClip Frame 65
_parent.shoot_mc1.shoot();
Symbol 744 MovieClip Frame 86
_parent.shoot_mc2.shoot();
Symbol 744 MovieClip Frame 103
stop();
_parent.shoot_control();
Symbol 747 MovieClip [enemy_gun7] Frame 1
#initclip 258
Object.registerClass("enemy_gun7", Enemy_gun);
#endinitclip
stop();
if (life < 100) {
_life = 100;
life = _life;
}
Symbol 747 MovieClip [enemy_gun7] Frame 29
stop();
this.removeMovieClip();
Symbol 748 MovieClip [enemy_gun9] Frame 1
#initclip 259
Object.registerClass("enemy_gun9", Enemy_gun);
#endinitclip
stop();
if (life < 100) {
_life = 100;
life = _life;
}
Symbol 748 MovieClip [enemy_gun9] Frame 29
stop();
this.removeMovieClip();
Symbol 749 MovieClip Frame 28
stop();
Symbol 750 MovieClip [boss_ship2] Frame 1
#initclip 260
Object.registerClass("boss_ship2", Enemy_boss_tank);
#endinitclip
function doInit() {
var _local1 = {toPosX:toPosX, toPosY:toPosY};
init(_local1);
}
function hit(damage, id) {
if (inDie) {
return(undefined);
}
if (_y < 0) {
return(undefined);
}
life = life - damage;
if (life <= 0) {
die();
} else if ((life / _life) < 0.35) {
goS3();
goS3 = null;
} else if ((life / _life) < 0.7) {
goS2();
goS2 = null;
}
}
function goS2() {
this.gotoAndPlay("s2");
}
function goS3() {
this.gotoAndPlay("s3");
}
stop();
doInit();
_life = 6500;
life = _life;
V = 4;
Instance of Symbol 715 MovieClip [enemy_gun3] in Symbol 750 MovieClip [boss_ship2] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim3";
type_bullet = "1_2";
V_bullet = 10;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2400;
}
Instance of Symbol 715 MovieClip [enemy_gun3] in Symbol 750 MovieClip [boss_ship2] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim3";
type_bullet = "1_2";
V_bullet = 10;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 648 MovieClip [enemy_gun6] in Symbol 750 MovieClip [boss_ship2] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim33";
type_bullet = "2";
V_bullet = 10;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2800;
}
Instance of Symbol 648 MovieClip [enemy_gun6] in Symbol 750 MovieClip [boss_ship2] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim33";
type_bullet = "2";
V_bullet = 10;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2600;
}
Instance of Symbol 747 MovieClip [enemy_gun7] in Symbol 750 MovieClip [boss_ship2] Frame 8
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim51";
type_bullet = "5";
V_bullet = 9;
shoot_posy = 50;
delayTime = 0;
life = 100;
time_shoot = 2300;
}
Instance of Symbol 747 MovieClip [enemy_gun7] in Symbol 750 MovieClip [boss_ship2] Frame 8
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim51";
type_bullet = "5";
V_bullet = 9;
shoot_posy = 50;
delayTime = 0;
life = 100;
time_shoot = 2500;
}
Instance of Symbol 748 MovieClip [enemy_gun9] in Symbol 750 MovieClip [boss_ship2] Frame 8
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim32_gun";
type_bullet = "2";
V_bullet = 10;
shoot_posy = 40;
delayTime = 0;
life = 100;
time_shoot = 2000;
}
Symbol 750 MovieClip [boss_ship2] Frame 9
moveFunc_start(200, 480);
Symbol 750 MovieClip [boss_ship2] Frame 21
stop();
Symbol 750 MovieClip [boss_ship2] Frame 61
stop();
_root.game_passStage_1();
this.removeMovieClip();
Symbol 751 MovieClip [enemy_loader_sdn] Frame 1
#initclip 261
Object.registerClass("enemy_loader_sdn", Enemy_loader);
#endinitclip
stop();
frameArray = new Object();
frameArray.normal = [10, 20];
frameArray.path = [30, 38];
frameArray.big = [50, 58];
frameArray.item1 = [70, 79];
frameArray.item2 = [80, 89];
frameArray.item3 = [90, 99];
attackArray = new Array();
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("path");
attackArray.push("item1");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item2");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item3");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray2 = new Array();
attackArray2.push("normal");
attackArray2.push("normal");
attackArray2.push("normal");
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 13
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 13
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 13
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 13
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 14
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 14
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 14
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 14
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 16
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 16
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 16
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 18
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 18
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 18
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 624 MovieClip [enemy5_1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 19
//component parameters
onClipEvent (construct) {
delayTime = 0;
backTime = 5000;
_posX = 200;
_posY = 200;
V = 10;
aim = false;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 19
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 19
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 30
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 30
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 30
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 31
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 31
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 31
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 33
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 33
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 33
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 35
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 35
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 35
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 37
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 37
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 37
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 727 MovieClip [enemy_big0] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 50
//component parameters
onClipEvent (construct) {
defaultData = true;
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 150;
toPosY = 200;
endPosX = 200;
endPosY = -600;
continueTime = 5000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 55
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 200;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 55
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 3000;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 200;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 727 MovieClip [enemy_big0] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 57
//component parameters
onClipEvent (construct) {
defaultData = true;
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 150;
toPosY = 200;
endPosX = 200;
endPosY = -600;
continueTime = 5000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 57
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 57
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 57
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 70
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 72
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 73
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 75
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 80
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 82
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 82
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 83
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 84
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 85
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 90
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 95
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 750 MovieClip [boss_ship2] in Symbol 751 MovieClip [enemy_loader_sdn] Frame 100
//component parameters
onClipEvent (construct) {
toPosX = 200;
toPosY = 250;
}
Symbol 762 MovieClip Frame 1
stop();
Symbol 765 MovieClip [enemy_gun11] Frame 1
#initclip 262
Object.registerClass("enemy_gun11", Enemy_gun);
#endinitclip
stop();
if (life < 100) {
_life = 100;
life = _life;
}
Symbol 765 MovieClip [enemy_gun11] Frame 29
stop();
this.removeMovieClip();
Symbol 777 MovieClip [enemy_gun12] Frame 1
#initclip 263
Object.registerClass("enemy_gun12", Enemy_gun);
#endinitclip
stop();
if (life < 100) {
_life = 100;
life = _life;
}
Symbol 777 MovieClip [enemy_gun12] Frame 29
stop();
this.removeMovieClip();
Symbol 780 MovieClip Frame 1
this._visible = false;
Symbol 780 MovieClip Frame 89
_parent.moveFunc_start(200, 300);
_parent.body2._rotation = 0;
Symbol 780 MovieClip Frame 169
_parent.moveFunc_start(200, 400);
Symbol 780 MovieClip Frame 231
_parent.moveFunc_start(100, 400);
_parent.body2._rotation = -90;
Symbol 780 MovieClip Frame 294
_parent.moveFunc_start(300, 400);
Symbol 780 MovieClip Frame 359
_parent.moveFunc_start(200, 400);
Instance of Symbol 120 MovieClip [s_rotate_line] in Symbol 782 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "";
V = 8;
}
Symbol 783 MovieClip Frame 1
stop();
Symbol 784 MovieClip Frame 1
this._visible = false;
Symbol 784 MovieClip Frame 31
_parent.body.play();
Symbol 784 MovieClip Frame 81
_parent.shoot_mc2.shoot();
Symbol 784 MovieClip Frame 109
stop();
_parent.shoot_control();
Symbol 798 MovieClip Frame 1
this._visible = false;
Symbol 798 MovieClip Frame 2
_parent.mc1.play();
_parent.shoot_mc1.shoot();
Symbol 798 MovieClip Frame 40
_parent.shoot_mc2.play();
Symbol 798 MovieClip Frame 84
stop();
_parent.shoot_control();
Symbol 799 MovieClip [boss_tank] Frame 1
#initclip 264
Object.registerClass("boss_tank", Enemy_boss_tank);
#endinitclip
function doInit() {
var _local1 = {toPosX:toPosX, toPosY:toPosY};
init(_local1);
}
stop();
doInit();
_life = 7000;
life = _life;
Instance of Symbol 765 MovieClip [enemy_gun11] in Symbol 799 MovieClip [boss_tank] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
V_bullet = 8;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2500;
}
Instance of Symbol 765 MovieClip [enemy_gun11] in Symbol 799 MovieClip [boss_tank] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
V_bullet = 8;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 777 MovieClip [enemy_gun12] "body" in Symbol 799 MovieClip [boss_tank] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim51";
type_bullet = "3";
V_bullet = 8;
shoot_posy = 120;
delayTime = 0;
life = 100;
time_shoot = 3200;
}
Symbol 799 MovieClip [boss_tank] Frame 8
smoke_mc1._visible = true;
smoke_mc1.play();
Symbol 799 MovieClip [boss_tank] Frame 27
stop();
Instance of Symbol 119 MovieClip [shoot_line] "shoot_mc2" in Symbol 799 MovieClip [boss_tank] Frame 27
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_2";
angle_start = 0;
aim = true;
bullet_num = 10;
r = 10;
V = 10;
time_shoot = 40;
}
Symbol 799 MovieClip [boss_tank] Frame 29
fire_mc1._visible = true;
fire_mc1.play();
Symbol 799 MovieClip [boss_tank] Frame 47
stop();
Instance of Symbol 126 MovieClip [shoot_circle] "shoot_mc1" in Symbol 799 MovieClip [boss_tank] Frame 47
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_2_2";
angle_start = 45;
angle_total = 360;
d_angle = 15;
r = 20;
V = 8;
time_shoot = 0;
}
Instance of Symbol 117 MovieClip [s_laser2] "shoot_mc2" in Symbol 799 MovieClip [boss_tank] Frame 47
//component parameters
onClipEvent (construct) {
type = "";
}
Symbol 799 MovieClip [boss_tank] Frame 94
stop();
_root.game_passStage_1();
this.removeMovieClip();
Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 1
#initclip 265
Object.registerClass("enemy_loader_sdn_b", Enemy_loader);
#endinitclip
stop();
frameArray = new Object();
frameArray.normal = [10, 20];
frameArray.path = [30, 38];
frameArray.big = [50, 58];
frameArray.item1 = [70, 79];
frameArray.item2 = [80, 89];
frameArray.item3 = [90, 99];
attackArray = new Array();
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("path");
attackArray.push("item1");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item2");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item3");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray2 = new Array();
attackArray2.push("normal");
attackArray2.push("normal");
attackArray2.push("normal");
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 13
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 13
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 13
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 14
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 14
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 14
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 16
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 16
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 18
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 18
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 18
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 18
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 624 MovieClip [enemy5_1] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 19
//component parameters
onClipEvent (construct) {
delayTime = 0;
backTime = 5000;
_posX = 200;
_posY = 200;
V = 10;
aim = false;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 30
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 30
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 30
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 33
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 33
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 33
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 35
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 35
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 35
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 37
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 37
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 37
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 50
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 200;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 50
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 50
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 727 MovieClip [enemy_big0] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 51
//component parameters
onClipEvent (construct) {
defaultData = true;
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 150;
toPosY = 200;
endPosX = 200;
endPosY = -600;
continueTime = 5000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 53
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 53
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 55
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 55
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 57
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 100;
toPosY = 200;
endPosX = 200;
endPosY = -200;
continueTime = 15000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 70
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 72
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 73
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 75
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 80
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 82
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 82
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 83
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 84
//component parameters
onClipEvent (construct) {
defaultData = false;
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 85
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 90
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 95
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 799 MovieClip [boss_tank] in Symbol 800 MovieClip [enemy_loader_sdn_b] Frame 100
//component parameters
onClipEvent (construct) {
toPosX = 200;
toPosY = 120;
}
Symbol 805 MovieClip [enemy10] Frame 1
#initclip 266
Object.registerClass("enemy10", Enemy);
#endinitclip
function doInit() {
var _local1;
if (defaultData != false) {
_local1 = {type:"path", dir_angle:90, V:5, delayTime:0, path:5, life:60, time_shoot:2000, type_shoot:"s_aim_common", type_bullet:1, V_bullet:8};
} else {
_local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
}
init(_local1);
}
stop();
doInit();
_life = 60;
life = _life;
Symbol 805 MovieClip [enemy10] Frame 29
stop();
this.removeMovieClip();
Symbol 809 MovieClip [enemy12] Frame 1
#initclip 267
Object.registerClass("enemy12", Enemy);
#endinitclip
function doInit() {
var _local1;
if (defaultData != false) {
_local1 = {type:"chase", dir_angle:90, V:8, delayTime:0, path:1, life:40, time_shoot:2000, type_shoot:"", type_bullet:1, V_bullet:10};
} else {
_local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
}
init(_local1);
}
stop();
doInit();
_life = 20;
life = _life;
Symbol 809 MovieClip [enemy12] Frame 29
stop();
this.removeMovieClip();
Symbol 812 MovieClip [enemy_big3] Frame 1
#initclip 268
Object.registerClass("enemy_big3", Enemy_movoTo);
#endinitclip
function doInit() {
var _local1 = {dir_angle:dir_angle, V:V, delayTime:delayTime, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet, toPosX:toPosX, toPosY:toPosY, endPosX:endPosX, endPosY:endPosY, continueTime:continueTime};
init(_local1);
}
stop();
time_shoot = 2700;
doInit();
_life = 400;
life = _life;
Symbol 812 MovieClip [enemy_big3] Frame 29
stop();
this.removeMovieClip();
Symbol 815 MovieClip Frame 1
stop();
Instance of Symbol 114 MovieClip [s_spread_rotate1] in Symbol 815 MovieClip Frame 2
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_3";
V = 5;
}
Symbol 816 MovieClip Frame 1
stop();
Symbol 816 MovieClip Frame 16
mc.gotoAndStop(2);
Symbol 816 MovieClip Frame 87
mc.laser.play();
mc.gotoAndStop(1);
Symbol 820 MovieClip Frame 1
this._visible = false;
Symbol 820 MovieClip Frame 11
if (_root.inPause) {
gotoAndPlay ("start");
}
Symbol 820 MovieClip Frame 15
_parent.body.mc1.play();
_parent.shoot_mc1.shoot();
Symbol 820 MovieClip Frame 41
_parent.body.mc3.play();
_parent.shoot_mc3.shoot();
Symbol 820 MovieClip Frame 68
_parent.body.mc2.play();
_parent.shoot_mc2.shoot();
Symbol 820 MovieClip Frame 92
_parent.body.mc4.play();
Symbol 820 MovieClip Frame 109
_parent.body.gun1.play();
Symbol 820 MovieClip Frame 139
Symbol 821 MovieClip [boss7] Frame 1
#initclip 269
Object.registerClass("boss7", Enemy_boss);
#endinitclip
function doInit() {
var _local1 = {toPosX:toPosX, toPosY:toPosY};
init(_local1);
}
function hit(damage, id) {
if (inDie) {
return(undefined);
}
if (_y < 0) {
return(undefined);
}
life = life - damage;
trace((("lllll::" + life) + " ") + die);
if (life <= 0) {
die();
} else if ((life / _life) < 0.5) {
goS3();
goS3 = null;
}
}
function goS3() {
body.play();
this.gotoAndPlay("s2");
}
stop();
doInit();
_life = 7000;
life = _life;
Instance of Symbol 123 MovieClip [s_aim1] "shoot_mc1" in Symbol 821 MovieClip [boss7] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_7";
V = 6;
}
Instance of Symbol 123 MovieClip [s_aim1] "shoot_mc2" in Symbol 821 MovieClip [boss7] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_7";
V = 6;
}
Instance of Symbol 126 MovieClip [shoot_circle] "shoot_mc3" in Symbol 821 MovieClip [boss7] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_2";
angle_start = -45;
angle_total = 225;
d_angle = 15;
r = 20;
V = 8;
time_shoot = 20;
}
Instance of Symbol 126 MovieClip [shoot_circle] "shoot_mc4" in Symbol 821 MovieClip [boss7] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_2";
angle_start = -45;
angle_total = 225;
d_angle = -15;
r = 20;
V = 8;
time_shoot = 20;
}
Symbol 821 MovieClip [boss7] Frame 8
smoke_mc1._visible = true;
smoke_mc1.play();
fire_mc1._visible = true;
fire_mc1.play();
body.mc4.play();
Symbol 821 MovieClip [boss7] Frame 27
stop();
Symbol 821 MovieClip [boss7] Frame 68
stop();
_root.game_passStage_1();
this.removeMovieClip();
Symbol 822 MovieClip [enemy_loader_wsd] Frame 1
#initclip 270
Object.registerClass("enemy_loader_wsd", Enemy_loader);
#endinitclip
stop();
frameArray = new Object();
frameArray.normal = [10, 20];
frameArray.path = [30, 38];
frameArray.big = [50, 58];
frameArray.item1 = [70, 79];
frameArray.item2 = [80, 89];
frameArray.item3 = [90, 99];
attackArray = new Array();
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("path");
attackArray.push("big");
attackArray.push("item1");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item2");
attackArray.push("path");
attackArray.push("big");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item3");
attackArray.push("path");
attackArray.push("big");
attackArray.push("normal");
attackArray.push("normal");
attackArray2 = new Array();
attackArray2.push("normal");
attackArray2.push("normal");
attackArray2.push("normal");
Instance of Symbol 805 MovieClip [enemy10] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 11
//component parameters
onClipEvent (construct) {
type = "";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 11
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 11
//component parameters
onClipEvent (construct) {
type = "";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 809 MovieClip [enemy12] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 11
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 805 MovieClip [enemy10] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 12
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 805 MovieClip [enemy10] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 14
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 14
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 16
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 805 MovieClip [enemy10] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 16
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 805 MovieClip [enemy10] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 18
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 624 MovieClip [enemy5_1] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 19
//component parameters
onClipEvent (construct) {
delayTime = 0;
backTime = 5000;
_posX = 200;
_posY = 200;
V = 10;
aim = false;
}
Instance of Symbol 809 MovieClip [enemy12] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 19
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 805 MovieClip [enemy10] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 20
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 31
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 31
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 31
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 32
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 32
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 32
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 34
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 34
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 34
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 35
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 5;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 35
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 5;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 35
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 5;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 6;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 6;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 6;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 37
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 7;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 37
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 7;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 37
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 7;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 38
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 38
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 38
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 50
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 200;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 52
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 100;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 53
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 300;
toPosY = 200;
endPosX = 200;
endPosY = -200;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 54
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 100;
toPosY = 200;
endPosX = 200;
endPosY = -200;
continueTime = 15000;
}
Instance of Symbol 727 MovieClip [enemy_big0] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 55
//component parameters
onClipEvent (construct) {
defaultData = true;
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 150;
toPosY = 200;
endPosX = 200;
endPosY = -600;
continueTime = 5000;
}
Instance of Symbol 812 MovieClip [enemy_big3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 57
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim21";
type_bullet = "missle1";
dir_angle = 90;
V = 2;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 150;
toPosY = 150;
endPosX = 200;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 70
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 75
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 80
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 85
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 90
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 95
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 821 MovieClip [boss7] in Symbol 822 MovieClip [enemy_loader_wsd] Frame 100
//component parameters
onClipEvent (construct) {
toPosX = 200;
toPosY = 100;
}
Symbol 827 MovieClip Frame 1
this._visible = false;
stop();
Symbol 827 MovieClip Frame 17
_parent.shoot_mc1.shoot();
Symbol 827 MovieClip Frame 30
_parent.shoot_mc2.shoot();
Symbol 827 MovieClip Frame 41
_parent.shoot_mc3.shoot();
Symbol 827 MovieClip Frame 52
_parent.shoot_mc4.shoot();
Symbol 827 MovieClip Frame 96
stop();
_parent.shoot_control();
Symbol 828 MovieClip Frame 1
this._visible = false;
Symbol 828 MovieClip Frame 17
_parent.shoot_mc1.shoot();
Symbol 828 MovieClip Frame 30
_parent.shoot_mc2.shoot();
Symbol 828 MovieClip Frame 41
_parent.shoot_mc3.shoot();
Symbol 828 MovieClip Frame 52
_parent.shoot_mc4.shoot();
Symbol 828 MovieClip Frame 59
_parent.shoot_mc5.shoot();
Symbol 828 MovieClip Frame 96
stop();
_parent.shoot_control();
Symbol 829 MovieClip [boss_plane33] Frame 1
#initclip 271
Object.registerClass("boss_plane33", Enemy_boss);
#endinitclip
function doInit() {
var _local1 = {toPosX:toPosX, toPosY:toPosY};
init(_local1);
}
function hit(damage, id) {
if (inDie) {
return(undefined);
}
if (_y < 0) {
return(undefined);
}
life = life - damage;
if (life <= 0) {
die();
} else if ((life / _life) < 0.5) {
goS3();
goS3 = null;
}
}
function goS3() {
body.play();
this.gotoAndPlay("s2");
}
stop();
doInit();
_life = 7500;
life = _life;
Instance of Symbol 113 MovieClip [s_aim5] "shoot_mc1" in Symbol 829 MovieClip [boss_plane33] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_5";
V = 8;
}
Instance of Symbol 113 MovieClip [s_aim5] "shoot_mc2" in Symbol 829 MovieClip [boss_plane33] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_5";
V = 8;
}
Instance of Symbol 113 MovieClip [s_aim5] "shoot_mc3" in Symbol 829 MovieClip [boss_plane33] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_5";
V = 8;
}
Instance of Symbol 113 MovieClip [s_aim5] "shoot_mc4" in Symbol 829 MovieClip [boss_plane33] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_5";
V = 8;
}
Instance of Symbol 648 MovieClip [enemy_gun6] in Symbol 829 MovieClip [boss_plane33] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim32";
type_bullet = "2";
V_bullet = 8;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2500;
}
Symbol 829 MovieClip [boss_plane33] Frame 8
smoke_mc1._visible = true;
smoke_mc1.play();
fire_mc1._visible = true;
fire_mc1.play();
body.mc4.play();
Instance of Symbol 117 MovieClip [s_laser2] "shoot_mc5" in Symbol 829 MovieClip [boss_plane33] Frame 8
//component parameters
onClipEvent (construct) {
type = "";
}
Instance of Symbol 113 MovieClip [s_aim5] "shoot_mc1" in Symbol 829 MovieClip [boss_plane33] Frame 8
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_5";
V = 8;
}
Instance of Symbol 113 MovieClip [s_aim5] "shoot_mc2" in Symbol 829 MovieClip [boss_plane33] Frame 8
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_5";
V = 8;
}
Instance of Symbol 113 MovieClip [s_aim5] "shoot_mc3" in Symbol 829 MovieClip [boss_plane33] Frame 8
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_5";
V = 8;
}
Instance of Symbol 113 MovieClip [s_aim5] "shoot_mc4" in Symbol 829 MovieClip [boss_plane33] Frame 8
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_5";
V = 8;
}
Symbol 829 MovieClip [boss_plane33] Frame 27
stop();
Symbol 829 MovieClip [boss_plane33] Frame 68
stop();
_root.game_passStage_1();
this.removeMovieClip();
Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 1
#initclip 272
Object.registerClass("enemy_loader_wsd_b", Enemy_loader);
#endinitclip
stop();
maxNum = 5;
frameArray = new Object();
frameArray.normal = [10, 20];
frameArray.path = [30, 38];
frameArray.big = [50, 58];
frameArray.item1 = [70, 79];
frameArray.item2 = [80, 89];
frameArray.item3 = [90, 99];
attackArray = new Array();
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("path");
attackArray.push("big");
attackArray.push("item1");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item2");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray.push("item3");
attackArray.push("path");
attackArray.push("normal");
attackArray.push("normal");
attackArray.push("big");
attackArray2 = new Array();
attackArray2.push("normal");
attackArray2.push("normal");
attackArray2.push("normal");
Instance of Symbol 612 MovieClip [enemy1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 805 MovieClip [enemy10] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 10
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 11
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 809 MovieClip [enemy12] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 11
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 12
//component parameters
onClipEvent (construct) {
type = "";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 12
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 612 MovieClip [enemy1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 12
//component parameters
onClipEvent (construct) {
type = "";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 3;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 809 MovieClip [enemy12] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 13
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 620 MovieClip [enemy7] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 805 MovieClip [enemy10] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 723 MovieClip [enemy9] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 17
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 809 MovieClip [enemy12] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 18
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 624 MovieClip [enemy5_1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 19
//component parameters
onClipEvent (construct) {
delayTime = 0;
backTime = 5000;
_posX = 200;
_posY = 200;
V = 10;
aim = false;
}
Instance of Symbol 809 MovieClip [enemy12] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 19
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 809 MovieClip [enemy12] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 19
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 7;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 624 MovieClip [enemy5_1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 20
//component parameters
onClipEvent (construct) {
delayTime = 0;
backTime = 5000;
_posX = 200;
_posY = 200;
V = 10;
aim = true;
}
Instance of Symbol 624 MovieClip [enemy5_1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 20
//component parameters
onClipEvent (construct) {
delayTime = 0;
backTime = 5000;
_posX = 200;
_posY = 200;
V = 10;
aim = true;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 30
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 31
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 31
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 31
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 32
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 32
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 32
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 33
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 34
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 34
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 34
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 4;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 35
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 5;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 35
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 5;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 35
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 5;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 6;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 6;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 36
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 6;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 37
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 7;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 37
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 7;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 37
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 7;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 38
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 38
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 38
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 50
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 200;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 52
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = 90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 100;
toPosY = 200;
endPosX = 500;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 53
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 300;
toPosY = 200;
endPosX = 200;
endPosY = -200;
continueTime = 15000;
}
Instance of Symbol 632 MovieClip [enemy_big1] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 54
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim51";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 6;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 100;
toPosY = 200;
endPosX = 200;
endPosY = -200;
continueTime = 15000;
}
Instance of Symbol 727 MovieClip [enemy_big0] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 55
//component parameters
onClipEvent (construct) {
defaultData = true;
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = -90;
V = 2;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 150;
toPosY = 200;
endPosX = 200;
endPosY = -600;
continueTime = 5000;
}
Instance of Symbol 812 MovieClip [enemy_big3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 57
//component parameters
onClipEvent (construct) {
type_shoot = "s_spread_aim21";
type_bullet = "missle1";
dir_angle = 90;
V = 2;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
toPosX = 150;
toPosY = 150;
endPosX = 200;
endPosY = 600;
continueTime = 15000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 70
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 70
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 72
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 73
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 74
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 636 MovieClip [enemy3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 75
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 80
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 80
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 82
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 83
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 84
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 637 MovieClip [enemy3_2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 85
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 90
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 616 MovieClip [enemy6] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 90
//component parameters
onClipEvent (construct) {
defaultData = true;
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 6;
V_bullet = 10;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 92
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 2;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 93
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 3;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 600;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 0;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 200;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 628 MovieClip [enemy2] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 94
//component parameters
onClipEvent (construct) {
type = "path";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 8;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 638 MovieClip [enemy3_3] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 95
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 5;
V_bullet = 8;
delayTime = 400;
path = 0;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 829 MovieClip [boss_plane33] in Symbol 830 MovieClip [enemy_loader_wsd_b] Frame 100
//component parameters
onClipEvent (construct) {
toPosX = 200;
toPosY = 150;
}
Symbol 831 MovieClip [shoot_boss2] Frame 1
#initclip 273
Object.registerClass("shoot_boss2", EnemyShoot2);
#endinitclip
stop();
V = 10;
Instance of Symbol 21 MovieClip in Symbol 831 MovieClip [shoot_boss2] Frame 2
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 831 MovieClip [shoot_boss2] Frame 10
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 831 MovieClip [shoot_boss2] Frame 18
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Instance of Symbol 21 MovieClip in Symbol 831 MovieClip [shoot_boss2] Frame 26
//component parameters
onClipEvent (construct) {
type = "";
angle = 0;
}
Symbol 831 MovieClip [shoot_boss2] Frame 30
gotoAndStop (1);
Symbol 834 MovieClip [bullet_e_laser_turn] Frame 1
#initclip 274
Object.registerClass("bullet_e_laser_turn", Bullet_enemy_laser);
#endinitclip
damage = 30;
Symbol 834 MovieClip [bullet_e_laser_turn] Frame 12
stop();
Symbol 834 MovieClip [bullet_e_laser_turn] Frame 27
stop();
gotoAndStop (1);
Symbol 840 MovieClip Frame 1
stop();
Symbol 840 MovieClip Frame 15
if (_root.inPause) {
gotoAndPlay (2);
}
Instance of Symbol 126 MovieClip [shoot_circle] "mc" in Symbol 840 MovieClip Frame 15
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_5";
angle_start = 45;
angle_total = 450;
d_angle = 15;
r = 20;
V = 8;
time_shoot = 20;
}
Symbol 840 MovieClip Frame 16
mc.shoot();
Symbol 844 MovieClip Frame 1
stop();
this._visible = false;
Symbol 844 MovieClip Frame 82
this._visible = true;
_root.soundStart("laser4_snd");
Symbol 844 MovieClip Frame 180
gotoAndStop (1);
Symbol 845 MovieClip Frame 1
this._visible = false;
stop();
Symbol 845 MovieClip Frame 28
_parent.shoot_mc3.shoot();
Symbol 845 MovieClip Frame 56
_parent.mc4.play();
Symbol 845 MovieClip Frame 86
stop();
_parent.shoot_control();
Symbol 846 MovieClip Frame 1
this._visible = false;
Symbol 846 MovieClip Frame 2
_parent.body.mc1.play();
_parent.shoot_mc1.shoot();
Symbol 846 MovieClip Frame 26
_parent.body.mc3.play();
_parent.shoot_mc3.shoot();
Symbol 846 MovieClip Frame 53
_parent.body.mc2.play();
_parent.shoot_mc2.shoot();
Symbol 846 MovieClip Frame 85
_parent.body.mc4.play();
Symbol 846 MovieClip Frame 109
stop();
_parent.shoot_control();
Symbol 847 MovieClip Frame 1
this._visible = false;
trace(3333);
Symbol 847 MovieClip Frame 2
_parent.body.mc1.play();
Symbol 847 MovieClip Frame 31
_parent.body.mc2.play();
Symbol 847 MovieClip Frame 58
_parent.shoot_mc3.shoot();
Symbol 847 MovieClip Frame 80
_parent.mc4.play();
trace(66666);
Symbol 847 MovieClip Frame 102
Symbol 848 MovieClip [boss6] Frame 1
#initclip 275
Object.registerClass("boss6", Enemy_boss_tank);
#endinitclip
function doInit() {
var _local1 = {toPosX:toPosX, toPosY:toPosY};
init(_local1);
}
function moveFunc_start(toPosX, toPosY) {
_x = 230;
_y = 120;
_root.bg_mc.los29.boss_link.swapDepths(1234);
_root.bg_mc.los29.boss_link.removeMovieClip();
}
function hit(damage, id) {
if (inDie) {
return(undefined);
}
if (_y < 0) {
return(undefined);
}
life = life - damage;
if (life <= 0) {
die();
} else if ((life / _life) < 0.5) {
goS3();
goS3 = null;
}
}
function goS3() {
body.play();
this.gotoAndPlay("s2");
}
stop();
doInit();
_life = 8300;
life = _life;
Instance of Symbol 747 MovieClip [enemy_gun7] in Symbol 848 MovieClip [boss6] Frame 1
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_spread_aim33";
type_bullet = "2";
V_bullet = 11;
shoot_posy = 60;
delayTime = 0;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 122 MovieClip [s_spread_forward52] "shoot_mc3" in Symbol 848 MovieClip [boss6] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_3";
V = 8;
}
Instance of Symbol 844 MovieClip "mc4" in Symbol 848 MovieClip [boss6] Frame 1
//component parameters
onClipEvent (construct) {
type = "";
}
Symbol 848 MovieClip [boss6] Frame 8
smoke_mc1._visible = true;
smoke_mc1.play();
fire_mc1._visible = true;
fire_mc1.play();
body.mc4.play();
Symbol 848 MovieClip [boss6] Frame 27
stop();
Symbol 848 MovieClip [boss6] Frame 65
stop();
_root.game_passStage_1();
this.removeMovieClip();
Symbol 853 MovieClip [area_boom17] Frame 1
#initclip 276
Object.registerClass("area_boom17", AreaShoot);
#endinitclip
stop();
init();
Symbol 853 MovieClip [area_boom17] Frame 2
this._visible = true;
Symbol 853 MovieClip [area_boom17] Frame 30
stop();
Symbol 856 MovieClip [area_boom12] Frame 1
#initclip 277
Object.registerClass("area_boom12", AreaShoot);
#endinitclip
stop();
init();
Symbol 856 MovieClip [area_boom12] Frame 2
this._visible = true;
Symbol 856 MovieClip [area_boom12] Frame 30
stop();
Symbol 862 MovieClip [area_boom8] Frame 1
#initclip 278
Object.registerClass("area_boom8", AreaShoot);
#endinitclip
stop();
init();
Symbol 862 MovieClip [area_boom8] Frame 2
this._visible = true;
Symbol 862 MovieClip [area_boom8] Frame 30
stop();
Symbol 865 MovieClip [area_boom9] Frame 1
#initclip 279
Object.registerClass("area_boom9", AreaShoot);
#endinitclip
stop();
init();
Symbol 865 MovieClip [area_boom9] Frame 2
this._visible = true;
Symbol 865 MovieClip [area_boom9] Frame 30
stop();
Symbol 868 MovieClip [area_boom10] Frame 1
#initclip 280
Object.registerClass("area_boom10", AreaShoot);
#endinitclip
stop();
init();
Symbol 868 MovieClip [area_boom10] Frame 2
this._visible = true;
Symbol 868 MovieClip [area_boom10] Frame 30
stop();
Symbol 871 MovieClip [area_boom18] Frame 1
#initclip 281
Object.registerClass("area_boom18", AreaShoot);
#endinitclip
stop();
init();
Symbol 871 MovieClip [area_boom18] Frame 2
this._visible = true;
Symbol 871 MovieClip [area_boom18] Frame 30
stop();
Symbol 874 MovieClip [area_boom19] Frame 1
#initclip 282
Object.registerClass("area_boom19", AreaShoot);
#endinitclip
stop();
init();
Symbol 874 MovieClip [area_boom19] Frame 2
this._visible = true;
Symbol 874 MovieClip [area_boom19] Frame 30
stop();
Instance of Symbol 112 MovieClip [s_aim_common] "shoot_mc" in Symbol 888 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_2";
V = 8;
}
Symbol 891 MovieClip [enemy_cannon1] Frame 1
#initclip 283
Object.registerClass("enemy_cannon1", Enemy_tank);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 150;
life = _life;
time_shoot = 1500;
shape = "enemy_shape_tank1";
Symbol 891 MovieClip [enemy_cannon1] Frame 30
stop();
checkOut();
Symbol 896 MovieClip Frame 1
stop();
Instance of Symbol 111 MovieClip [s_aim2] "mc1" in Symbol 896 MovieClip Frame 12
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_missle1";
V = 8;
}
Symbol 896 MovieClip Frame 17
mc1.shoot();
Symbol 899 MovieClip [enemy_cannon2_missile] Frame 1
#initclip 284
Object.registerClass("enemy_cannon2_missile", Enemy_ground);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
function shoot() {
trace("shoot:::: " + pt.y);
if (_root.inPause) {
return(undefined);
}
if (_root.role.inDie) {
return(undefined);
}
if (pt.y > (_root.stage_h - 50)) {
return(undefined);
}
if (pt.y < 50) {
return(undefined);
}
mc2.play();
}
stop();
doInit();
_life = 200;
life = _life;
shape = "enemy_shape_tank1";
Symbol 899 MovieClip [enemy_cannon2_missile] Frame 29
stop();
checkOut();
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 900 MovieClip [ld24] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 900 MovieClip [ld24] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 900 MovieClip [ld24] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 899 MovieClip [enemy_cannon2_missile] in Symbol 900 MovieClip [ld24] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 124 MovieClip [s_aim3] "shoot_mc" in Symbol 904 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_1";
V = 9;
}
Symbol 907 MovieClip [enemy_cannon3] Frame 1
#initclip 285
Object.registerClass("enemy_cannon3", Enemy_tank);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 250;
life = _life;
shape = "enemy_shape_tank1";
Symbol 907 MovieClip [enemy_cannon3] Frame 30
stop();
Symbol 908 MovieClip [enemy_cannon2] Frame 1
#initclip 286
Object.registerClass("enemy_cannon2", Enemy_ground);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
function shoot() {
if (_root.inPause) {
return(undefined);
}
if (_root.role.inDie) {
return(undefined);
}
if (pt.y > (_root.stage_h - 50)) {
return(undefined);
}
if (pt.y < 50) {
return(undefined);
}
mc2.play();
}
stop();
doInit();
_life = 200;
life = _life;
shape = "enemy_shape_tank1";
Symbol 908 MovieClip [enemy_cannon2] Frame 29
stop();
checkOut();
Symbol 911 MovieClip [area_boom4] Frame 1
#initclip 287
Object.registerClass("area_boom4", AreaShoot);
#endinitclip
stop();
init();
Symbol 911 MovieClip [area_boom4] Frame 2
this._visible = true;
Symbol 911 MovieClip [area_boom4] Frame 30
stop();
Symbol 913 MovieClip [area_boom1] Frame 1
#initclip 288
Object.registerClass("area_boom1", AreaShoot);
#endinitclip
stop();
init();
Symbol 913 MovieClip [area_boom1] Frame 2
this._visible = true;
Symbol 913 MovieClip [area_boom1] Frame 30
stop();
Instance of Symbol 907 MovieClip [enemy_cannon3] in Symbol 914 MovieClip [ld25] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 908 MovieClip [enemy_cannon2] in Symbol 914 MovieClip [ld25] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Symbol 919 MovieClip [area_boom66] Frame 1
#initclip 289
Object.registerClass("area_boom66", AreaShoot);
#endinitclip
stop();
init();
Symbol 919 MovieClip [area_boom66] Frame 2
this._visible = true;
Symbol 919 MovieClip [area_boom66] Frame 30
stop();
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 920 MovieClip [ld26] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 920 MovieClip [ld26] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 113 MovieClip [s_aim5] "shoot_mc" in Symbol 924 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_1";
V = 9;
}
Symbol 925 MovieClip [enemy_cannon4] Frame 1
#initclip 290
Object.registerClass("enemy_cannon4", Enemy_tank);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 300;
life = _life;
shape = "enemy_shape_tank1";
Symbol 925 MovieClip [enemy_cannon4] Frame 30
stop();
Instance of Symbol 908 MovieClip [enemy_cannon2] in Symbol 926 MovieClip [ld27] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 907 MovieClip [enemy_cannon3] in Symbol 926 MovieClip [ld27] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 926 MovieClip [ld27] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 925 MovieClip [enemy_cannon4] in Symbol 926 MovieClip [ld27] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 112 MovieClip [s_aim_common] "shoot_mc" in Symbol 933 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_1";
V = 8;
}
Symbol 936 MovieClip [enemy_tank] Frame 1
#initclip 291
Object.registerClass("enemy_tank", Enemy_tank);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 200;
life = _life;
time_shoot = 1500;
shape = "enemy_shape_tank1";
Symbol 936 MovieClip [enemy_tank] Frame 29
stop();
checkOut();
Instance of Symbol 925 MovieClip [enemy_cannon4] in Symbol 937 MovieClip [ld28] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 907 MovieClip [enemy_cannon3] in Symbol 937 MovieClip [ld28] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 936 MovieClip [enemy_tank] in Symbol 937 MovieClip [ld28] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Symbol 947 MovieClip Frame 1
stop();
Instance of Symbol 126 MovieClip [shoot_circle] "shoot_mc" in Symbol 947 MovieClip Frame 20
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_2";
angle_start = 0;
angle_total = 360;
d_angle = 30;
r = 20;
V = 6;
time_shoot = 0;
}
Symbol 947 MovieClip Frame 23
shoot_mc.shoot();
Symbol 947 MovieClip Frame 47
gotoAndStop (1);
Symbol 949 MovieClip [enemy_cannon5] Frame 1
#initclip 292
Object.registerClass("enemy_cannon5", Enemy_ground);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
function shoot() {
trace("shoot:::: " + pt.y);
if (_root.inPause) {
return(undefined);
}
if (_root.role.inDie) {
return(undefined);
}
if (pt.y > (_root.stage_h - 50)) {
return(undefined);
}
if (pt.y < 50) {
return(undefined);
}
mc2.play();
clearInterval(timer_shoot);
timer_shoot = setInterval(this, "shoot", time_shoot);
}
stop();
type_shoot = "";
time_shoot = 2000;
doInit();
_life = 400;
life = _life;
shape = "enemy_shape_tank1";
Symbol 949 MovieClip [enemy_cannon5] Frame 29
stop();
checkOut();
Instance of Symbol 949 MovieClip [enemy_cannon5] in Symbol 950 MovieClip [sdn0] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Symbol 960 MovieClip [enemy_gun8] Frame 1
#initclip 293
Object.registerClass("enemy_gun8", Enemy_gun);
#endinitclip
stop();
if (life < 100) {
_life = 100;
life = _life;
}
Symbol 960 MovieClip [enemy_gun8] Frame 29
stop();
this.removeMovieClip();
Symbol 963 MovieClip [enemy_train] Frame 1
#initclip 294
Object.registerClass("enemy_train", Enemy_train);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 300;
life = _life;
shape = "enemy_shape_train1";
Symbol 963 MovieClip [enemy_train] Frame 2
stop();
Instance of Symbol 960 MovieClip [enemy_gun8] in Symbol 963 MovieClip [enemy_train] Frame 2
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim1";
type_bullet = "1";
V_bullet = 8;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 960 MovieClip [enemy_gun8] in Symbol 963 MovieClip [enemy_train] Frame 2
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim1";
type_bullet = "1";
V_bullet = 8;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2000;
}
Instance of Symbol 960 MovieClip [enemy_gun8] in Symbol 963 MovieClip [enemy_train] Frame 2
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim1";
type_bullet = "1";
V_bullet = 8;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2000;
}
Symbol 963 MovieClip [enemy_train] Frame 30
stop();
Symbol 970 MovieClip [enemy_train_left] Frame 1
#initclip 295
Object.registerClass("enemy_train_left", Enemy_train);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 300;
life = _life;
shape = "enemy_shape_train1";
Symbol 970 MovieClip [enemy_train_left] Frame 2
stop();
Instance of Symbol 960 MovieClip [enemy_gun8] in Symbol 970 MovieClip [enemy_train_left] Frame 2
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim_common";
type_bullet = "1";
V_bullet = 8;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2000;
}
Symbol 970 MovieClip [enemy_train_left] Frame 30
stop();
Instance of Symbol 963 MovieClip [enemy_train] in Symbol 971 MovieClip [sdn1] Frame 1
//component parameters
onClipEvent (construct) {
dir_angle = 180;
V = -1;
delayTime = 0;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 963 MovieClip [enemy_train] in Symbol 971 MovieClip [sdn1] Frame 1
//component parameters
onClipEvent (construct) {
dir_angle = 180;
V = -1;
delayTime = 0;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 963 MovieClip [enemy_train] in Symbol 971 MovieClip [sdn1] Frame 1
//component parameters
onClipEvent (construct) {
dir_angle = 180;
V = -1;
delayTime = 0;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 908 MovieClip [enemy_cannon2] "sss" in Symbol 971 MovieClip [sdn1] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 891 MovieClip [enemy_cannon1] "aaa" in Symbol 971 MovieClip [sdn1] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 970 MovieClip [enemy_train_left] in Symbol 971 MovieClip [sdn1] Frame 1
//component parameters
onClipEvent (construct) {
dir_angle = 180;
V = -1;
delayTime = 0;
life = 20;
time_shoot = 2000;
}
Symbol 975 MovieClip [enemy_train_right] Frame 1
#initclip 296
Object.registerClass("enemy_train_right", Enemy_train);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 300;
life = _life;
shape = "enemy_shape_train1";
Symbol 975 MovieClip [enemy_train_right] Frame 2
stop();
Instance of Symbol 960 MovieClip [enemy_gun8] in Symbol 975 MovieClip [enemy_train_right] Frame 2
//component parameters
onClipEvent (construct) {
type = "aim";
type_shoot = "s_aim1";
type_bullet = "1";
V_bullet = 8;
shoot_posy = 20;
delayTime = 0;
life = 100;
time_shoot = 2000;
}
Symbol 975 MovieClip [enemy_train_right] Frame 30
stop();
Instance of Symbol 963 MovieClip [enemy_train] in Symbol 976 MovieClip [sdn2] Frame 1
//component parameters
onClipEvent (construct) {
dir_angle = 0;
V = 1;
delayTime = 0;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 963 MovieClip [enemy_train] in Symbol 976 MovieClip [sdn2] Frame 1
//component parameters
onClipEvent (construct) {
dir_angle = 0;
V = 1;
delayTime = 0;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 963 MovieClip [enemy_train] in Symbol 976 MovieClip [sdn2] Frame 1
//component parameters
onClipEvent (construct) {
dir_angle = 0;
V = 1;
delayTime = 0;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 899 MovieClip [enemy_cannon2_missile] in Symbol 976 MovieClip [sdn2] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 907 MovieClip [enemy_cannon3] in Symbol 976 MovieClip [sdn2] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 976 MovieClip [sdn2] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 975 MovieClip [enemy_train_right] in Symbol 976 MovieClip [sdn2] Frame 1
//component parameters
onClipEvent (construct) {
dir_angle = 0;
V = 1;
delayTime = 0;
life = 20;
time_shoot = 2000;
}
Symbol 984 MovieClip [enemy_tank4] Frame 1
#initclip 297
Object.registerClass("enemy_tank4", Enemy_tank);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
type_shoot = "";
doInit();
_life = 200;
life = _life;
shape = "enemy_shape_tank1";
type_shoot = "";
Symbol 984 MovieClip [enemy_tank4] Frame 29
stop();
checkOut();
Instance of Symbol 936 MovieClip [enemy_tank] in Symbol 985 MovieClip [sdn3] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0.5;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 936 MovieClip [enemy_tank] in Symbol 985 MovieClip [sdn3] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0.5;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 984 MovieClip [enemy_tank4] in Symbol 985 MovieClip [sdn3] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "";
type_bullet = "1";
dir_angle = 90;
V = 1;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Symbol 993 MovieClip [enemy_tank9] Frame 1
#initclip 298
Object.registerClass("enemy_tank9", Enemy_tank);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
function dropItem() {
var _local2 = this.attachMovie("LifeInc_ground", "LifeInc_ground", this.getNextHighestDepth());
_local2._rotation = _local2._rotation - this._rotation;
}
stop();
type_shoot = "";
doInit();
_life = 200;
life = _life;
shape = "enemy_shape_tank1";
Symbol 993 MovieClip [enemy_tank9] Frame 29
stop();
checkOut();
Instance of Symbol 936 MovieClip [enemy_tank] in Symbol 994 MovieClip [sdn4] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0.5;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 936 MovieClip [enemy_tank] in Symbol 994 MovieClip [sdn4] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0.5;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 993 MovieClip [enemy_tank9] in Symbol 994 MovieClip [sdn4] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 1;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Symbol 1001 MovieClip [enemy_tank22] Frame 1
#initclip 299
Object.registerClass("enemy_tank22", Enemy_ground);
#endinitclip
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
type_bullet = "missle1";
V_bullet = 8;
doInit();
_life = 200;
life = _life;
shape = "enemy_shape_tank1";
Instance of Symbol 110 MovieClip [s_spread_forward21] "shoot_mc" in Symbol 1001 MovieClip [enemy_tank22] Frame 1
//component parameters
onClipEvent (construct) {
bullet_type = "bullet_e_missle1";
V = 8;
}
Symbol 1001 MovieClip [enemy_tank22] Frame 29
stop();
checkOut();
Instance of Symbol 1001 MovieClip [enemy_tank22] in Symbol 1002 MovieClip [sdn5] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 936 MovieClip [enemy_tank] in Symbol 1002 MovieClip [sdn5] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 936 MovieClip [enemy_tank] in Symbol 1005 MovieClip [sdn6] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0.5;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 936 MovieClip [enemy_tank] in Symbol 1005 MovieClip [sdn6] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0.5;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 936 MovieClip [enemy_tank] in Symbol 1008 MovieClip [sdn7] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 1;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 1001 MovieClip [enemy_tank22] in Symbol 1011 MovieClip [sdn8] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
}
Instance of Symbol 936 MovieClip [enemy_tank] in Symbol 1011 MovieClip [sdn8] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0.5;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Symbol 1022 MovieClip [area_boom15] Frame 1
#initclip 300
Object.registerClass("area_boom15", AreaShoot);
#endinitclip
stop();
init();
Symbol 1022 MovieClip [area_boom15] Frame 2
this._visible = true;
Symbol 1022 MovieClip [area_boom15] Frame 30
stop();
Instance of Symbol 925 MovieClip [enemy_cannon4] in Symbol 1023 MovieClip [wsd1] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 907 MovieClip [enemy_cannon3] in Symbol 1023 MovieClip [wsd1] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 1023 MovieClip [wsd1] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Symbol 1037 MovieClip [area_boom7] Frame 1
#initclip 301
Object.registerClass("area_boom7", AreaShoot);
#endinitclip
stop();
init();
Symbol 1037 MovieClip [area_boom7] Frame 2
this._visible = true;
Symbol 1037 MovieClip [area_boom7] Frame 30
stop();
Instance of Symbol 907 MovieClip [enemy_cannon3] in Symbol 1038 MovieClip [wsd5] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 907 MovieClip [enemy_cannon3] in Symbol 1038 MovieClip [wsd5] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 1038 MovieClip [wsd5] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 949 MovieClip [enemy_cannon5] in Symbol 1038 MovieClip [wsd5] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 925 MovieClip [enemy_cannon4] in Symbol 1041 MovieClip [wsd6] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 907 MovieClip [enemy_cannon3] in Symbol 1041 MovieClip [wsd6] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 1041 MovieClip [wsd6] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 891 MovieClip [enemy_cannon1] in Symbol 1041 MovieClip [wsd6] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 100;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 899 MovieClip [enemy_cannon2_missile] in Symbol 1044 MovieClip [wsd7] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Instance of Symbol 908 MovieClip [enemy_cannon2] in Symbol 1044 MovieClip [wsd7] Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 0;
V_bullet = 5;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 2000;
eventObj = "";
}
Symbol 1052 MovieClip [area_boom16] Frame 1
#initclip 302
Object.registerClass("area_boom16", AreaShoot);
#endinitclip
stop();
init();
Symbol 1052 MovieClip [area_boom16] Frame 2
this._visible = true;
Symbol 1052 MovieClip [area_boom16] Frame 30
stop();
Symbol 1058 Button
on (release) {
type = "continue";
play();
}
Symbol 1062 Button
on (release) {
type = "mainMenu";
play();
}
Symbol 1066 Button
on (release) {
getURL ("http://www.freeworldgroup.com/", "_blank");
}
Symbol 1071 Button
on (release) {
getURL ("http://www.ifungames.com", "_blank");
}
Symbol 1076 Button
on (release) {
getURL ("http://www.freeworldgroup.com/koalafiles.htm", "_blank");
}
Symbol 1082 MovieClip [UI_gameOver] Frame 1
var type;
Symbol 1082 MovieClip [UI_gameOver] Frame 51
stop();
_root.game_over_2();
Instance of Symbol 321 MovieClip in Symbol 1082 MovieClip [UI_gameOver] Frame 51
//component parameters
onClipEvent (construct) {
_game_name = "b29";
score_var = "_root.score";
}
Symbol 1082 MovieClip [UI_gameOver] Frame 59
if (type == "mainMenu") {
_root.game_mainMenu();
} else if (type == "continue") {
_root.game_continue();
}
Symbol 1082 MovieClip [UI_gameOver] Frame 64
stop();
this.removeMovieClip();
Symbol 1099 MovieClip Frame 1
function reduce(rate) {
if (rate < 0) {
rate = 0;
}
bar_mc._width = len * rate;
}
function increase(rate) {
if (rate > 1) {
rate = 1;
}
bar_mc._width = len * rate;
}
var len = bar_mc._width;
Symbol 1102 MovieClip Frame 1
function reduce(rate) {
if (rate < 0) {
rate = 0;
}
bar_mc._width = len * rate;
}
function increase(rate) {
bar_mc._width = _len * rate;
}
function control_start() {
if (bar_mc._width == _len) {
return(undefined);
}
_root.role.setPower(-15);
}
var _len = bar_mc._width;
var len = _len;
timer_start = setInterval(this, "control_start", 1000);
this.onUnload = function () {
clearInterval(timer_start);
};
Symbol 1107 MovieClip Frame 1
function showNum(num) {
trace("lifeNum_mc::" + _root.roleLife);
this._visible = true;
lifeNum_txt.text = num;
}
stop();
Symbol 1107 MovieClip Frame 2
this._visible = true;
Symbol 1112 MovieClip Frame 1
function showNum() {
var _local2 = _root.role.bombNum;
if (_local2 == undefined) {
_local2 = _root.bombNumStart;
}
bombNum_txt.text = _local2;
}
function reSet() {
bombNum_txt.text = _root.bombNumStart;
}
stop();
Symbol 1119 MovieClip Frame 1
stop();
Symbol 1122 MovieClip Frame 1
function showLv(num, weapon) {
trace((("showLv:" + num) + " ") + weapon);
if (num == 0) {
this._visible = false;
return(undefined);
}
this._visible = true;
lv_txt.text = num;
icon_mc.gotoAndStop(weapon);
}
function hideLv() {
this._visible = false;
}
stop();
this._visible = false;
Symbol 1128 MovieClip Frame 1
stop();
Symbol 1130 MovieClip Frame 1
function showLv(num, weapon) {
trace((("showLv:" + num) + " ") + weapon);
if (num == 0) {
this._visible = false;
return(undefined);
}
this._visible = true;
lv_txt.text = num;
icon_mc.gotoAndStop(weapon);
}
function hideLv() {
this._visible = false;
}
stop();
this._visible = false;
Symbol 1136 MovieClip Frame 1
stop();
var bg = _root.stageArray[_root.stageID][0];
var pos;
if ((bg == "ld") || (bg == "ld2")) {
pos = "ld";
} else if ((bg == "sdn") || (bg == "sdn2")) {
pos = "sdn";
} else if ((bg == "los") || (bg == "los2")) {
pos = "los";
} else {
pos = bg;
}
gotoAndStop(pos);
Symbol 1138 Button
on (press) {
play();
}
Symbol 1140 MovieClip Frame 1
stop();
if (_root.getSound(this) == false) {
gotoAndStop (2);
}
Symbol 1140 MovieClip Frame 2
stop();
Symbol 1140 MovieClip Frame 3
gotoAndStop (1);
Symbol 1144 MovieClip Frame 1
stop();
if (_root.getMusic(this) == false) {
gotoAndStop (2);
}
Symbol 1144 MovieClip Frame 2
stop();
Symbol 1144 MovieClip Frame 3
gotoAndStop (1);
Symbol 1153 Button
on (release) {
_root.game_showMenu();
}
Symbol 1155 Button
on (release) {
gotoAndStop (2);
}
Symbol 1160 Button
on (release) {
_parent.game_setQuality(1);
}
Symbol 1163 MovieClip Frame 1
stop();
Symbol 1165 Button
on (release) {
_parent.game_setQuality(2);
}
Symbol 1168 MovieClip Frame 1
stop();
Symbol 1170 Button
on (release) {
_parent.game_setQuality(3);
}
Symbol 1173 MovieClip Frame 1
stop();
Symbol 1175 Button
on (release) {
_parent.game_setQuality(4);
}
Symbol 1177 MovieClip Frame 1
stop();
Symbol 1178 Button
on (release) {
gotoAndStop (1);
}
Symbol 1179 MovieClip Frame 1
function game_setQuality(num) {
game_quality = num;
menu_quality.mc_1.gotoAndStop(1);
menu_quality.mc_2.gotoAndStop(1);
menu_quality.mc_3.gotoAndStop(1);
menu_quality.mc_4.gotoAndStop(1);
menu_quality["mc_" + game_quality].gotoAndStop(2);
if (num == 1) {
_quality = "LOW";
} else if (num == 2) {
_quality = "MEDIUM";
} else if (num == 4) {
_quality = "BEST";
} else {
_quality = "HIGH";
}
gotoAndStop (1);
}
function game_getQuality(obj) {
if (_quality == "LOW") {
game_quality = 1;
} else if (_quality == "MEDIUM") {
game_quality = 2;
} else if (_quality == "BEST") {
game_quality = 4;
} else {
game_quality = 3;
}
obj.mc1.gotoAndStop(1);
obj.mc2.gotoAndStop(1);
obj.mc3.gotoAndStop(1);
obj.mc4.gotoAndStop(1);
obj["mc_" + game_quality].gotoAndStop(2);
menu_quality = obj;
}
stop();
var game_quality;
var menu_quality;
Symbol 1179 MovieClip Frame 2
game_getQuality(this);
Instance of Symbol 1156 MovieClip in Symbol 1179 MovieClip Frame 2
on (release) {
}
Symbol 1182 MovieClip [UI_mc] Frame 1
stop();
stage_txt.text = _root.stageID + 1;
Instance of Symbol 1140 MovieClip "sound_mc" in Symbol 1182 MovieClip [UI_mc] Frame 1
on (release) {
_root.setSound(this);
}
Instance of Symbol 1144 MovieClip in Symbol 1182 MovieClip [UI_mc] Frame 1
on (release) {
_root.setMusic(this);
}
Instance of Symbol 1181 MovieClip in Symbol 1182 MovieClip [UI_mc] Frame 1
onClipEvent (keyDown) {
if (Key.isDown(80)) {
_root.game_showMenu();
}
}
Symbol 1182 MovieClip [UI_mc] Frame 2
stop();
Symbol 1186 Button
on (release) {
type = "return";
play();
}
Symbol 1187 Button
on (release) {
type = "mainMenu";
play();
}
Symbol 1191 Button
on (release) {
type = "retry";
play();
}
Symbol 1192 MovieClip [UI_menu] Frame 9
stop();
Symbol 1192 MovieClip [UI_menu] Frame 10
stop();
if (type == "retry") {
_root.game_restart();
} else if (type == "mainMenu") {
_root.game_mainMenu();
} else {
_root.game_closeMenu();
}
this.removeMovieClip();
Symbol 1192 MovieClip [UI_menu] Frame 23
stop();
this.removeMovieClip();
Symbol 1226 MovieClip Frame 1
function go1() {
if (_root.stageID == 0) {
gotoAndStop ("s1");
} else if (_root.stageID == 1) {
gotoAndStop ("s2");
} else if (_root.stageID == 3) {
gotoAndStop ("s3");
} else if (_root.stageID == 5) {
gotoAndStop ("s4");
} else if (_root.stageID == 7) {
gotoAndStop ("s5");
} else if (_root.stageID == 9) {
gotoAndStop ("s6");
} else if (_root.stageID == 11) {
gotoAndStop ("s7");
} else if (_root.stageID == 12) {
gotoAndStop ("s8");
}
}
function go2() {
play();
}
stop();
Symbol 1226 MovieClip Frame 62
stop();
_parent.go();
Symbol 1226 MovieClip Frame 133
stop();
_parent.go();
Symbol 1226 MovieClip Frame 202
stop();
_parent.go();
Symbol 1226 MovieClip Frame 248
stop();
_parent.go();
Symbol 1226 MovieClip Frame 307
stop();
_parent.go();
Symbol 1226 MovieClip Frame 361
stop();
_parent.go();
Symbol 1226 MovieClip Frame 421
stop();
_parent.go();
Symbol 1226 MovieClip Frame 485
stop();
_parent.go();
Symbol 1231 Button
on (release) {
_parent.map_mc.go2();
}
Symbol 1232 MovieClip Frame 6
stop();
Symbol 1234 Button
on (release) {
play();
}
Symbol 1235 MovieClip [UI_pass] Frame 61
_root.role.passStage();
Symbol 1235 MovieClip [UI_pass] Frame 112
map_mc.go1();
Symbol 1235 MovieClip [UI_pass] Frame 124
function go() {
play();
}
stop();
Symbol 1235 MovieClip [UI_pass] Frame 140
_root.game_passStage_2();
Symbol 1235 MovieClip [UI_pass] Frame 153
stop();
_root.game_passStage_3();
this.removeMovieClip();
Symbol 1236 MovieClip [UI_pass2] Frame 63
stop();
_root.role.inControl = false;
Symbol 1236 MovieClip [UI_pass2] Frame 64
stop();
_root.game_passStage_2_2();
_root.game_passStage_3();
this.removeMovieClip();
Symbol 1236 MovieClip [UI_pass2] Frame 78
stop();
Symbol 1236 MovieClip [UI_pass2] Frame 106
stop();
_root.game_passStage_2_2();
_root.game_passStage_3();
this.removeMovieClip();
Symbol 1264 Button
on (release) {
play();
}
Symbol 1265 MovieClip [UI_warning] Frame 1
this.swapDepths(_parent.getNextHighestDepth());
Symbol 1265 MovieClip [UI_warning] Frame 10
stop();
Symbol 1265 MovieClip [UI_warning] Frame 22
stop();
_root.play();
this.removeMovieClip();
Symbol 1268 Button
on (release) {
_parent.type = "mainMenu";
_parent.play();
}
Symbol 1272 Button
on (release) {
getURL ("http://www.freeworldgroup.com/games6/gameindex/b29-assault.htm", "_blank");
}
Symbol 1273 Button
on (release) {
gotoAndStop ("submit");
}
Symbol 1274 Button
on (release) {
gotoAndStop (1);
}
Symbol 1275 Button
on (release) {
gotoAndStop ("submited");
}
Symbol 1276 MovieClip Frame 1
stop();
_global.game_name = _game_name;
var highscore = eval (score_var);
_global.viewHighscore = function () {
getURL ("http://www.freeworldgroup.com/score/index.asp?game=" + game_name, "_blank");
};
if (highscore == 0) {
this._visible = false;
}
Symbol 1276 MovieClip Frame 3
function sendData() {
send_var.game = game_name;
send_var.score = highscore;
send_var.name = name_txt.text;
if (send_var.name == "") {
send_var.name = "guest" + int(Math.random() * 1000);
}
send_var.sendAndLoad("http://www.freeworldgroup.com/score/score.asp", load_var, "POST");
gotoAndStop ("sending");
}
stop();
gold_txt.text = highscore;
_root.focusManager.setFocus(name_txt);
name_txt.restrict = "^$!<>?#%@~`&*()=^";
send_var = new LoadVars();
load_var = new LoadVars();
ok_btn.onRelease = sendData;
load_var.onLoad = function () {
gotoAndStop ("done");
};
Instance of Symbol 304 MovieClip in Symbol 1276 MovieClip Frame 3
on (release) {
}
Instance of Symbol 265 MovieClip [TextInput] "gold_txt" in Symbol 1276 MovieClip Frame 3
//component parameters
onClipEvent (construct) {
editable = false;
password = false;
text = "";
maxChars = null;
restrict = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 265 MovieClip [TextInput] "name_txt" in Symbol 1276 MovieClip Frame 3
//component parameters
onClipEvent (construct) {
editable = true;
password = false;
text = "";
maxChars = null;
restrict = "";
enabled = true;
visible = true;
minHeight = 0;
minWidth = 0;
}
Instance of Symbol 1276 MovieClip in Symbol 1279 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
_game_name = "b29";
score_var = "_root.score";
}
Symbol 1280 MovieClip [UI_win] Frame 61
_root.role.passStage();
Symbol 1280 MovieClip [UI_win] Frame 112
Symbol 1280 MovieClip [UI_win] Frame 124
stop();
Symbol 1280 MovieClip [UI_win] Frame 140
if (type == "mainMenu") {
_root.game_mainMenu();
} else {
_root.game_PlayAgain();
}
Symbol 1280 MovieClip [UI_win] Frame 153
stop();
_root.game_passStage_3();
this.removeMovieClip();
Symbol 1283 MovieClip [powerUP1] Frame 1
#initclip 303
Object.registerClass("powerUP1", Item);
#endinitclip
weapon_type = "weapon1";
weapon_name = "bullet";
if (times == undefined) {
times = 0;
}
if (times > 3) {
this.removeMovieClip();
}
times++;
Symbol 1283 MovieClip [powerUP1] Frame 60
if (_root.inPause) {
gotoAndPlay ("s1");
}
Symbol 1283 MovieClip [powerUP1] Frame 61
weapon_type = "weapon1";
weapon_name = "bullet2";
Symbol 1283 MovieClip [powerUP1] Frame 120
if (_root.inPause) {
gotoAndPlay ("s2");
}
Symbol 1283 MovieClip [powerUP1] Frame 121
weapon_type = "weapon1";
weapon_name = "laser";
Symbol 1283 MovieClip [powerUP1] Frame 180
if (_root.inPause) {
gotoAndPlay ("s3");
}
Symbol 1286 MovieClip [powerUP2] Frame 1
#initclip 304
Object.registerClass("powerUP2", Item);
#endinitclip
weapon_type = "weapon2";
weapon_name = "missile";
if (times == undefined) {
times = 0;
}
if (times > 3) {
this.removeMovieClip();
}
times++;
Symbol 1286 MovieClip [powerUP2] Frame 60
if (_root.inPause) {
gotoAndPlay ("s1");
}
Symbol 1286 MovieClip [powerUP2] Frame 61
weapon_type = "weapon2";
weapon_name = "lightning";
Symbol 1286 MovieClip [powerUP2] Frame 120
if (_root.inPause) {
gotoAndPlay ("s2");
}
Symbol 1286 MovieClip [powerUP2] Frame 121
weapon_type = "weapon2";
weapon_name = "canon";
Symbol 1286 MovieClip [powerUP2] Frame 180
if (_root.inPause) {
gotoAndPlay ("s3");
}
Symbol 1286 MovieClip [powerUP2] Frame 181
weapon_type = "weapon2";
weapon_name = "deflector";
Symbol 1286 MovieClip [powerUP2] Frame 240
if (_root.inPause) {
gotoAndPlay ("s4");
}
Symbol 1287 MovieClip [bombInc] Frame 1
#initclip 305
Object.registerClass("bombInc", Item_bomb);
#endinitclip
Symbol 1291 MovieClip [LifeInc_ground] Frame 1
#initclip 306
Object.registerClass("LifeInc_ground", Item_life_ground);
#endinitclip
var i = Math.random();
if (i < 0.2) {
gotoAndStop ("p3");
} else if (i < 0.5) {
gotoAndStop ("p2");
} else {
gotoAndStop ("p1");
}
Symbol 1291 MovieClip [LifeInc_ground] Frame 2
life_rate = 0.3;
Symbol 1291 MovieClip [LifeInc_ground] Frame 3
life_rate = 0.6;
Symbol 1291 MovieClip [LifeInc_ground] Frame 4
life_rate = 1;
Symbol 1292 MovieClip [lifeUP1] Frame 1
#initclip 307
Object.registerClass("lifeUP1", Item_life);
#endinitclip
life_rate = 0.2;
Symbol 1298 MovieClip [powerInc] Frame 1
#initclip 308
Object.registerClass("powerInc", Item_power);
#endinitclip
gotoAndStop ("p2");
Symbol 1298 MovieClip [powerInc] Frame 2
power_inc = 150;
Symbol 1298 MovieClip [powerInc] Frame 3
power_inc = 250;
Symbol 1298 MovieClip [powerInc] Frame 4
power_inc = 500;
Symbol 1299 MovieClip [powerInc_ground] Frame 1
#initclip 309
Object.registerClass("powerInc_ground", Item_power_ground);
#endinitclip
var i = Math.random();
if (i < 0.2) {
gotoAndStop ("p3");
} else if (i < 0.5) {
gotoAndStop ("p2");
} else {
gotoAndStop ("p1");
}
Symbol 1299 MovieClip [powerInc_ground] Frame 2
power_inc = 150;
Symbol 1299 MovieClip [powerInc_ground] Frame 3
power_inc = 250;
Symbol 1299 MovieClip [powerInc_ground] Frame 4
power_inc = 500;
Symbol 1317 MovieClip Frame 1
stop();
this._visible = false;
Instance of Symbol 831 MovieClip [shoot_boss2] in Symbol 1317 MovieClip Frame 13
//component parameters
onClipEvent (construct) {
bullet_type = "";
}
Instance of Symbol 848 MovieClip [boss6] in Symbol 1317 MovieClip Frame 14
//component parameters
onClipEvent (construct) {
toPosX = 200;
toPosY = 150;
}
Symbol 1318 Button
on (release) {
getURL ("http://www.freeworldgroup.com/", _blank);
}
Symbol 1330 Button
on (release) {
getURL ("http://www.freeworldgroup.com/", "_blank");
}
Symbol 1400 MovieClip Frame 8
stop();
Symbol 1408 Button
on (release) {
_root.mainPage_mc.nextFrame();
}
Symbol 1439 Button
on (release) {
getURL ("http://www.freeworldgroup.com/koalafiles.htm", "_blank");
}
Symbol 1440 Button
on (release) {
_root.mainPage_mc.gotoAndStop("settings");
}
Symbol 1441 Button
on (release) {
getURL ("http://www.freeworldgroup.com/", "_blank");
}
Symbol 1442 Button
on (release) {
getURL ("http://www.ifungames.com", "_blank");
}
Symbol 1443 Button
on (release) {
getURL ("http://www.freeworldgroup.com/koalafiles.htm", "_blank");
}
Symbol 1444 Button
on (release) {
viewHighscore();
}
Symbol 1445 MovieClip Frame 59
stop();
Symbol 1448 Button
on (release) {
getURL ("http://www.freeworldgroup.com/", "_blank");
}
Symbol 1451 Button
on (release) {
gotoAndStop ("credits");
}
Symbol 1456 Button
on (release) {
getURL ("http://www.freeworldgroup.com/games6/gameindex/b29-assault.htm", "_blank");
}
Symbol 1476 Button
on (release) {
nextFrame();
}
Symbol 1480 Button
on (release) {
gotoAndStop (1);
}
Symbol 1481 Button
on (release) {
nextFrame();
}
Symbol 1487 Button
on (rollOver) {
down();
}
on (rollOut) {
stopScroll();
}
Symbol 1490 Button
on (rollOver) {
up();
}
on (rollOut) {
stopScroll();
}
Symbol 1492 MovieClip Frame 1
this._visible = false;
Symbol 1493 MovieClip Frame 1
function startScroll() {
this.onEnterFrame = function () {
if ((mc._y + mc._height) < pos_d._y) {
delete this.onEnterFrame;
return(undefined);
}
mc._y = mc._y - v;
};
}
function up() {
onEnterFrame = function () {
if ((mc._y + mc._height) < pos_d._y) {
delete this.onEnterFrame;
return(undefined);
}
mc._y = mc._y - v2;
};
}
function down() {
onEnterFrame = function () {
if (mc._y > pos_u._y) {
delete this.onEnterFrame;
return(undefined);
}
mc._y = mc._y + v2;
};
}
function stopScroll() {
startScroll();
}
var v = 0.5;
var v2 = 4;
startScroll();
Symbol 1494 Button
on (release) {
if (demo_mc._currentframe == demo_mc._totalframes) {
nextFrame();
} else {
demo_mc.nextFrame();
}
}
Symbol 1498 Button
on (release) {
nextFrame();
}
Symbol 1502 Button
on (release) {
if (demo_mc._currentframe == 1) {
prevFrame();
} else {
demo_mc.prevFrame();
}
}
Symbol 1503 Button
on (release) {
demo_mc.nextFrame();
}
Symbol 1522 MovieClip Frame 1
function doInit() {
var _local1 = {type:type, dir_angle:dir_angle, V:V, delayTime:delayTime, path:path, life:life, time_shoot:time_shoot, type_shoot:type_shoot, type_bullet:type_bullet, V_bullet:V_bullet};
init(_local1);
}
stop();
doInit();
_life = 20;
life = _life;
Symbol 1522 MovieClip Frame 29
stop();
this.removeMovieClip();
Instance of Symbol 1522 MovieClip in Symbol 1525 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 1200;
}
Instance of Symbol 1522 MovieClip in Symbol 1525 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 1200;
}
Symbol 1528 MovieClip Frame 1
function makeLight2(mc, x1, y1, x2, y2, d, thick, __color) {
mc.lineStyle(thick, 16777215);
mc.moveTo(x1, y1);
var _local4 = x2 - x1;
var _local3 = y2 - y1;
var _local9 = Math.sqrt((_local4 * _local4) + (_local3 * _local3));
var _local5 = Math.round(_local9 / d);
_local4 = _local4 / _local5;
_local3 = _local3 / _local5;
var _local1 = 1;
while (_local1 < _local5) {
mc.lineTo((x1 + (_local4 * _local1)) + ((Math.random() - 0.5) * d), (y1 + (_local3 * _local1)) + ((Math.random() - 0.5) * d));
_local1++;
}
mc.lineTo(x2, y2);
}
function makeLight2_start(posX0, posY0, posX, posY) {
var onwer = this;
_root.soundStart("electric2_snd");
this.onEnterFrame = function () {
this.clear();
onwer.makeLight2(this, posX0, posY0, posX, posY, 15 + random(5), 1, 16777215);
onwer.makeLight2(this, posX0, posY0, posX, posY, 20 + random(5), 2, 6711039);
onwer.makeLight2(this, posX0, posY0, posX, posY, 25 + random(5), 1, 16777215);
};
}
stop();
Instance of Symbol 1522 MovieClip in Symbol 1529 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 1200;
}
Symbol 1529 MovieClip Frame 36
effect_mc.makeLight2_start(60, 221, 60, 39);
Symbol 1538 MovieClip Frame 6
stop();
Symbol 1539 MovieClip Frame 1
stop();
Symbol 1539 MovieClip Frame 9
stop();
this.removeMovieClip();
Instance of Symbol 1522 MovieClip "b" in Symbol 1542 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
type = "normal";
type_shoot = "s_aim_common";
type_bullet = "1";
dir_angle = 90;
V = 4;
V_bullet = 8;
delayTime = 0;
path = 1;
life = 20;
time_shoot = 1200;
}
Symbol 1542 MovieClip Frame 85
b.play();
Symbol 1543 MovieClip Frame 1
stop();
if (_root.keyCode.up != 87) {
gotoAndStop (2);
}
Symbol 1545 MovieClip Frame 2
mc.go1();
mc.go2();
Symbol 1545 MovieClip Frame 45
stop();
_parent.gamePlay();
Symbol 1546 Button
on (release) {
_root.play();
}
Symbol 1549 Button
on (release) {
_root.game_setQuality(1);
}
Symbol 1550 MovieClip Frame 1
stop();
Symbol 1551 Button
on (release) {
_root.game_setQuality(2);
}
Symbol 1552 MovieClip Frame 1
stop();
Symbol 1553 Button
on (release) {
_root.game_setQuality(3);
}
Symbol 1554 MovieClip Frame 1
stop();
Symbol 1555 Button
on (release) {
_root.game_setQuality(4);
}
Symbol 1556 MovieClip Frame 1
stop();
Symbol 1557 MovieClip Frame 1
_root.game_getQuality(this);
Symbol 1562 Button
on (release) {
_parent.setOption();
}
Symbol 1564 MovieClip Frame 1
stop();
Symbol 1565 MovieClip Frame 1
function getOption() {
select1.gotoAndStop("off");
select2.gotoAndStop("off");
if (_root[optionValue]) {
select1.gotoAndStop("on");
}
}
function setOption() {
if (_root[optionValue] == true) {
setOptionOff();
} else {
setOptionOn();
}
}
function setOptionOn() {
select1.gotoAndStop("off");
select2.gotoAndStop("off");
_root[optionValue] = true;
select1.gotoAndStop("on");
}
function setOptionOff() {
if (_root[optionValue] == false) {
return(undefined);
}
select1.gotoAndStop("off");
select2.gotoAndStop("off");
_root[optionValue] = false;
select2.gotoAndStop("on");
}
stop();
var option = _root[optionValue];
getOption();
Symbol 1568 Button
on (release) {
gotoAndStop ("keysetting");
}
Symbol 1574 MovieClip Frame 1
function setKey(key_text) {
key_txt.text = key_text;
}
var owner = this;
key_txt.onSetFocus = function (textfield_txt) {
_parent.text_setFocus(owner);
this.text = "";
};
key_txt.onKillFocus = function (textfield_txt) {
_parent.text_clearFocus();
};
Symbol 1576 MovieClip Frame 1
stop();
this._visible = false;
Symbol 1576 MovieClip Frame 2
this._visible = true;
Symbol 1576 MovieClip Frame 37
gotoAndStop (1);
Symbol 1576 MovieClip Frame 38
this._visible = true;
Symbol 1576 MovieClip Frame 73
gotoAndStop (1);
Symbol 1578 Button
on (release) {
defaultKeys();
}
Symbol 1580 MovieClip Frame 1
function hasEmpty() {
for (var _local3 in this) {
var _local2 = this[_local3];
if (_local2._name.indexOf("_key") != -1) {
trace("obj:::" + _local2._name);
if (_local2.key_txt.text == "") {
return(true);
}
}
}
}
function checkRepeat(txt) {
for (var _local4 in this) {
var _local2 = this[_local4];
if (_local2._name.indexOf("_key") != -1) {
if (_local2.key_txt == txt) {
continue;
}
if (_local2.key_txt.text == txt.text) {
_local2.key_txt.text = "";
alert_mc.gotoAndPlay("repeat");
return(true);
}
}
}
}
function text_setFocus(mc) {
txt_onForcus = mc.key_txt;
mc_onForcus = mc;
}
function text_clearFocus() {
txt_onForcus = null;
mc_onForcus = null;
}
function initKey(KeyData) {
for (var _local7 in KeyData) {
var _local5 = KeyData[_local7][0];
var _local3 = KeyData[_local7][1];
var _local4 = getKeyName(_local3);
if (_local4 != undefined) {
var _local2 = this[_local5 + "_key"];
_local2.setKey(_local4);
_local2.code = _local3;
}
}
}
function getKeyName(key) {
var _local1 = "";
switch (key) {
case 65 :
_local1 = "A";
break;
case 66 :
_local1 = "B";
break;
case 67 :
_local1 = "C";
break;
case 68 :
_local1 = "D";
break;
case 69 :
_local1 = "E";
break;
case 70 :
_local1 = "F";
break;
case 71 :
_local1 = "G";
break;
case 72 :
_local1 = "H";
break;
case 73 :
_local1 = "I";
break;
case 74 :
_local1 = "J";
break;
case 75 :
_local1 = "K";
break;
case 76 :
_local1 = "L";
break;
case 77 :
_local1 = "M";
break;
case 78 :
_local1 = "N";
break;
case 79 :
_local1 = "O";
break;
case 80 :
_local1 = "P";
break;
case 81 :
_local1 = "Q";
break;
case 82 :
_local1 = "R";
break;
case 83 :
_local1 = "S";
break;
case 84 :
_local1 = "T";
break;
case 85 :
_local1 = "U";
break;
case 86 :
_local1 = "V";
break;
case 87 :
_local1 = "W";
break;
case 88 :
_local1 = "X";
break;
case 89 :
_local1 = "Y";
break;
case 90 :
_local1 = "Z";
break;
case 48 :
_local1 = "0";
break;
case 49 :
_local1 = "1";
break;
case 50 :
_local1 = "2";
break;
case 51 :
_local1 = "3";
break;
case 52 :
_local1 = "4";
break;
case 53 :
_local1 = "5";
break;
case 54 :
_local1 = "6";
break;
case 55 :
_local1 = "7";
break;
case 56 :
_local1 = "8";
break;
case 57 :
_local1 = "9";
break;
case 58 :
_local1 = ".";
case 96 :
_local1 = "Num 0";
break;
case 97 :
_local1 = "Num 1";
break;
case 98 :
_local1 = "Num 2";
break;
case 99 :
_local1 = "Num 3";
break;
case 100 :
_local1 = "Num 4";
break;
case 101 :
_local1 = "Num 5";
break;
case 102 :
_local1 = "Num 6";
break;
case 103 :
_local1 = "Num 7";
break;
case 104 :
_local1 = "Num 8";
break;
case 105 :
_local1 = "Num 9";
break;
case 110 :
_local1 = ".";
case 106 :
_local1 = "*";
break;
case 107 :
_local1 = "+";
break;
case 108 :
_local1 = "Enter";
break;
case 109 :
_local1 = "-";
break;
case 110 :
_local1 = ".";
break;
case 111 :
_local1 = "/";
break;
case 144 :
_local1 = "Num Lock";
break;
case 112 :
_local1 = "F1";
break;
case 113 :
_local1 = "F2";
break;
case 114 :
_local1 = "F3";
break;
case 115 :
_local1 = "F4";
break;
case 116 :
_local1 = "F5";
break;
case 117 :
_local1 = "F6";
break;
case 118 :
_local1 = "F7";
break;
case 119 :
_local1 = "F8";
break;
case 120 :
_local1 = "F9";
break;
case 121 :
_local1 = "F10";
break;
case 122 :
_local1 = "F11";
break;
case 123 :
_local1 = "F12";
break;
case 123 :
_local1 = "F12";
break;
case 37 :
_local1 = "Left Arrow";
break;
case 38 :
_local1 = "Up Arrow";
break;
case 39 :
_local1 = "Right Arrow";
break;
case 40 :
_local1 = "Down Arrow";
break;
case 8 :
_local1 = "BackSpace";
break;
case 9 :
_local1 = "Tab";
break;
case 12 :
_local1 = "Clear";
break;
case 13 :
_local1 = "Enter";
break;
case 16 :
_local1 = "Shift";
break;
case 17 :
_local1 = "Ctrl";
break;
case 18 :
_local1 = "Alt";
break;
case 20 :
_local1 = "Cape Lock";
break;
case 27 :
_local1 = "Esc";
break;
case 32 :
_local1 = "Spacebar";
break;
case 33 :
_local1 = "Page Up";
break;
case 34 :
_local1 = "Page Down";
break;
case 35 :
_local1 = "End";
break;
case 36 :
_local1 = "Home";
break;
case 45 :
_local1 = "Insert";
break;
case 46 :
_local1 = "Delete";
}
if (_local1 != "") {
return(_local1);
}
}
var setted_array = new Object();
this.onKeyDown = function () {
txt_onForcus.text = "";
};
this.onKeyUp = function () {
var _local1 = Key.getCode();
var _local2 = getKeyName(_local1);
if (_local2 != undefined) {
txt_onForcus.text = _local2;
if (checkRepeat(txt_onForcus)) {
return(undefined);
}
mc_onForcus.code = _local1;
trace((mc_onForcus + "=====") + _local1);
}
};
Key.addListener(this);
ok_btn.onRelease = function () {
if (hasEmpty()) {
trace("hasEmpty");
alert_mc.gotoAndPlay("hasEmpty");
} else {
gotoAndPlay ("ok");
}
};
var txt_onForcus;
Instance of Symbol 1574 MovieClip "up_key" in Symbol 1580 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
key_name = "up";
}
Instance of Symbol 1574 MovieClip "down_key" in Symbol 1580 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
key_name = "down";
}
Instance of Symbol 1574 MovieClip "left_key" in Symbol 1580 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
key_name = "left";
}
Instance of Symbol 1574 MovieClip "bomb_key" in Symbol 1580 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
key_name = "bomb";
}
Instance of Symbol 1574 MovieClip "right_key" in Symbol 1580 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
key_name = "right";
}
Symbol 1580 MovieClip Frame 2
function defaultKeys() {
_root.defaultKeys();
keyCode = _root.keyCode;
KeyData_array = [["up", keyCode.up], ["down", keyCode.down], ["left", keyCode.left], ["right", keyCode.right], ["bomb", keyCode.bomb]];
initKey(KeyData_array);
_parent.gotoAndStop("settings");
}
stop();
var keyCode = Object();
keyCode = _root.keyCode;
KeyData_array = new Array();
KeyData_array = [["up", keyCode.up], ["down", keyCode.down], ["left", keyCode.left], ["right", keyCode.right], ["bomb", keyCode.bomb]];
initKey(KeyData_array);
Symbol 1580 MovieClip Frame 3
function saveKey() {
_root.keyCode.up = up_key.code;
_root.keyCode.down = down_key.code;
_root.keyCode.left = left_key.code;
_root.keyCode.right = right_key.code;
_root.keyCode.bomb = bomb_key.code;
trace("_root.keyCode.up::" + _root.keyCode.up);
_parent.gotoAndStop("settings");
}
stop();
saveKey();
Symbol 1582 Button
on (release) {
gotoAndStop (1);
}
Symbol 1586 MovieClip Frame 1
function gamePlay() {
_root.play();
}
stop();
Instance of Symbol 283 MovieClip in Symbol 1586 MovieClip Frame 1
on (release) {
getURL ("http://www.freeworldgroup.com/", "_blank");
}
Symbol 1586 MovieClip Frame 2
stop();
Instance of Symbol 1565 MovieClip in Symbol 1586 MovieClip Frame 5
//component parameters
onClipEvent (construct) {
optionValue = "shadowOn";
}