utilize un juego (lo saque de swf descompiler) al parecer todo bien pero al momento de exportar el swf me aparece este error
"se ha encontrado un else que no coincide con el if"
les explico para mi clase tengo que presentar un juego, y pues con el tiempo que me queda solo pude hacer eso descompilar un juego y cambiar imagenes, pero al momento de realmarlo no funciono
aqui esta la linea de código
if (_root.go == true)
{
if (_root.tipo1 == _root.tipo2)
{
tellTarget(_root.name1)
{
play ();
tellTarget("")
{
tellTarget(_root.name2)
{
play ();
tellTarget("")
{
++_root.parejas;
_root.nsel = 0;
if (_root.parejas == 9)
{
_root.go = false;
_parent.gotoAndStop("FIN");
} // end if
} // End of TellTarget
} // end else if
} // end if
}
else
{
tellTarget(_root.name1)
{
gotoAndStop(1);
tellTarget("")
{
tellTarget(_root.name2)
{
gotoAndStop(1);
tellTarget("")
{
_root.go = false;
play ();
} // End of TellTarget
} // End of TellTarget
} // End of TellTarget
} // End of TellTarget
} // End of TellTarget
} // End of TellTarget
} // End of TellTarget
Por fa necesito ayuda con este asunto