Messages - eleman [ switch to compact view ]

Pages: prev1 ... 74 75 76 77 78 [79] 80 81 82next
391
General Software Discussion / Re: Windows Shortcut Key Article
« on: November 03, 2010, 03:25 AM »
I'm not a programmer.  I wouldn't know where to copy and paste the code(?) that you've posted above even if I did think I needed it.

That is a primitive autohotkey script. That is a comparatively simple and handy scripting language. The quick start tutorial on that page is very informative.

392
General Software Discussion / Re: Windows Shortcut Key Article
« on: November 03, 2010, 02:02 AM »
Apart from FARR, I can recommend you two alternatives for shortcut keys:

My first choice was to create an ad-hoc autohotkey script which contained shortcuts defined to launch whatever I wanted. I would then compile it, and put it into start-up. This is also a relatively easy way of assigning new characters to keys. For instance, here is what I use at the moment:

; Minimize Current Window
#Down::WinMinimize,A

; Force current window to stay on top
#Up::WinSet,AlwaysOnTop,Toggle,A

;mouse wheel function with win-pageup-pagedown
#PgDn::Send {WheelDown}
#PgUp::Send {WheelUp}

;Type NumpadDot types "." I hate Turkish keyboard layout, I despise Turkish regional settings.
;win+NumpadDot types ","
#NumpadDot::,
NumpadDot::SendRaw .

;Send alt-insert when alt-NumpadSub is pressed (for trados and stupid stupid logitech keyboard with no separate insert key)
!NumpadSub::!Insert

;Type accented A and a for Turkish
#+a::Â
#a::â

;Save some energy
+F1::
sleep 750
SendMessage,0x112,0xF170,2,,Program Manager
return

The second option is SecondShell. It's a handy utility to make efficient use of large monitors. When you install it, edit the secondshell.ini to change the custom hotkeys. It lets you assign any application to any win-hotkey.

There are more than one way of doing things, and I love learning others' ways, so thought you might like to hear my way.

393
General Software Discussion / Re: how to make a list of fonts you have
« on: November 02, 2010, 02:46 PM »
eleman, did you still need this utility?  I can make a Coding Snack out of it if so.  I assume you just need a simple text listing like this:

somename.ttf --> Arial
othername.ttf --> Courier New
...

Let me know.  Thanks.

Thanks skwire, that is what I needed. But I took care of it, thanks to the recommendation of lanux128. The Font Thing does the job. You can create font collections in it. And it handily saves the list of fonts in a collection to a text file, with corresponding file names as well.

394
General Software Discussion / Re: how to make a list of fonts you have
« on: September 20, 2010, 01:26 PM »
FontOrg: It is supposed to do the job, but curiously, it wont. Even if I tick the "use internal font names" box.

The Font Thingie: It won't install... Some 16-bit work-system mumbo-jumbo says its installer. I don't have the win95 compatibility mode on my xp installation for some reason, so can't try it.

FontExpert: Highly polished program with some advanced functions. Its html list function can more than do the job. Find duplicate fonts function is also nice. Not free though.

Nexusfont: Nope, it's not created for my intent in mind.

X-Fonter: This one lets you place each font in a collection of your choice, and saves such collections in text files with a curious extension. Just changing the extension to txt gives you a list like this:

hede.ttf|Times New Roman
hodo.ttf|Arial
gak.ttf|Comic Sans MS
guk.ttf|Verdana
...

So it does the job neatly. But $35? I sent the programmers an e-mail offering one-tenth as a donation. I'll see what they'll say.

Thanks again for all your suggestions, I wouldn't be able to find a solution if it weren't for your recommendations.

395
General Software Discussion / Re: how to make a list of fonts you have
« on: September 19, 2010, 08:26 AM »
how about AMP Font Viewer? it claims to be able to show a "list of the fonts from a folder with several display options."

This one shows me a list of fonts, but not the names of the associated font files. Anyway, this is better than nothing. It does not let me export the list to a text file, but I can make faststone capture take a screenshot of the list, and put it through an OCR.

Better than nothing I guess. Thanks a lot.

Anyway, if anyone knows a program that can list fonts alongside the file names, I'd appreciate it as well.

Pages: prev1 ... 74 75 76 77 78 [79] 80 81 82next
Go to full version