Page 1 of 1

Macro recording

Posted: Jul 4th, ’14, 15:07
by young67
Hi, I just recently discovered a new Macro recording function!!!

I T
I S
A M A Z I N G !!!

I frequently work with some text files where I need to do some repetitive tasks. It is great to just press F12, record few keytrokes and then F11 to quickly repeat it over and over. I don't need to save it, just use it on the fly. What a time saver. :D

Re: Macro recording

Posted: Jul 7th, ’14, 20:48
by Marko
Thanks, I'm glad you like the quick macro recording feature.

Re: Macro recording

Posted: Sep 4th, ’14, 23:59
by SteveQ
young67 wrote:

I T
I S
A M A Z I N G !!!
Totally agreed!

Re: Macro recording

Posted: Apr 20th, ’20, 11:38
by kaysi
Is there a quick way to repeat last recorded macro n times where n is a number given by the user? I've tried creating a Command comment type shortcut to hit F11 n times using Loop but it looks like Fastkeys shortcuts are not active when a macro is playing.

Re: Macro recording

Posted: Apr 21st, ’20, 17:03
by Tom
You can run the the recorded macro by pressing Play macro shortcut (default F11) or save macro to a normal phrase (Insert/Recorded macro).

You could also use a script to loop the macro (Type: Command):

Code: Select all

Loop, 10
{
     Send, My recorded macro text
}