Associa questo al movie clip che vuoi rendere visibile/invisibile
onClipEvent(load){
pausa = getTimer()
intervallo = 1000
ì
}
onClipEvent(enterFrame){
if(getTimer()-pausa >= intervallo){
this._visible ? this._visible = 0 : this._visible = 1
pausa = getTimer()
}
}