I know this may sound strange, but I'm getting older, and DEPENDING on circumstances, SOMETIMES I need to increase the font (e.g. when I'm tired, I need a larger font; unlike in the middle of the day). Is there anyway to create an alternate configuration and specify it on startup (e.g. one shortcut starts in 12 pitch, and another in 15 pitch)?
ADDED: I have version 5.3.1
Font
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
- Bob Hansen
- Posts: 1516
- Joined: Sun Mar 02, 2003 8:15 pm
- Location: Salem, NH
- Contact:
No way to do that without a third party program like Macro Scheduler ( http://www.mjtnet.com/macro_scheduler_pro.htm ). The MS script would open TextPad, check the time, and change the font according to your instructions, then would stop and you would be in TextPad as normal.
But just using TextPad, you could make two TextPad macros to change to 12/15 point and assign them to the Macro drop down list, or assign hot keys to them. that way you could change fonts on demand with a simple click.
But just using TextPad, you could make two TextPad macros to change to 12/15 point and assign them to the Macro drop down list, or assign hot keys to them. that way you could change fonts on demand with a simple click.
Hope this was helpful.............good luck,
Bob
Bob
I appreciate the response. I've experimented, and came up with two alternate solutions:Bob Hansen wrote:No way to do that without a third party program like Macro Scheduler ( http://www.mjtnet.com/macro_scheduler_pro.htm ). The MS script would open TextPad, check the time, and change the font according to your instructions, then would stop and you would be in TextPad as normal.
But just using TextPad, you could make two TextPad macros to change to 12/15 point and assign them to the Macro drop down list, or assign hot keys to them. that way you could change fonts on demand with a simple click.
1. Open textpad, set font, dump textpad registry branch. Repeat for other font. Then when you want to change it, double click on the reg file. Actually I use regedit /s ...... (the /s suppresses the "areyou sure..." prompt) in batch files. I was trying to avoid doing this.
2. Same as above, but then create a bat file, something like this:
======================
@ECHO OFF
CLS
if %1 == 20 goto FONT20
GOTO FONT15
:FONT20
REGEDIT /S "C:\MyData\$$CONFIGURATION$$\textpad\01FONT20.REG"
GOTO STARTTEXTPAD
:FONT15
REGEDIT /S "C:\MyData\$$CONFIGURATION$$\textpad\01FONT15.REG"
GOTO STARTTEXTPAD
:STARTTEXTPAD
"C:\Program Files\TextPad 5\TEXTPAD.EXE"
GOTO END
:END
REM PAUSE
EXIT
======================
3. Then create two shortcuts that call the above batch file with 15 or 20 as appropriate. I realize method 2/3 will leave a DOS window open until you close textpad, but it's just one other possibility.
- Bob Hansen
- Posts: 1516
- Joined: Sun Mar 02, 2003 8:15 pm
- Location: Salem, NH
- Contact:
Be careful of the above posting below Bob's response.!
Thank you, and
Best Wishes,
Obo
http://buddhadust.net/
check out the What's New? Oblog:
http://buddhadust.net/dhammatalk/dhamma ... ts.new.htm
Best Wishes,
Obo
http://buddhadust.net/
check out the What's New? Oblog:
http://buddhadust.net/dhammatalk/dhamma ... ts.new.htm