qualcuno può aiutarmi
**Errore** Schermo=applicazione, livello=Livello 1, fotogramma=1:Linea 3: È previsto ')'
if((_root.applicazione.1 != undefined) && (_root.applicazione.1 != null))
Totale errori ActionScript: 1 Errori segnalati: 1
ecco il codice
Codice PHP:
on (press) {
// Show Screen behavior
if((_root.applicazione.1 != undefined) && (_root.applicazione.1 != null))
{
var screen = null;
var target = this;
while((screen == null) && (target != undefined) && (target != null))
{
if(target instanceof mx.screens.Screen)
{
screen = target;
}
else
{
target = target._parent;
}
}
_root.applicazione.1.setVisible(true);
if((screen != null) && (_root.applicazione.1 != screen.rootSlide.currentSlide))
{
screen.rootSlide.currentSlide.setVisible(false);
}
}
// End Show Screen behavior
}