el header se posiconara en último fotograma.
He puesto en el primer fotograma este código:
function checkSO()
{
// If a shared object called siteSO already exists this will retrieve it otherwise it
// creates a new shared object called siteSO
var SO = SharedObject.getLocal("siteSO");
if(SO.data.visitedAlready)
{
gotoAndPlay("end");
}
else
{
SO.data.visitedAlready = true;
SO.flush();
}
}
// Put that and this in the first keyframe of your movie, before the intro
checkSO();
He creado el últio fotograma la etiqueta "end".
En IExplorer funciona pero en Firefox no.
¿Alguien me puede ayudar?