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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 373
» Latest member: 00chandonatt
» Forum threads: 62
» Forum posts: 157

Full Statistics

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

Latest Threads
Belongs to the Ministry o...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: 00chandonatt
9 hours ago
» Replies: 0
» Views: 1
Code Deleted
Forum: Need help with ShortKeeper?
Last Post: Mrgooga
03-07-2023, 06:59 PM
» Replies: 4
» Views: 589
Keyboard Shortcut - Highl...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: HunterBryan
07-11-2022, 10:07 AM
» Replies: 1
» Views: 7,078
Keyboard Shortcut - Launc...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: pilot888
04-18-2022, 02:24 PM
» Replies: 6
» Views: 10,832
Keyboard Shortcut - Go to...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: denilama
03-16-2022, 12:22 PM
» Replies: 2
» Views: 7,979
Enterpad Tips - Do Multip...
Forum: The Enterpad corner
Last Post: janamacon
09-29-2021, 08:18 AM
» Replies: 2
» Views: 11,503
Pay by mastercard
Forum: The Enterpad corner
Last Post: Jinonisie
07-19-2021, 07:51 AM
» Replies: 2
» Views: 10,193
Keyboard Shortcut - Get G...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: bratpits
06-26-2021, 07:12 AM
» Replies: 3
» Views: 10,042
Enterpad with new compute...
Forum: The Enterpad corner
Last Post: denilama
10-12-2020, 08:30 AM
» Replies: 9
» Views: 38,376
Keyboard Shortcut - Auto ...
Forum: Keyboard shortcuts with AutoHotkey code
Last Post: denilama
09-23-2020, 10:12 AM
» Replies: 2
» Views: 13,325

 
  Keyboard Shortcut - Find synonyms from a selected word
Posted by: pilot888 - 10-31-2019, 02:55 PM - Forum: Keyboard shortcuts with AutoHotkey code - Replies (1)

When I need to write a proposal to a customer, an email to my teammates, etc, the perfect words don't often come easily in my head. For me, it can mean that I've communicated properly my proposal to the customer, earn his trust and receive a purchase order. Typically, after selecting the text (from anywhere), you have to copy it (to the clipboard), start your browser, go to a synonym website, paste it (from the clipboard) in the query field, and then click a button to find a synonym. This whole process can be very long and repetitive.

To solve this, I developed a quick AutoHotkey script to process the finding rapidly into a synonym website. For this example, I used I ''https://synonyms.reverso.net/synonyme/'' but you can use any other synonym website. 

Basically, I select the word that I want to find a synonym, then I activate the shortcut from Shortkeeper. Immediately after, the synonym website opens up in my internet browser and instantly shows me several synonyms of the selected word. Here's the AutoHotkey script to be used in Shortkeeper:

ClipSaved := ClipboardAll
Clipboard =
SendInput, ^c
ClipWait, 2
if ErrorLevel
{
 ;MsgBox % "Failed attempt to copy text to clipboard."
  Run % "https://synonyms.reverso.net/synonyme/en/"
}
else
{
  TextSelected := Trim(Clipboard)
  Run % "https://synonyms.reverso.net/synonyme/en/" . TextSelected
}
Clipboard := ClipSaved

Enjoy!

Print this item

  Keyboard Shortcut - Launch Google Translate for Selected Text
Posted by: pilot888 - 10-17-2019, 06:59 PM - Forum: Keyboard shortcuts with AutoHotkey code - Replies (6)

Often at my work, I need to translate documents received from international customers when English is not used. Typically, after selecting the text (from anywhere), you have to copy it (to the clipboard), start your browser, go to Google Translate, paste it (from the clipboard) in the query field, and then click a button to translate. This whole process can be very long and repetitive.

To solve this, I developed a quick AutoHotkey script to process the translation into Google Translate. I select the non-English text, then I activate the shortcut from Shortkeeper. Immediately after, Google Translate opens up in my internet browser and instantly shows me the English version of the text. Here's the AutoHotkey script to be used in Shortkeeper:

