Instance of Symbol 56 MovieClip in Frame 1
//component parameters
onClipEvent (initialize) {
xin_motion_val = "None";
xin_alphatype_val = "Yes";
xout_motion_val = "None";
xout_alphatype_val = "Yes";
perc_req_val = 100;
show_perc_val = "Yes";
slow_factor_val = 1;
init_action_val = "_root.stop();";
play_action_val = "_root.play();";
}
Frame 2
items = 5;
level = 0;
figuras = "diamantes";
columnas = 8;
filas = 13;
etapes = 4;
bloquenum = 3;
combinacion = 3;
iniRandom = 0;
diagonales = 1;
stop();
Frame 3
function Iniciar() {
BloqueSuivant();
nouveaubloque();
chute = setInterval(chuter, (1000 - (level * 100)) / etapes);
bloque.onKeyDown = Control;
mensaje.gotoAndStop(2);
clearInterval(inicio);
t1 = getTimer();
tiempo = setInterval(Time, 100);
}
function Time() {
t2 = getTimer();
if ((t2 - t1) > 40000) {
level++;
if (level > 9) {
level = 1;
items = 6;
}
t1 = t2;
}
}
function BloqueSuivant() {
var _local2 = _root;
_local2.double = 0;
var _local1 = 0;
while (_local1 < bloquenum) {
_local2.next.items[_local1] = random(items);
_local2.next["diamante" + _local1].gotoAndStop(_local2.next.items[_local1] + 2);
_local1++;
}
}
function nouveaubloque() {
var _local2 = _root;
var _local1 = 0;
while (_local1 < bloquenum) {
_local2.bloque["diamante" + _local1].gotoAndStop(_local2.next.items[_local1] + 2);
_local2.bloque.items[_local1] = _local2.next.items[_local1];
_local1++;
}
if (_local2.iniRandom) {
_local2.bloque.x = random(columnas);
} else {
_local2.bloque.x = Math.floor(columnas / 2);
}
_local2.bloque._x = (_local2.bloque.x * 32) + 32;
_local2.bloque._y = (_local2.bloque.y = 0);
}
function Permutar() {
var _local2 = _root;
sonido.start();
_local2.bloque.items.splice(0, 0, _local2.bloque.items.pop());
var _local1 = 0;
while (_local1 < bloquenum) {
_local2.bloque["diamante" + _local1].gotoAndStop(_local2.bloque.items[_local1] + 2);
_local1++;
}
}
function chuter() {
var _local2 = _root;
sonido.attachSound("cycle");
if (!Key.isDown(40)) {
clearInterval(chute);
chute = setInterval(chuter, (1000 - (level * 100)) / etapes);
}
bloque._y = bloque._y + (32 / etapes);
bloque.y = Math.floor(bloque._y / 32);
if (bloque._y == 80) {
BloqueSuivant();
}
if ((bloque.y >= filas) || (Grid[bloque.y][bloque.x][0] > 0)) {
if (bloque.y < bloquenum) {
GameOver();
clearInterval(chute);
_local2.bloque.onKeyDown = null;
return(undefined);
}
var _local1 = 0;
while (_local1 < bloquenum) {
_local2.cuadricula[(("x" + bloque.x) + "y") + ((bloque.y + _local1) - bloquenum)].gotoAndStop(_local2.bloque.items[_local1] + 2);
_local2.Grid[(bloque.y + _local1) - bloquenum][bloque.x][0] = _local2.bloque.items[_local1] + 1;
_local2.Open.push([bloque.x, (bloque.y + _local1) - bloquenum]);
_local1++;
}
clearInterval(chute);
_local2.bloque.onKeyDown = null;
_local2.bloque._y = (_local2.bloque.y = 0);
_local2.bloque.x = Math.floor(columnas / 2);
_local2.bloque._x = _local2.bloque.x * 32;
controlDelay = setInterval(Comprobar, 1, Open);
}
return(undefined);
}
function Control() {
var _local1 = this;
if (Key.isDown(37)) {
if (_local1.x > 0) {
if (!Grid[_local1.y][_local1.x - 1][0]) {
_local1.x--;
}
}
} else if (Key.isDown(39)) {
if (_local1.x < (columnas - 1)) {
if (!Grid[_local1.y][_local1.x + 1][0]) {
_local1.x++;
}
}
}
bloque._x = (bloque.x * 32) + 32;
if (Key.isDown(40)) {
if (!pressed) {
clearInterval(chute);
chute = setInterval(chuter, 10 / etapes);
}
}
if (Key.isDown(38) || (Key.isDown(17))) {
if (!pressed) {
Permutar();
}
}
if (Key.isDown(32)) {
pause = !pause;
if (pause) {
clearInterval(chute);
mensaje.gotoAndStop(3);
cuadricula._visible = 0;
bloque._visible = 0;
} else {
chute = setInterval(chuter, (1000 - (level * 100)) / etapes);
mensaje.gotoAndStop(2);
cuadricula._visible = 1;
bloque._visible = 1;
}
}
pressed = true;
}
function Comprobar(Open) {
var _local2 = Open;
var _local3 = _root;
clearInterval(controlDelay);
var _local1 = 0;
while (_local1 < _local2.length) {
x = _local2[_local1][0];
y = _local2[_local1][1];
c = Grid[y][x][0];
checkDir(x, y, 1, 0, c);
checkDir(x, y, 0, 1, c);
if (_local3.diagonales) {
checkDir(x, y, 1, 1, c);
checkDir(x, y, 1, -1, c);
}
_local1++;
}
_local2.length = 0;
if (Close) {
_local3.Eliminar();
} else {
sonido.attachSound("cycle");
_local3.nouveaubloque();
chute = setInterval(chuter, (1000 - (level * 100)) / etapes);
_local3.bloque.onKeyDown = Control;
}
}
function checkDir(x, y, dx, dy, c) {
var _local2 = y;
var _local3 = x;
temp.push([_local3, _local2]);
ix = dx;
iy = dy;
while (Grid[_local2 + iy][_local3 + ix][0] == c) {
temp.push([_local3 + ix, _local2 + iy]);
ix = ix + dx;
iy = iy + dy;
}
ix = -dx;
iy = -dy;
while (Grid[_local2 + iy][_local3 + ix][0] == c) {
temp.push([_local3 + ix, _local2 + iy]);
ix = ix - dx;
iy = iy - dy;
}
if (temp.length >= combinacion) {
var _local1 = 0;
while (_local1 < temp.length) {
Close = 1;
if (!Grid[temp[_local1][1]][temp[_local1][0]][1]) {
Grid[temp[_local1][1]][temp[_local1][0]][1] = 1;
bloques++;
}
score = score + 100;
_local1++;
}
}
tombe.gotoandplay(2);
temp.length = 0;
}
function Eliminar() {
var _local2 = _root;
var _local1 = 0;
while (_local1 < columnas) {
iy = -1;
del = 0;
while (Grid[filas + iy][_local1][0] > 0) {
if (Grid[filas + iy][_local1][1]) {
_local2.cuadricula[(("x" + _local1) + "y") + (filas + iy)].gotoAndPlay(_currentframe + 10);
del++;
} else if (del) {
Grid[filas + iy][_local1][1] = -del;
}
iy--;
}
_local1++;
}
delay = setInterval(Bajar, 500);
Close = 0;
double++;
combo.gotoandstop(double);
sonido.attachSound("ring");
sonido.start();
}
function Bajar() {
var _local2 = _root;
clearInterval(delay);
var _local1 = 0;
while (_local1 < columnas) {
iy = -1;
while (Grid[filas + iy][_local1][0] > 0) {
if (Grid[filas + iy][_local1][1] > 0) {
Grid[filas + iy][_local1][0] = 0;
Grid[filas + iy][_local1][1] = 0;
} else if ((del = -Grid[filas + iy][_local1][1])) {
_local2.cuadricula[(("x" + _local1) + "y") + ((filas + iy) + del)].gotoAndStop(Grid[filas + iy][_local1][0] + 1);
_local2.cuadricula[(("x" + _local1) + "y") + (filas + iy)].gotoAndStop(1);
Grid[(filas + iy) + del][_local1][0] = Grid[filas + iy][_local1][0];
Grid[filas + iy][_local1][0] = 0;
Grid[filas + iy][_local1][1] = 0;
Open.push([_local1, (filas + iy) + del]);
}
iy--;
}
_local1++;
}
if (Open.length > 0) {
controlDelay = setInterval(Comprobar, 500, Open);
} else {
sonido.attachSound("cycle");
_local2.nouveaubloque();
chute = setInterval(chuter, (1000 - (level * 100)) / etapes);
_local2.bloque.onKeyDown = Control;
}
}
function GameOver() {
gotoAndStop (4);
cuadricula._visible = 0;
bloque._visible = 0;
}
function MainMenu() {
clearInterval(over);
gotoAndStop (2);
}
Grid = [];
var i = 0;
while (i < filas) {
Grid[i] = [];
var j = 0;
while (j < columnas) {
t = cuadricula.attachMovie("diamante", (("x" + j) + "y") + i, d++);
t._x = j * 32;
t._y = i * 32;
Grid[i][j] = [0, 0];
j++;
}
i++;
}
_root.next.items = [];
_root.bloque.items = [];
var i = 0;
while (i < bloquenum) {
n = _root.next.attachMovie("diamante", "diamante" + i, d++);
n._y = 32 * (i - bloquenum);
b = _root.bloque.attachMovie("diamante", "diamante" + i, d++);
b._y = 32 * (i - bloquenum);
i++;
}
score = 0;
bloques = 0;
_root.jackpot = 30000;
colores = ["rojo", "verde", "azul", "amarillo", "naranja", "lila"];
sonido = new Sound();
inicio = setInterval(Iniciar, 1000);
Key.addListener(bloque);
bloque.onKeyUp = function () {
pressed = false;
};
Open = [];
temp = [];
stop();
Instance of Symbol 122 MovieClip in Frame 3
onClipEvent (load) {
_root.soundstatus = "off";
_root.mySound = new Sound();
_root.MySound.loadSound("music/music.zik", false);
_root.Mysound.start(0, 999);
maxvolume = 100;
minvolume = 0;
}
onClipEvent (enterFrame) {
if (_root.soundstatus == "on") {
step = 2;
}
if (_root.soundstatus == "off") {
step = -2;
}
maxvolume = maxvolume + step;
if (maxvolume > 100) {
maxvolume = 100;
}
if (maxvolume < 0) {
maxvolume = 0;
}
_root.mySound.setVolume(maxvolume);
}
Frame 4
stop();
Symbol 15 MovieClip Frame 1
stop();
Symbol 16 MovieClip [ScoreTile] Frame 1
score._visible = false;
setLoc(_parent._x + (_col * 40), ((_parent._y + (_global.logic.NUM_ROWS * 40)) - 40) - (40 * _row));
stop();
Symbol 31 MovieClip Frame 44
stop();
Symbol 32 MovieClip Frame 1
i = 0;
while (i < 5) {
duplicateMovieClip ("isk1", "isk" add i, i);
isk1._rotation = random(360);
scalefactor = 50 + Number(random(30));
isk1._xscale = scalefactor;
isk1._yscale = scalefactor;
tellTarget ("isk" add i) {
gotoAndPlay(random(5));
};
i++;
}
Symbol 33 MovieClip [diamante] Frame 1
stop();
Symbol 33 MovieClip [diamante] Frame 2
checkcolor = 1;
Symbol 33 MovieClip [diamante] Frame 3
checkcolor = 2;
Symbol 33 MovieClip [diamante] Frame 4
checkcolor = 3;
Symbol 33 MovieClip [diamante] Frame 5
checkcolor = 4;
Symbol 33 MovieClip [diamante] Frame 6
checkcolor = 5;
Symbol 33 MovieClip [diamante] Frame 7
checkcolor = 6;
Instance of Symbol 32 MovieClip in Symbol 33 MovieClip [diamante] Frame 30
onClipEvent (enterFrame) {
if (_parent.checkcolor == 1) {
my_color = new Color(this);
myColorTransform = new Object();
myColoron = {ra:"100", rb:"100", ga:"100", gb:"-250", ba:"100", bb:"-250", aa:"100", ab:"100"};
my_color.setTransform(myColoron);
}
if (_parent.checkcolor == 2) {
my_color = new Color(this);
myColorTransform = new Object();
myColoron = {ra:"100", rb:"-250", ga:"100", gb:"100", ba:"100", bb:"-250", aa:"100", ab:"100"};
my_color.setTransform(myColoron);
}
if (_parent.checkcolor == 3) {
my_color = new Color(this);
myColorTransform = new Object();
myColoron = {ra:"100", rb:"-250", ga:"100", gb:"-250", ba:"100", bb:"100", aa:"100", ab:"100"};
my_color.setTransform(myColoron);
}
if (_parent.checkcolor == 4) {
my_color = new Color(this);
myColorTransform = new Object();
myColoron = {ra:"100", rb:"100", ga:"100", gb:"100", ba:"100", bb:"-255", aa:"100", ab:"100"};
my_color.setTransform(myColoron);
}
if (_parent.checkcolor == 5) {
my_color = new Color(this);
myColorTransform = new Object();
myColoron = {ra:"100", rb:"100", ga:"100", gb:"-100", ba:"100", bb:"-250", aa:"100", ab:"100"};
my_color.setTransform(myColoron);
}
if (_parent.checkcolor == 6) {
my_color = new Color(this);
myColorTransform = new Object();
myColoron = {ra:"100", rb:"100", ga:"100", gb:"-250", ba:"100", bb:"100", aa:"100", ab:"100"};
my_color.setTransform(myColoron);
}
}
Symbol 56 MovieClip Frame 1
stop();
Instance of Symbol 55 MovieClip "swfloader" in Symbol 56 MovieClip Frame 1
onClipEvent (load) {
function strip_spaces(str) {
var _local2 = str;
var _local3 = new String("");
var _local1 = 0;
while (_local1 < _local2.length) {
if ((_local2.charAt(_local1) != " ") && (_local2.charAt(_local1) != ";")) {
_local3 = _local3 + _local2.charAt(_local1);
}
_local1++;
}
return(_local3);
}
function simple_script(action, timeline) {
action = strip_spaces(action);
if ((action.length > 0) && ((action.indexOf(")") != -1) && (action.indexOf("(") != -1))) {
var _local3 = action.split(".");
var timeline_action = _local3.pop();
var first_paren = timeline_action.indexOf("(");
var second_paren = timeline_action.indexOf(")");
var timeline_function = timeline_action.substr(0, first_paren);
var function_parameter = timeline_action.substr(first_paren + 1, second_paren - (first_paren + 1));
var _local2 = timeline;
var _local1 = 0;
while (_local1 < _local3.length) {
_local2 = _local2[_local3[_local1]];
_local1++;
}
if (function_parameter.indexOf("\"") != -1) {
function_parameter = function_parameter.substr(1, function_parameter.length - 2);
}
_local2[timeline_function](function_parameter);
}
}
function execute_action() {
var _local1 = _parent;
unloaded = true;
_local1._visible = false;
simple_script(_local1.play_action_val, _local1);
}
_parent.anim.gotoAndStop(1);
simple_script(_parent.init_action_val, _parent);
var done = false;
var unloaded = false;
var orig_x = _parent._x;
var orig_y = _parent._y;
var dist_x = (_parent._x + ((_parent._width * 2) / 3));
var dist_y = (_parent._y + ((_parent._height * 2) / 3));
var orig_a = _parent._alpha;
var accel_jump = 0.75;
var slow_factor = _parent.slow_factor_val;
var speed_factor = (1 + (slow_factor / (1 - slow_factor)));
var ready = false;
var perc_fadeout = 0;
_parent.perc._x = _parent.anim._x - (_parent.perc._width / 2);
_parent.perc._y = _parent.anim._y - (_parent.perc._height / 2);
if (slow_factor < 1) {
switch (_parent.xin_motion_val) {
case "Up" :
_parent._y = orig_y + (dist_y * 2);
break;
case "Down" :
_parent._y = orig_y - (dist_y * 2);
break;
case "Left" :
_parent._x = orig_x + (dist_x * 2);
break;
case "Right" :
_parent._x = orig_x - (dist_x * 2);
break;
case "Toward" :
_parent._xscale = (_parent._yscale = 1);
break;
case "None" :
_parent._alpha = 0;
}
} else {
ready = true;
}
}
onClipEvent (enterFrame) {
if (unloaded) {
return(undefined);
}
if (!ready) {
switch (_parent.xin_motion_val) {
case "Toward" :
_parent._xscale = _parent._xscale + ((100 - _parent._xscale) * slow_factor);
_parent._yscale = _parent._xscale;
if (_parent.xin_alphatype_val == "Yes") {
_parent._alpha = Math.round((orig_a / 100) * Math.max(0, Math.min(_parent._xscale, 100)));
}
if (Math.abs(100 - _parent._xscale) < 0.5) {
_parent._xscale = (_parent._yscale = 100);
_parent._alpha = orig_a;
ready = true;
}
break;
default :
_parent._x = _parent._x + ((orig_x - _parent._x) * slow_factor);
_parent._y = _parent._y + ((orig_y - _parent._y) * slow_factor);
if (_parent.xin_alphatype_val == "Yes") {
if (_parent.xin_motion_val == "None") {
_parent._alpha = _parent._alpha + ((orig_a - _parent._alpha) * slow_factor);
} else if (Math.abs(orig_x - _parent._x) > Math.abs(orig_y - _parent._y)) {
_parent._alpha = 100 - Math.round(((orig_a / 100) * (Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x)) * 100);
} else {
_parent._alpha = 100 - Math.round(((orig_a / 100) * (Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y)) * 100);
}
}
if (!(((_parent.xin_motion_val == "None") && (Math.abs(_parent._alpha - orig_a) <= 1)) || (((_parent.xin_motion_val != "None") && (Math.abs(_parent._y - orig_y) < 0.5)) && (Math.abs(_parent._x - orig_x) < 0.5)))) {
break;
}
_parent._x = orig_x;
_parent._y = orig_y;
_parent._alpha = orig_a;
ready = true;
}
} else if (!done) {
var rl = _root.getBytesLoaded();
var rt = (_root.getBytesTotal() * (_parent.perc_req_val / 100));
if ((rl > 10) && (rt > 10)) {
rl = Math.min(rl, rt);
var new_frame = (_parent.anim._currentframe + Math.ceil(((_parent.anim._totalframes * (rl / rt)) - _parent.anim._currentframe) / 4));
new_frame = Math.max(1, new_frame);
if (_parent.show_perc_val == "Yes") {
_parent.perc.text = Math.round(((new_frame - 1) / (_parent.anim._totalframes - 1)) * 100) + " %";
}
if (new_frame != _parent.anim._currentframe) {
_parent.anim.gotoAndStop(new_frame);
}
if ((_parent.anim._totalframes == _parent.anim._currentframe) && (rl >= rt)) {
done = true;
}
}
} else if (slow_factor < 1) {
switch (_parent.xout_motion_val) {
case "Down" :
if (_parent._y <= orig_y) {
_parent._y = orig_y + accel_jump;
}
_parent._y = orig_y + (Math.abs(_parent._y - orig_y) * speed_factor);
perc_fadeout = Math.round((Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y) * 100);
if (_parent._y > (orig_y + (dist_y * 2))) {
execute_action();
}
break;
case "Up" :
if (_parent._y >= orig_y) {
_parent._y = orig_y - accel_jump;
}
_parent._y = orig_y - (Math.abs(_parent._y - orig_y) * speed_factor);
perc_fadeout = Math.round((Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y) * 100);
if (_parent._y < (orig_y - (dist_y * 2))) {
execute_action();
}
break;
case "Right" :
if (_parent._x <= orig_x) {
_parent._x = orig_x + accel_jump;
}
_parent._x = orig_x + (Math.abs(_parent._x - orig_x) * speed_factor);
perc_fadeout = Math.round((Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x) * 100);
if (_parent._x > (orig_x + (dist_x * 2))) {
execute_action();
}
break;
case "Left" :
if (_parent._x >= orig_x) {
_parent._x = orig_x - accel_jump;
}
_parent._x = orig_x - (Math.abs(_parent._x - orig_x) * speed_factor);
perc_fadeout = Math.round((Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x) * 100);
if (_parent._x < (orig_x - (dist_x * 2))) {
execute_action();
}
break;
case "Away" :
if ((_parent._xscale >= 100) || (_parent._yscale >= 100)) {
_parent._xscale = (_parent._yscale = 100 - accel_jump);
}
_parent._xscale = (_parent._yscale = Math.max(0.5, 100 - ((100 - _parent._yscale) * speed_factor)));
perc_fadeout = 100 - Math.round(Math.max(0, Math.min(_parent._xscale, 100)));
if (_parent._xscale < 1) {
execute_action();
}
break;
default :
perc_fadeout = perc_fadeout + ((100 - perc_fadeout) * slow_factor);
if (Math.abs(perc_fadeout - 100) > 1) {
break;
}
execute_action();
}
if (!(_parent.xout_alphatype_val === "Yes")) {
} else {
_parent._alpha = (orig_a / 100) * (100 - perc_fadeout);
}
} else {
execute_action();
}
}
Symbol 63 MovieClip Frame 278
stop();
Symbol 68 Button
on (release) {
_root.fond.gotoandplay("off");
gotoAndStop (3);
}
on (rollOver) {
_root.menu.blur.gotoandplay("on");
_root.menu.blur.mask.gotoandstop("start");
}
on (rollOut) {
_root.menu.blur.gotoandplay("off");
}
Symbol 70 MovieClip Frame 20
stop();
Symbol 73 MovieClip Frame 30
stop();
Symbol 75 MovieClip Frame 30
stop();
Symbol 76 MovieClip Frame 1
stop();
Symbol 76 MovieClip Frame 2
stop();
Symbol 76 MovieClip Frame 3
stop();
Symbol 77 Button
on (release) {
_root.fond.gotoandplay("off");
instruction.gotoandstop(2);
}
on (rollOver) {
_root.menu.blur.gotoandplay("on");
_root.menu.blur.mask.gotoandstop("start");
}
on (rollOut) {
_root.menu.blur.gotoandplay("off");
}
Symbol 78 Button
on (release) {
_root.fond.gotoandplay("off");
}
on (rollOver) {
_root.menu.blur.gotoandplay("on");
_root.menu.blur.mask.gotoandstop("start");
demo.gotoAndplay(2);
}
on (rollOut) {
_root.menu.blur.gotoandplay("off");
demo.gotoAndStop(1);
}
Symbol 79 Button
on (release) {
_root.fond.gotoandplay("off");
instruction.gotoandstop(3);
}
on (rollOver) {
_root.menu.blur.gotoandplay("on");
_root.menu.blur.mask.gotoandstop("start");
}
on (rollOut) {
_root.menu.blur.gotoandplay("off");
}
Symbol 80 Button
on (release) {
_root.fond.gotoandplay("off");
getURL ("http://nowe.reginald.free.fr", "_blank");
}
on (rollOver) {
_root.menu.blur.gotoandplay("on");
_root.menu.blur.mask.gotoandstop("start");
}
on (rollOut) {
_root.menu.blur.gotoandplay("off");
}
Symbol 84 MovieClip Frame 1
stop();
Symbol 84 MovieClip Frame 30
stop();
Symbol 100 MovieClip Frame 135
stop();
Symbol 108 MovieClip Frame 191
stop();
Symbol 111 MovieClip Frame 1
stop();
Symbol 111 MovieClip Frame 2
_root.score = _root.score + 1000;
_root.jackpot = _root.jackpot + 1000;
stop();
Symbol 111 MovieClip Frame 3
_root.score = _root.score + 2000;
_root.jackpot = _root.jackpot + 2000;
stop();
Symbol 111 MovieClip Frame 4
_root.score = _root.score + 5000;
_root.jackpot = _root.jackpot + 5000;
stop();
Symbol 111 MovieClip Frame 5
_root.score = _root.score + 10000;
_root.jackpot = _root.jackpot + 10000;
stop();
Symbol 111 MovieClip Frame 6
jackpot = _root.jackpot;
_root.score = _root.score + jackpot;
_root.jackpot = 30000;
Symbol 115 MovieClip Frame 111
stop();
Symbol 119 MovieClip Frame 1
stop();
Symbol 123 Button
on (release) {
gotoAndPlay (2);
}
on (release) {
_root.soundstatus = "off";
}
on (release) {
_root.d01.gotoAndStop(1);
_root.d02.gotoAndStop(1);
}
Symbol 125 Button
on (release) {
gotoAndPlay (2);
}
on (release) {
_root.soundstatus = "on";
}
on (release) {
_root.d01.gotoAndStop(1);
_root.d02.gotoAndStop(1);
}
Symbol 127 MovieClip Frame 1
stop();
Symbol 127 MovieClip Frame 2
stop();
Symbol 129 MovieClip Frame 1
stop();
Symbol 137 Button
on (release) {
getURL ("http://nowe.reginald.free.fr", "_blank");
}
Symbol 138 MovieClip Frame 1
Symbol 138 MovieClip Frame 60
stop();
stop();
name_txt.restrict = "A-Z 0-9.\\-";
Selection.setFocus(name_txt);
Selection.setSelection(name_txt.length, name_txt.length);
ok_btn.onRelease = function () {
if (name_txt.length > 0) {
_root.nom = name_txt.text;
}
_root.gotoandplay(1);
};
ok_btn.onKeyDown = function () {
if (Key.getCode() == 13) {
Key.removeListener(ok_btn);
this.onRelease();
}
};
Key.addListener(ok_btn);