
29.06.2004, 13:20
|
|
Регистрация: Feb 2004
Сообщений: 9
|
Может где-то так?.. :)
MovieClip.prototype.toolTip01 = function(m, rgb) {
tipOn = this.hitTest(_root._xmouse, _root._ymouse, true) ? true : false;
format = new TextFormat();
with (format) {
font = "verdana";
size = 9;
color = 0x000000;
}
if (tipOn) {
//if bolean object=true create field.
this.createTextField("tip", 1, 0, 0, 200, 40);
with (this.tip) {
text = m;
_x = this._xmouse - 0;
_y = this._ymouse + 20;
autoSize = "left";
background = true;
border = true;
selectable = false;
//multiline = true;
backgroundColor = "0x" + rgb;
borderColor = 0x000000;
setTextFormat(format);
//type = "dynamic";
wordWrap = true;
}
} else if (!tipOn) {
//if bolean object=false remove field.
this.tip.removeTextField();
}
};
this.onMouseMove = function() {
var test:String = "Тра-та-та и тра-та-та.. Тра-та-та и тра-та.. Тра-та-та и тра.. Тра-та-та и тра-та-та.. ";
test_mc.toolTip01(test, "ffcc33");
};
|