Skip to content
This repository was archived by the owner on Dec 29, 2017. It is now read-only.

ericcornelissen/_RegisterCallbackFunction-UDF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

_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

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages