Posto lo script che uso io (è presente in tutte le pagine del mio sito per anteprima se volete!)
Codice HTML:
<!--
var hellotext=" Benvenuti su :::Miki92::: "
var thetext=""
var started=false
var step=0
var times=1
function welcometext()
{
times--
if (times==0)
{
if (started==false)
{
started = true;
window.status = hellotext;
setTimeout("anim()",1);
}
thetext = hellotext;
}
}
function showstatustext(txt)
{
thetext = txt;
setTimeout("welcometext()",4000)
times++
}
function anim()
{
step++
if (step==7) {step=1}
if (step==1) {window.status='>==='+thetext+'===<'}
if (step==2) {window.status='=>=='+thetext+'==<='}
if (step==3) {window.status='>=>='+thetext+'=<=<'}
if (step==4) {window.status='=>=>'+thetext+'<=<='}
if (step==5) {window.status='==>='+thetext+'=<=='}
if (step==6) {window.status='===>'+thetext+'<==='}
setTimeout("anim()",200);
}
//-->
Ho scoperto un altro problema...se io visualizzo il codice con IE nella mia index (Pagina > HTML) non c'è il codice che richiama questo script, se lo apro dal pannello di controllo del mio sito o da un editor interno a FTP lo vedo!