/_RegisterCallbackFunction-UDF

A UDF to create a callback loop for a certain function in your Au3 project

Primary LanguageAutoIt

_RegisterCallbackFunction()

A UDF to create a callback loop for a certain function in your project.

How to install

  1. Download and install AutoIt v3.
  2. Copy the UDF Au3 file (_RegisterCallbackFunction.au3) to your '..\AutoIt3\Include' folder.
  3. Create your AutoIt v3 project.
  4. Include the UDF to your project, as shown below.
```autoit #include <_RegisterCallbackFunction.au3> ```

How to use

Short example below. For full and working examples see the example(s) folder.

#include <_RegisterCallbackFunction.au3>
_RegisterCallbackFunction ( "_myFunc", 1000 )

Func _myFunc ()
  ConsoleWrite ( "Hey there, this message will appear every second!" )
EndFunc