I would like to code a function (macro or add-on) that allows to move a word left/right of previous/next one. I use such a macro in Word and would like to implement it in Studio.
Couyld someone help me ?
Regards
Arnaud
I would like to code a function (macro or add-on) that allows to move a word left/right of previous/next one. I use such a macro in Word and would like to implement it in Studio.
Couyld someone help me ?
Regards
Arnaud
Hi Arnaud,
I believe Paul mentioned in another post, but I would recommend AutoHotkey for this.
While I think it is possible with a plug-in, it would take a lot more work.
I estimate with a plug-in you would need around thousand lines of code while with AutoHotKey you could do it in just a couple.
Here is what I came up with BTW:
F1::
Send, +^{Right}
Send, ^x
Send, ^{Right}
Send, ^v
Select text to the right, cut it, then move right and paste it using F1 key.
Here is what I came up with BTW:
F1::
Send, +^{Right}
Send, ^x
Send, ^{Right}
Send, ^v
Select text to the right, cut it, then move right and paste it using F1 key.
Paul Filkin | RWS Group
________________________
Design your own training!
You've done the courses and still need to go a little further, or still not clear?
Tell us what you need in our Community Solutions Hub
Paul Filkin | RWS Group
________________________
Design your own training!
You've done the courses and still need to go a little further, or still not clear?
Tell us what you need in our Community Solutions Hub