Changing Your Font Size

A blogger lamented recently that none of the Bible software programs that he has used allow the font size to be enlarged enough so that it is readable when projected on a big screen.
We were happy to inform him that Logos works very well on a screen. A user can easily change the zoom up to 400% (= 48 pts.)—and with a simple script code all the way up to 999% (= 120 pts.)!
The default zoom for resources and reports is 100%, which is equivalent to a 12 pt. font. That may be too small depending on the size and resolution of your monitor—and depending on your purpose. Changing it is a cinch.
There are a couple of ways you can adjust your font size.

  1. All Resources: You can set all resources to use a certain zoom. Do this by going to Tools > Options > General > Text Display and selecting anywhere from 50% to 400% under the Default Zoom drop down. You probably want to leave the box checked next to Use Default Zoom Only with Resources, but test it for yourself to see what you like. You can also change the reports separately. (I have my default zoom set to 150% most of the time, but Bible Speed Search set to 125%.)
  2. Individual Resources and Reports: You can also adjust the zoom on individual resources and reports by using the Zoom icon in the toolbar or by going to View > Zoom. I recommend doing this only after you have set your default zoom. (If you want to change these later, you’ll have to do so one resource at a time! I learned that the hard way as a new user.)

Here are two other tips that some users might find helpful.
What if you want to set your default zoom to something other than what is available in the options (e.g., 135% or 500%)? With a simple script code, you can get as precise as you want.
In the following script code, replace 135 with whatever two or three digit number you want. Create a new toolbar button using the Run Script Code command. Click the button to execute the script.
Here’s the script code:
Application.UserPreferences(“LDLS/ResourceSettings”).SetValue(“Strings”,”Zoom”,”135″);
Another thing you can do is create a button that will toggle between your default zoom and another zoom. This comes in very handy if you prefer one size for a resource when it’s in a smaller window and another size when it’s maximized for reading or displaying on a screen.
To do this, create a toolbar button using the Run Script Code command and this script:
var objWindow = Application.ActiveWindow;
if ( objWindow != null )
{
if ( objWindow.Type == “resource” )
{
var objView = objWindow.View;
if ( objView && objView.IsOpen() )
{
var objDisplayPane = objView.Panes(“display”);
if ( objDisplayPane )
{
var strZoom = objDisplayPane.Control.Zoom;
if ( strZoom != “175%” )
strZoom = “175%”;
else
strZoom = “auto”;
objDisplayPane.Control.Zoom = strZoom;
}
}
}
}

Replace the 175 with whatever two or three digit number you’d like. You can create multiple buttons to use for different purposes.

Share
Written by
Phil Gons

Follower of Jesus, husband of Shanna, father of five, Chief Product Officer at Logos, PhD (ABD) Theology, reader, learner, blogger, technophile.

View all articles

Your email address has been added

Written by Phil Gons