When viewing an action in configuration using ie6 in script debug mode and putting the mouse pointer over the email in operations, an invalid Argument is thrown in showhint.js on the line in red.
Code:
if(parseInt(cursor.x+10+hint_box.offsetWidth) > body_width){
cursor.x-=parseInt(hint_box.offsetWidth);
cursor.x-=10;
cursor.x=(cursor.x < 0)?0:cursor.x;
}
else{
cursor.x+=10;
}
hint_box.style.left = cursor.x + "px";
// hint_box.style.left = hint_box.x + obj.offsetWidth + 10 + "px";
[COLOR="Red"] hint_box.style.top = hint_box.y + obj.offsetHeight + "px";[/COLOR]
}
function create_hint_box()
{
if(hint_box) return;
hint_box = document.createElement("div");
hint_box.setAttribute("id", "hint_box");
document.body.appendChild(hint_box);
hide_hint();
Comment