Control of comments location when converted to HTML

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
 
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.
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top