So hier mal ein kleines Tut wie man Autoit in C++ implementiert, dieses Tut ist nicht von MIR daher gehen die Credits auch nicht an mich ! Ich habe mir nur die mühe gemacht meinen Verlauf nochmal durch zu sehen . So hier das tut für den jenigen den es interessiert.
Visual C++
1. start a new project
2. 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.
Quote:
|
NOTE: you may need to change "APIENTRY WinMain(....)" in main.cpp to "main()" depending on the type of project you made
|
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.
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
Quote:
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
Code:
Quote:
. So in AutoIt the command is
Code:
Quote:
And using the dll it would be
Code:
PHP Code:
AU3_Sleep(1000);
As I said before, all the functions are in the AutoIt3.h file. Look there to see how to use them.