To short locate using hotkeys, users will have to first open a Short Locate Window, right click on the title bar, and name the window. I have named it “short”.
Now, navigate to the Hotkey Script Builder where choosing “ShortLocate” under “Command Categories” will display all the relevant functions. As seen in the script below, the first thing to do, is to grab the short locate window by its name, “short”.
$window = GetWindowObj(“short”);
Then, we set the number of shares that we want to inquire about, and inquire.
$window.InquiryShare=110;
$window.Inquire;
Lastly, we can finally locate the shares.
$window.LocateLowest;


