Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Autoit Recorder not available

From here I downloaded:

  1. SciTE4AutoIt3.exe
  2. SciTE.exe

But AutoIt Recorder is not in the tools menu. Also tried downloading AutoIt Recorder, though I could not. How to get AutoIt Recorder?

like image 672
Natasha Avatar asked Sep 15 '14 09:09

Natasha


People also ask

How do you AutoIt a script?

First open a folder where you wish to create the script. Right-click in the folder and select New / AutoIt v3 Script. A new file will be created, immediately allowing you to rename it to something more appropriate. Change 'New AutoIt v3 Script' to 'helloworld', leaving the '.


2 Answers

As of AutoIt v3.3.14.1 AU3Recorder is not included anymore. The only way is:

  1. Download AutoIt v3.3.14.0.
  2. Copy
    autoit-v3.3.14.0.zip\install\Extras\Au3Record
    to
    {AutoIt-Install-Dir}\Extras\Au3Record.
  3. Start AU3Recorder:
    • Run {AutoIt-Install-Dir}\Extras\Au3Record\Au3Record.exe.
    • Or open SciTE and click Tools > AU3Recorder (Alt + F6):

      enter image description here

Notes:

  • Version 3.3.14.0 has AU3Recorder.
  • Version 3.3.14.2 does not.
  • Changelog / history does not mention it.
  • Explained here and here.
like image 90
Katie Avatar answered Oct 16 '22 10:10

Katie


It has been removed from the main installer from v3.3.14.1 as it triggers many AV false positives. You can find an old version here:

https://www.autoitscript.com/autoit3/files/archive/autoit/autoit-v3.3.14.0.zip

A little explanation of the rather strange link above:

If we give you a direct link to the file (or the zip file which includes it) the site gets flagged as hosting malware (yes really!) - so what you have is a link to the AutoIt archive page and the name of the zip file you need to download from it.

https://www.autoitscript.com/forum/topic/176009-where-is-au3recordexe/

It is then located in the zip file at: .\install\Extras\Au3Record

like image 42
Joel McBeth Avatar answered Oct 16 '22 09:10

Joel McBeth