Microsoft’s Font Properties Extension

December 17, 2003 – 12:00 pm

If you work a lot with fonts, you’ll probably be interested in Microsoft’s Font Properties Extension, which will run under Windows 95 or higher (sorry, Mac users).

The extension makes it possible to display information about a font’s origin, copyright, and licensing; its hinting and smoothing; whether or not the font can be embedded in a document; and perhaps most important, the font’s character set.

Microsoft notes that the extension also “includes version and date information” and “describes the font in terms of number of glyphs, number of kerning pairs, the possible existence of a euro symbol, and the presence of embedded bitmaps within the font.”

It’s a useful tool, and best of all, it’s free. You can learn more here:

http://www.microsoft.com/typography/property/property.htm

_________________________________________

READERS WRITE

John Renish wrote to say that the previous newsletter’s macro to fix all caps in text didn’t run. I offer my apologies and the corrected macro:

‘MACRO STARTS HERE

Sub FixAllCapsInText()

‘Macro created 10/26/2003 by Jack M. Lyon

Selection.Find.ClearFormatting

With Selection.Find

.Text = “[A-Z]{2,}”

.Replacement.Text = “”

.Forward = True

.Wrap = wdFindStop

.Format = False

.MatchCase = False

.MatchWholeWord = False

.MatchAllWordForms = False

.MatchSoundsLike = False

.MatchWildcards = True

End With

Selection.Find.Execute

While Selection.Find.Found = True

Selection.Range.Case = wdTitleWord

Select Case Selection.Range

Case “A”, “An”, “As”, “At”, “And”, “But”, _

“By”, “For”, “From”, “In”, “Into”, “Of”, _

“On”, “Or”, “Over”, “The”, “Through”, _

“To”, “Under”, “Unto”, “With”

Selection.Range.Case = wdLowerCase

Case “Usa”, “Nasa”, “Usda”, “Ibm”, “Nato”

Selection.Range.Case = wdUpperCase

End Select

Selection.MoveRight Unit:=wdCharacter, Count:=1

Selection.Find.Execute

Wend

MsgBox “Finished!”, , “Fix All Caps in Text”

End Sub

‘MACRO ENDS HERE

If you don’t know how to use macros like that one, you can learn how here:

http://www.topica.com/lists/editorium/read/message.html?mid=1706922855

For more information, see our previous newsletter:

http://www.topica.com/lists/editorium/read/message.html?mid=1715274489

Thanks, John.

_________________________________________

RESOURCES

Microsoft’s Disagreeably Facetious Type Glossary is hopelessly old-fashioned, unabashedly British, and a delight to read, and it will reveal the meaning of typography terms that you never even knew existed.

http://www.microsoft.com/typography/glossary/content.htm

_____________________________________________________

THE FINE PRINT

Editorium Update (ISSN 1534-1283) is published by:

The EDITORIUM, LLC

Microsoft Word Add-Ins for Publishing Professionals

http://www.editorium.com

Copyright © 2008 by the Editorium. All rights reserved. Editorium Update and Editorium are trademarks of the Editorium.

You may forward copies of Editorium Update to yourself and others (but not charge for it) and print or store it for your own use. Any other broadcast, publication, retransmission, copying, or storage, without written permission from the Editorium, is prohibited. Send reprint requests to reprints [at symbol] editorium.com

Editorium Update is provided for informational purposes only and without a warranty of any kind, either express or implied, including but not limited to implied warranties of merchantability, fitness for a particular purpose, and freedom from infringement. The user assumes the entire risk as to the accuracy and use of this document.

The Editorium is not affiliated with Microsoft Corporation.

_____________________________________________________

HOW TO SUBSCRIBE OR UNSUBSCRIBE

To subscribe, send a blank email message to editorium-subscribe [at symbol] topica.com.

To unsubscribe, send a blank email message to editorium-unsubscribe [at symbol] topica.com.

We do not sell, rent, or give our subscriber list to anyone.

____________________________________________________

You must be logged in to post a comment.