cursor height

P

Pablo Cardellino

Hi,
as we know, the keyboard cursor is a vertical dash that keeps
"twinkleing" (I don't know if this is the correct word in English; I
mean it turns on and off endlessly) and has the same height as the font
we're typing.

Well, sometimes, I don't know why, its height -- just in Word -- becomes
half or even less than the height of the font I'm typing. Right now it
has about 1px more than the height of a dot, being that the font height
is 12 points and the zoom is 180% on a 1280px x 1024 px screen (I don't
know if this details matter)

Does anybody knows why this happens and how to avoid it?

Thanks in advance,
 
J

Jay Freedman

Hi Pablo,

We don't know why it happens, but many of us have seen it from time to time.
Usually it can be fixed by changing the zoom to 500% and back to your
preferred zoom.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
P

Pablo Cardellino

Jay Freedman escribió:
Hi Pablo,

We don't know why it happens, but many of us have seen it from time to time.
Usually it can be fixed by changing the zoom to 500% and back to your
preferred zoom.


Thanks, Jay

at least it's good to know that it's a known problem, not linked to a
template I've installed. Would it be possible to set an application
listener for detecting the "low cursor state", and correcting it, even
if it only was possible by switching the zoom to 500% and back to the
original view, through vba?

Regards,
 
J

Jay Freedman

Pablo said:
Jay Freedman escribió:


Thanks, Jay

at least it's good to know that it's a known problem, not linked to a
template I've installed. Would it be possible to set an application
listener for detecting the "low cursor state", and correcting it, even
if it only was possible by switching the zoom to 500% and back to the
original view, through vba?

Regards,

I don't think VBA has any way of knowing what the cursor's size is -- it
just isn't part of the object model. Even if it did, I'd be very wary of
continuously running an event handler in the background, because it can
seriously degrade performance.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
S

Suzanne S. Barnhill

Switching to 500% Zoom and back usually fixes this at least temporarily.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
 
P

Pablo Cardellino

Jay Freedman escribió:
I don't think VBA has any way of knowing what the cursor's size is -- it
just isn't part of the object model. Even if it did, I'd be very wary of
continuously running an event handler in the background, because it can
seriously degrade performance.
yeah, I guess it can... better just this macro and a shortcut or a button:

Sub restoreCursorHeight()
Dim z As Integer
z = ActiveWindow.ActivePane.View.Zoom.Percentage
ActiveWindow.ActivePane.View.Zoom.Percentage = 500
ActiveWindow.ActivePane.View.Zoom.Percentage = z
End Sub

Thanks, Jay
 

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