Friday, December 27, 2013

Tips on Looking up words in theWord Dictionaries

Tip on using the Interlinear-WordStudy Companion tool with theWord

Right click a strongs number in the Interlinear tool and go to Copy.

Now you can paste that number in a dictionary input box.

Unfortunately this process is not automated perhaps in the future.

To automate it somewhat use: Auto HotKey http://www.autohotkey.com/

Create a script similiar to this one: Not the first Click line is very important. This is the location of the screen coordinates of the Dictionary Input box in theWord. Once this script is activated with the correct screen coordinates and you copy for example a strongs number then press alt+s it should put this information into your dictionary input box and return your mouse to its previous location.


#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
CoordMode, Mouse, Screen
!s::
MouseGetPos, xpos, ypos
Click 2170, 60
Click 2
Send %clipboard%
Send {Right}
Send {Enter}
Sleep 100
Send {Enter}
MouseMove %xpos%, %ypos%

No comments:

Post a Comment