Re: Probably over my head... Trying to get Font Names

2005-02-19 Thread Samantha
Mike I did get the last msg. Still trying to get things under control. S "Mike C. Fletcher" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Samantha wrote: > >>Mike, >>Not sure why that email bounced. >> > That last one bounced too, btw. > >>I downloaded these files: >>WinTTX2.0b

Re: Probably over my head... Trying to get Font Names

2005-02-18 Thread Samantha
Thank you Pierre, that worked. I am still going to try and get the TTFQuery+Fonttools to work just out of curiosity. Thanks again to everyone!!! S "Pierre Quentel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > "Samantha" <[EMAIL PROTECTED]> wrote in message > news:<[EMAIL PROTEC

Re: Probably over my head... Trying to get Font Names

2005-02-18 Thread Samantha
Mike, Strange Hotmail. I'll start over with the installs and you are correct on it being Numpy. I got the wrong file. I'll give it a go and let you know. Thanks S "Mike C. Fletcher" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Samantha wrote: > -- http://mail.python.org/ma

Re: Probably over my head... Trying to get Font Names

2005-02-18 Thread Pierre Quentel
"Samantha" <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > I am attempting to extract the Font Names from the installed windows fonts. > I am having a heck of a time getting these rather than the file names. > Examples can be seen by going to Control Panel > Fonts > > Any help

Re: Probably over my head... Trying to get Font Names

2005-02-18 Thread Mike C. Fletcher
Samantha wrote: Mike, Not sure why that email bounced. That last one bounced too, btw. I downloaded these files: WinTTX2.0b1.exe TTFQuery-1.0.0.win32.exe numarray-1.1.1.win32-py2.4.exe They all seemed to install. Is WinTTX2.0b1.exe not the fontTools file? I believe WinTTX is a font-editing pr

Re: Probably over my head... Trying to get Font Names

2005-02-18 Thread Fredrik Lundh
"Samantha" <[EMAIL PROTECTED]> wrote: >I am attempting to extract the Font Names from the installed windows fonts. I >am having a heck of a >time getting these rather than the file names. Examples can be seen by going >to Control Panel > >Fonts here's one way to do it (using Tkinter): >>> im

Re: Probably over my head... Trying to get Font Names

2005-02-18 Thread Samantha
Mike, Not sure why that email bounced. I downloaded these files: WinTTX2.0b1.exe TTFQuery-1.0.0.win32.exe numarray-1.1.1.win32-py2.4.exe They all seemed to install. Is WinTTX2.0b1.exe not the fontTools file? S "Mike C. Fletcher" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > [Sama

Re: Probably over my head... Trying to get Font Names

2005-02-18 Thread Mike C. Fletcher
[Samantha: your email has been bouncing, might want to clear your inbox] Samantha wrote: Thanks Mike. I must have not installed the ttfquery and font tools correctly. I get an error. This error: ... ImportError: No module named fontTools Like I said I think I am way in over my short head. S

Re: Probably over my head... Trying to get Font Names

2005-02-17 Thread Samantha
Thanks Mike. I must have not installed the ttfquery and font tools correctly. I get an error. This error: Traceback (most recent call last): File "C:\Python24\Lib\font-getter.py", line 1, in -toplevel- from ttfquery import _scriptregistry File "C:\Python24\Lib\site-packages\ttfquery\_scri

Re: Probably over my head... Trying to get Font Names

2005-02-17 Thread Mike C. Fletcher
If you don't have a GUI library to use, TTFQuery+Fonttools will retrieve this information: from ttfquery import _scriptregistry fonts = _scriptregistry.registry.fonts.keys() fonts.sort() for name in fonts: print name if you do have a GUI, your GUI library will almost certainly have a mechanis

Probably over my head... Trying to get Font Names

2005-02-17 Thread Samantha
I am attempting to extract the Font Names from the installed windows fonts. I am having a heck of a time getting these rather than the file names. Examples can be seen by going to Control Panel > Fonts Any help or direction is appreciated. S -- http://mail.python.org/mailman/listinfo/python-