Control of comments location when converted to HTML

  • Thread starter Thread starter cpliu
  • Start date Start date
C

cpliu

I like the feature of saving an Excel to HTML but I fail to figure out a
way to control the location of comments after it's converted to HTML.
Comments becomes a rollover popup text in HTML, but sometimes (usually when
you have a large amount of text), it popups to the bottom of the page that
you cannot see. If you try to get there using the scrollbar, popup text
goes away since you're not on top of it anymore.

Any solution?

Thanks,


cpliu
 
I like the feature of saving an Excel to HTML but I fail to figure out
a way to control the location of comments after it's converted to
HTML. Comments becomes a rollover popup text in HTML, but sometimes
(usually when you have a large amount of text), it popups to the
bottom of the page that you cannot see. If you try to get there using
the scrollbar, popup text goes away since you're not on top of it
anymore.
I found that by changing the Javascript script with a lot ifs on
c.style.left and c.style.top to:

c.style.left = "1";
c.style.top = "1";

then comments popup from top left corner, then the popup with a lot text
would display too. Not the best solution. Maybe there is bug in that if
statement that text just don't popup at the right location.
 
Back
Top