12/06/2010, 00:28
|
| | Fecha de Ingreso: marzo-2010
Mensajes: 25
Antigüedad: 14 años, 8 meses Puntos: 0 | |
Tooltip {problema} Buenas, miren la cosa es que tengo un tooltip pero el texto es muy largo, y quiero que aparezca en vertical... yo le puse "<br>" para que tenga saltos de linea pero no funciono, me sigue apareciendo todo seguido... acá el código.
tooltip.as
Código:
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 = true;
background = true;
backgroundColor = 0xFFFFE1;
html = true;
selectable = false;
}
_root.formato = new TextFormat();
_root.formato.font = "Century Gothic"
_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(0x000000, 50);
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;
}
y en la web el código es este:
Código:
#include "tooltip.as"
init();
boton.onRollOver = function() {
cambia("Título: Carambola<br>Género:Ficción<br><br>Duración: 21<br>Formato: HDV<br>Imagen: Color<br><br>Sinopsis:<br>Carambola (16), Cara de Angel (16) y Colorete (16), sufren la ausencia de contención familiar, la miseria económica y afectiva, encontrando en la calle, cada uno a su modo y sin referentes, la sexualidad, el deseo de pertenencia a un grupo y la violencia como medio para ser el más fuerte y sobrevivir.<br><br>Actores: GOITIA RODRIGO GONZALEZ SERGIO, TORREZ CARLOS<br><br>Director: Alejandro Petrecco<br><br>Festivales:<br>*Festival Latino de Cine en Trieste 2008. Italia<br>* Festival Latino Buenos Aires 2008. Argentina<br>*V Festival Internacional de Cortometrajes de Cusco 2008. Perú<br>*Festival Nacional de Cine de Villa Carlos Paz 2008. Argentina<br>*V Festival Transterritorial de Cine Underground, Argentina, 2008<br>*Festival de Cine Pobre, Gibara Cuba 2009");
};
boton2.onRollOver = function() {
cambia("boton");
};
boton3.onRollOver = function() {
cambia("boton2");
};
boton.onRollOut = boton2.onRollOut = boton3.onRollOut = function() {
para();
};
|