scusami mi è saltato uno slash

Codice PHP:
// creo array di comodo per inserire i Title
var commenti:Array = new Array ("","HTML.IT visita il sito","Rempox.it visita il sito","Uscita")

// creo il clip di comodo  e lo sposto fuori dall'area dello stage
this.createEmptyMovieClip("toolTIP",10000)
toolTIP._visible 0
toolTIP
._x = -10000
toolTIP
._y = -10000
// al suo interno ceo un campo di testo dinamico
toolTIP.createTextField("commento",1,0,0,1000,20)
toolTIP.commento.type "dynamic"
toolTIP.commento.selectable=false
toolTIP
.commento.wordWrap false
toolTIP
.commento.multiline false
toolTIP
.commento.embedFonts false
toolTIP
.commento.border=true
toolTIP
.commento.borderColor=0x333
toolTIP
.commento.background true
toolTIP
.commento.backgroundColor 0xFFffcc;

// ipotizzo che ALT/TITLE si debbano prsnar sull'evento RollOVER di 3 clip
// nei quali ho registrato ID che come numero mi corrisponde al commento


// prototipo di comportamento

MovieClip.prototype.gestTIP=function(){
    
this.onRollOver=function(){
        
toolTIP.commento.text commenti[this.ID]
        
toolTIP.commento.autoSize="Left"
        
trace(toolTIP._width " / " toolTIP.commento._width)
        
trace(toolTIP._width " / " toolTIP.commento._width)
        
toolTIP.bg._width toolTIP._width
        toolTIP
.bg._height 20
        
        this
.onMouseMove=function(){
            
toolTIP._x _level0._xmouse+10
            toolTIP
._y _level0._ymouse-10
        
}
        
toolTIP._visible 1
    
}
    
this.onRollOut=function(){
        
toolTIP.commento.text commenti[0]
        
toolTIP._visible 0
    
}
}
BTN1.ID 1
BTN2
.ID 2
BTN3
.ID 3

// assegnazione prototipo
BTN1.gestTIP()
BTN2.gestTIP()
BTN3.gestTIP()