Hola Kyke_89:
Te pego el código:
Código actionscript:
Ver originalif (_root.Inserta)
{
_root.Inserta._visible = true;
}
else
{
_root.attachMovie("Inserta", "Inserta", this.getNextHighestDepth());
}
En mi opinión sería recomendable que no utilices la instrucción _root, debido a que trae mucho problemas. Para evitarlo puedes usar this, o this._parent o this._parent._parent, etc.
Si el codigo que pegaste tu va en el _root, en ese caso no sería necesario utilizarlo y quedaría así:
Código actionscript:
Ver originalif (Inserta)
{
Inserta._visible = true;
}
else
{
attachMovie("Inserta", "Inserta", this.getNextHighestDepth());
}
Espero que te sea útil, saludos.