Veo esto:
Código:
pero es para cambiar el color del fondo del tooltip y acá:backgroundColor = 0xE1E1E1;
Código:
es para cambiar el color de la sombra, yo le he puesto visibilidad 0 porque no quiero que tenga sombra pero ¿dónde cambio el color del texto? No lo veo por ningún lado. Acá anoto el código completo.beginFill(0xFFFFFF, 0);
Código:
Muchas gracias function init() { _root.c = _root.getNextHighestDepth(); _root.createEmptyMovieClip("tooltip", _root.c); _root.tooltip.createTextField("alt", _root.c+2, 0, 0, 10, 10); with (_root.tooltip.alt) { autoSize = true; border = false; background = true; backgroundColor = 0xE1E1E1; html = true; selectable = false; } _root.formato = new TextFormat(); _root.formato.font = "tahoma"; _root.formato.size = "11"; _root.tooltip.createEmptyMovieClip("sombra", _root.c+1); _root.tooltip._visible = false; } function cambia(texto) { _root.tooltip._x = _xmouse+8; _root.tooltip._y = _ymouse-18; _root.tooltip.onEnterFrame = function() { _root.tooltip._x = _xmouse+8; _root.tooltip._y = _ymouse-18; }; _root.tooltip.alt.text = texto; _root.tooltip.alt.setTextFormat(_root.formato); _root.tooltip._visible = true; with (_root.tooltip.sombra) { clear(); ancho = _root.tooltip.alt._width; alto = _root.tooltip.alt._height; beginFill(0xFFFFFF, 0); moveTo(0, 0); lineTo(ancho, 0); lineTo(ancho, alto); lineTo(0, alto); lineTo(0, 0); endFill(); _x = 3; _y = 3; } } function para() { delete _root.tooltip.onEnterFrame; _root.tooltip._visible = false;}