ClipSaved := ClipboardAll
Clipboard =
SendInput, ^c
ClipWait, 2
if ErrorLevel
{
  run % "https://translate.google.com/?js=n&sl=en&tl=fr"
}
else
{
  SelectedText := Trim(Clipboard)
SelectedText := StrReplace(SelectedText, "%", "%25")
SelectedText := StrReplace(SelectedText, "#", "%23")
SelectedText := StrReplace(SelectedText, "&", "%26")
SelectedText := StrReplace(SelectedText, "+", "%2b")
  SelectedText := StrReplace(SelectedText, """", "%22")
  SelectedText := StrReplace(SelectedText, A_SPACE, "%20")
  run % "https://translate.google.com/?js=n&sl=en&tl=fr&text=" . SelectedText
}
Clipboard := ClipSaved

Note that you can change the input and output language, to whatever language Google Translate supports, by changing the ''en'' and ''fr'' in the URL address to your preferred language code. In this example, I translate from English to French.

This shortcut is by far a game changer and ultimately saves me lots of precious time at work. Hope you enjoy it as much as I do!

Print this item

  Pay by mastercard
Posted by: Sofie - 08-06-2019, 11:04 AM - Forum: The Enterpad corner - Replies (2)

Hi,

We are trying to place an Enterpad order but wish to pay by mastercard , can you please help out?

Thank you in advance!

Print this item

  Start application by name
Posted by: Philippe27 - 01-15-2019, 02:00 PM - Forum: Need help with ShortKeeper? - Replies (4)

Hi,

I am using Corel Draw and I want to create a shortcut that will start my software automatically. Unfortunately, I don't find it in the list of predetermined applications. What can I do?

Thank you for helping me!

Philippe27

Print this item

  Enterpad with new computer
Posted by: Melb12 - 01-04-2019, 02:05 PM - Forum: The Enterpad corner - Replies (9)

Hi - we have changed the computer which we use the Enterpad.  I plugged in the Enterpad and everything worked fine; however, I cant find where the icon is that we previously pinned to the taskbar that we used to access editing.  Can you please assist!  thanks

Print this item

  Enterpad mistakenly reprogrammed
Posted by: Chardo - 11-15-2018, 01:53 PM - Forum: The Enterpad corner - Replies (2)

Hi! I have a problem an enterpad was mistakenly reprogrammed. We don't have the original file. Is it possible to copy the file from a working enterpad and load it to the malfunctioning enterpad.

Thanks!

Print this item

  Introduction
Posted by: Jacob - 09-27-2018, 02:00 AM - Forum: Need help with ShortKeeper? - Replies (4)

Hello all, i am new here...

Print this item

  Using Multiple AHK Enterpads on Single Computer
Posted by: NLantern - 08-27-2018, 11:50 AM - Forum: The Enterpad corner - Replies (1)

I’m looking to expand the amount of scripts I have instant access to and so would like to be able to use multiple Enterpads on a single computer, each firing different sets of AHK scripts. Is there a way I can do this?


Thanks

Print this item

  Pre Sale Question
Posted by: denilama - 08-13-2018, 09:20 AM - Forum: The Enterpad corner - No Replies

Note: This post is taken from another forum where I provide ShortKeeper support.

Quote:Does the product require the installation of any software. I’m wondering if this can be used in an environment that does not allow the installation of any software.

That said, I do use the portable version of AHK on my computer already.

I assume you don’t have a less expensive version, perhaps with fewer keys?

Software is only needed to program the Enterpad. Once the Enterpad has been programmed to send keystrokes (i.e., any of the 101-104 keys found on a standard keyboard), it can be used in an environment that does not require the installation of any software. Thus, you can set each Enterpad key to send a shortcut key that will trigger an AutoHotkey script, and (provided AutoHotkey is installed on the system) you still won’t need to install any software to use the Enterpad.

However, the Enterpad can also trigger AutoHotkey scripts directly (without using shortcut keys to trigger them). To take advantage of this unique feature, a small portable file needs to be copied to the same folder as the AutoHotkey scripts. The AHK Enterpad script template already includes it.

To answer your last question, a device with fewer keys can be custom-built by Cedeq; however, a custom device would be more expensive. With all the AutoHotkey scripts currently available on the Internet, you might soon find uses for all of your Enterpad keys.

Quote:Thanks, denilama.
One other question.
Not sure if I should order the Standard version or the AHK version. How am I limited if I go with either ?

You are not limited with either. The AHK Enterpad is simply a standard Enterpad already configured with the "AutoHotkeyRp1.pos" file. You can easily convert an AHK Enterpad into a standard Enterpad and vice versa. You can even have a part of the Enterpad standard (e.g. keys 1-60) and another part AHK (e.g. keys 61-120).

If you know AutoHotkey, it makes sense to order the AHK version: https://cedeq.com/enterpad/en/autohotkey/express-order

Print this item

  Enterpad in Australia
Posted by: denilama - 08-03-2018, 11:54 AM - Forum: The Enterpad corner - No Replies

Note: This post is taken from another forum where I provide ShortKeeper support.

Quote:Can you please direct me to your Australian distributor? Many thanks

At this moment, we don't have an Enterpad distributor in Australia, but we regularly ship the Enterpad to addresses all over the world.

We use Canada Post’s Xpresspost™ service (with insurance and tracking) to ship small Enterpad orders (up to 10 units). The delivery time for one Enterpad to Australia is about 7 days. However, there could be an additional delay due to customs. A reasonable estimate is about 1-2 weeks on average.

Print this item