Jump to content

Using AutoItX in Visual C++ and Dev-C++


miguel9614
 Share

Recommended Posts

I've been meaning to post this guide for a while, but was busy and just got around to it. I thought I'd post this because I had trouble figure out how to do it when I first tried. Hope you find it useful =]

Visual C++

1. start a new project2. go to your Autoit directory (usually C:\Program Files\AutoIt\ )

3. go to the AutoItX/StandardDLL/VC6/Example folder within your Autoit directory

4. copy the following files to your project directory: AutoIt3.h AutoItX3.lib AutoItX3.dll main.cpp

5. in visual studio, go to Project->Add To Project->Files

6. change the "Files of type" dropdown to "all files"

7. Select: AutoIt3.h AutoItX3.lib and main.cpp and add them to the project

8. Your project should now compile and run. the example opens notepad and sends some text to it.

NOTE: you may need to change "APIENTRY WinMain(....)" in main.cpp to "main()" depending on the type of project you madeNow you can use AutoIt commands in your C++ program. Look at the example main.cpp file for an idea of how to use AutoIt functions. Also, look in the AutoIt3.h file for all the functions and how they are to be used.

Dev C++

1. start a new project

2. go to your Autoit directory (usually C:\Program Files\AutoIt\ )

3. go to the AutoItX/StandardDLL/DevC folder within your Autoit directory

4. copy the following files to your project directory: AutoIt3.h libautoitx3.a AutoItX3.dll main.cpp

5. in Dev-C++, go to Project->Add to project

6. Add the following files to the project: main.cpp AutoIt3.h

NOTE: You may need to remove the "main.cpp" file that Dev-C++ automatically adds before adding the autoit example. just go to Project->Remove from project or right click on the file on the left hand side and click "remove". If it asks you to save click no.

7. Now go to Project->Project Options and click on the Parameters tab

8. Click the button that says "Add library or object"

9. Select the libautoitx3.a file

10. the program should now compile and run. the example opens notepad and sends some text to it.

Now you can use AutoIt commands in your C++ program. Look at the example main.cpp file for an idea of how to use AutoIt functions. Also, look in the AutoIt3.h file for all the functions and how they are to be used.

Using AutoIt Commands

I decided to add a small section on actually using the commands, incase anyone has trouble figuring it out from the example file.

Basically all commands start as

AU3_

So in AutoIt the command is

Sleep(1000)

And using the dll it would be

AU3_Sleep(1000);

As I said before, all the functions are in the AutoIt3.h file. Look there to see how to use them.

Link to comment
Share on other sites

  • 4 years later...

Hey thanks for the thread i was looking for something like this, but i got a problem.

I can't find AutoIt3.h libautoitx3.a AutoItX3.dll files in Autoit folder what should i do ?

Edited by GeoX
Link to comment
Share on other sites

  • 1 year later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...