Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 568
» Latest member: JeffreyFem
» Forum threads: 62
» Forum posts: 157

Full Statistics

Online Users
There are currently 20 online users.
» 0 Member(s) | 20 Guest(s)

Latest Threads
Code Deleted
Forum: Need help with ShortKeeper?
Last Post: Mrgooga
03-07-2023, 06:59 PM
» Replies: 4
» Views: 3,178
Keyboard Shortcut - Highl...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: HunterBryan
07-11-2022, 10:07 AM
» Replies: 1
» Views: 8,648
Keyboard Shortcut - Launc...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: pilot888
04-18-2022, 02:24 PM
» Replies: 6
» Views: 15,052
Keyboard Shortcut - Go to...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: denilama
03-16-2022, 12:22 PM
» Replies: 2
» Views: 10,086
Enterpad Tips - Do Multip...
Forum: The Enterpad corner
Last Post: janamacon
09-29-2021, 08:18 AM
» Replies: 2
» Views: 13,776
Pay by mastercard
Forum: The Enterpad corner
Last Post: Jinonisie
07-19-2021, 07:51 AM
» Replies: 2
» Views: 11,952
Keyboard Shortcut - Get G...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: bratpits
06-26-2021, 07:12 AM
» Replies: 3
» Views: 12,502
Enterpad with new compute...
Forum: The Enterpad corner
Last Post: denilama
10-12-2020, 08:30 AM
» Replies: 9
» Views: 44,015
Keyboard Shortcut - Auto ...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: denilama
09-23-2020, 10:12 AM
» Replies: 2
» Views: 15,400
Pre Sales Template Questi...
Forum: The Enterpad corner
Last Post: denilama
08-20-2020, 12:45 PM
» Replies: 1
» Views: 9,492

 
  Delivery process was great
Posted by: deviewlay - 02-06-2018, 02:34 PM - Forum: The Enterpad corner - Replies (1)

I received updates advising its progress and the package arrived in good shape.  I think it took around 1.5 weeks from ordering to arrive.

This is our second unit – we purchased the first one a couple of years ago from Teknode here in Adelaide.  It is a brilliant product – I installed and programmed both units without a problem and I am definitely not very tech savvy!  The keypad is great to use and so easy to make changes.  We previously had a Swedish keypad (can’t recall the brand), which was very cumbersome to make changes to – something we are constantly doing as we are a winery and the vintages regularly change.  We use them in our two cellar doors and they work very well.

In a world where technology is so often extremely (unnecessarily)complicated, it is refreshing to find a product which is user friendly and does exactly what it purports to do.

Thank you for a great product.

Print this item

Lightbulb Keyboard Shortcut - Open Google Maps from a Selected Address
Posted by: denilama - 02-02-2018, 01:59 PM - Forum: Keyboard shortcuts with AutoHotkey code - No Replies

How are you using Google Maps? Do you have to select an address, copy it to the clipboard, start Google Maps, paste the address, and finally hit "Enter" to get the location? If you are doing this again and again, you may find the following AutoHotkey script useful. Simply select the address and then press the keyboard hotkey. This will bring the address up in Google Maps.

Need help creating a keyboard shortcut with ShortKeeper using the following AutoHotkey code? This 5-minute tutorial will help!

ClipSaved := ClipboardAll
Clipboard =
SendInput, ^c
ClipWait, 2
if ErrorLevel
{
  MsgBox % "Failed attempt to copy text to clipboard."
}
else
{
  SelectedAddress := Trim(Clipboard)
  StringReplace,SelectedAddress,SelectedAddress,`n,%A_SPACE%,A
  StringReplace,SelectedAddress,SelectedAddress,`r,,A
  run % "https://www.google.com/maps/search/" . SelectedAddress . "/"
}
Clipboard := ClipSaved

The selected address can be on several lines. New lines will be replaced with spaces.

This script is optimized to be used with ShortKeeper. As such, there is no "Return" at the end and variable(s) don’t need to be cleared. ShortKeeper will do this automatically. Just copy/paste this code in the PARAM field in ShortKeeper, set your hotkey, save, and you’re ready to use your new keyboard shortcut.

Print this item