Warning: Cannot modify header information - headers already sent by (output started at /home/www/dynamic/pluto.ro/traduceri.pluto.ro/public_html/index.php:2) in /home/www/dynamic/pluto.ro/traduceri.pluto.ro/public_html/wordpress/wp-includes/feed-rss2.php on line 8 AHK – Traduceri http://traduceri.pluto.ro Translations - Übersetzungen Sat, 23 Mar 2024 06:08:09 +0000 en-US hourly 1 https://wordpress.org/?v=5.1.18 Autohotkey to simulate Ctr-Insert in MemoQ to copy target segment into source segment http://traduceri.pluto.ro/2017/11/autohotkey-to-simulate-ctr-insert-in-memoq-to-copy-target-segment-into-source-segment/ Sat, 11 Nov 2017 08:42:50 +0000 http://traduceri.pluto.ro/?p=476 Continue reading "Autohotkey to simulate Ctr-Insert in MemoQ to copy target segment into source segment"]]>

In MemoQ, to copy target segment into source segment, you press Ctr+Alt+S.
In SDL Studio, to copy target segment into source segment, you press Ctr+Insert.
This AutoHotKey script simulates the same shortcut in MemoQ, that is, if you press Ctr+Insert in MemoQ, you can copy the source segment into the target segment, having the same shortcut as in SDL Studio, which I find to be easier and more logical.
Copy the code, paste it in a text file and rename the extension to AHK. In order to run, AutoHotKey must be installed.

^Insert:: ; Simulate Ctr+Insert in MemoQ
WinGetActiveTitle, Title
IfInString, Title, memoQ
{
Send ^+s
Send {Left}
}
Else
Send ^{Ins}
Return

]]>