Código ActionScript :
function checkbotonessub() { valencia.enabled=true; valencia.gotoAndStop(1); madrid.enabled=true; madrid.gotoAndStop(1); barcelona.enabled=true; barcelona.gotoAndStop(1); unloadMovie(_root.secciones.cargasecciones); _root.secciones.gotoAndStop(2); _root.secciones.cargasecciones.loadMovie(_root.seccion); } _root.seccion="fcvalencia.swf"; checkbotonessub(); valencia.gotoAndStop(13); valencia.enabled=false; barcelona.onRollOver=function(){ this.gotoAndPlay(2); } barcelona.onRollOut=function(){ this.gotoAndStop(1); } barcelona.onRelease=function(){ _root.seccion="fcbarcelona.swf"; checkbotonessub(); this.gotoAndStop(13); this.enabled=false; } madrid.onRollOver=function(){ this.gotoAndPlay(2); } madrid.onRollOut=function(){ this.gotoAndStop(1); } madrid.onRelease=function(){ _root.seccion="fcmadrid.swf"; checkbotonessub() this.gotoAndStop(13); this.enabled=false } valencia.onRollOver=function(){ this.gotoAndPlay(2); } valencia.onRollOut=function(){ this.gotoAndStop(1); } valencia.onRelease=function(){ _root.seccion="fcvalencia.swf"; checkbotonessub() this.gotoAndStop(13); this.enabled=false }
Los archivos fcvalencia, fcbarcelona, fcmadrid.swf son unos mapas de establecimientos, dado que hay bastantes les he puesto un tooltip para situarse.
Pero cuando cargo los mapas, aparece el rectángulo del tooltip pero no funciona.
El tooltip tiene este código:
Código ActionScript :
function tooltip (texto){ _root.tooltip_mc.startDrag(true); _root.tooltip_mc._visible = true; _root.tooltip_mc.tex.text = texto; _root.tooltip_mc.tex.autoSize = true; largo = _root.tooltip_mc.tex._width; _root.tooltip_mc.fondo._width = largo+2 } function resettool(){ stopDrag(); _root.tooltip_mc.tex.text = "" _root.tooltip_mc._visible = false; _root.tooltip_mc._x = -300 }
Y luego cada establecimiento (un movieclip) tiene este código:
Código ActionScript :
on(rollOver){ _root.tooltip("Valencia"); } on(rollOut, releaseOutside){ _root.resettool(); }
Sabéis cómo lo puedo solucionar???
Arigatô/Gracias