hola como estas porque no pruebas con algo asi
Código PHP:
Ver originalonClipEvent(load)
{
radio = 70;
posX = 300;
posY = 400;
grados = -100;
vel = 0.08;
nombre = "INICIO";
}onClipEvent(enterFrame)
{
if (_root.boton == 0)
{
x
= Math
.cos(grados
) * radio
; y
= Math
.sin(grados
) * 3 * radio
; this._xscale = x + posX / 3;
this._yscale = x + posY / 3;
this._x = x + posX;
this._x = y + posY;
grados = grados + vel;
}
}
_________________________________________________________________
onClipEvent(load)
{
radio = 70;
posX = 300;
posY = 400;
grados = 200;
vel = 0.08;
nombre = "TUTO5";
}onClipEvent(enterFrame)
{
if (_root.boton == 0)
{
x
= Math
.cos(grados
) * radio
; y
= Math
.sin(grados
) * 3 * radio
; this._xscale = x + posX / 3;
this._yscale = x + posY / 3;
this._x = x + posX;
this._x = y + posY;
grados = grados + vel;
}
}
_____________________________________________________________________
onClipEvent(load)
{
radio = 70;
posX = 300;
posY = 400;
grados = 500;
vel = 0.08;
nombre = "TUTO4";
}onClipEvent(enterFrame)
{
if (_root.boton == 0)
{
x
= Math
.cos(grados
) * radio
; y
= Math
.sin(grados
) * 3 * radio
; this._xscale = x + posX / 3;
this._yscale = x + posY / 3;
this._x = x + posX;
this._x = y + posY;
grados = grados + vel;
}
}
____________________________________________________________________
onClipEvent(load)
{
radio = 70;
posX = 300;
posY = 400;
grados = 800;
vel = 0.08;
nombre = "TUTO3";
}onClipEvent(enterFrame)
{
if (_root.boton == 0)
{
x
= Math
.cos(grados
) * radio
; y
= Math
.sin(grados
) * 3 * radio
; this._xscale = x + posX / 3;
this._yscale = x + posY / 3;
this._x = x + posX;
this._x = y + posY;
grados = grados + vel;
}
}
__________________________________________________________________
textoFinal = texto2;
var caracteres
= textoFinal
.split(""); texto2 = "_";
indice = 0;
delete _root.onEnterFrame;
_root.onEnterFrame = function ()
{
if (indice < caracteres.length)
{
texto2 = texto2.substring(0, texto2.length - 1);
texto2 = texto2 + (caracteres[indice] + "_");
++indice;
return;
}
delete this.onEnterFrame;
texto2 = textoFinal;
}
;
boton = 0;
stop();