Jump to content

Recommended Posts

  • Developers
Posted (edited)

Moved to the appropriate AutoIt General Help and Support forum, as the AutoIt Example Scripts forum very clearly states:

Quote

Share your cool AutoIt scripts, UDFs and applications with others.


Do not post general support questions here, instead use the AutoIt Help and Support forums.

Moderation Team

PS: Please post the actual post code in a Code block in stead of an image!

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted (edited)
#include <authread.au3>
#RequireAdmin
Opt("MouseClickDragDelay", 10)
Opt("MouseClickDownDelay", 50)
Opt("SendKeyDelay", 50)
Opt("SendKeyDownDelay", 10)
Opt("MouseClickDelay", 30)
HotKeySet("{ESC}", "Terminate")

$x = 0
$y = 0

Func Terminate()
    Exit
EndFunc   ;==>Terminate

_AuThread_Startup()

$au0 = _AuThread_StartThread("thread0")
$main = mainthread()



Func mainthread()
    While 1
        $msg = _authread_getmessage()
        If $msg Then
            ToolTip("true")
            Sleep(2000)
        Else
            ToolTip("error")
            Sleep(5000)
        EndIf
    WEnd
EndFunc   ;==>mainthread

Func thread0()
    While 1
        _authread_sendmessage($main, "I")
        ToolTip("done", 0, 0)
    WEnd
EndFunc   ;==>thread0

 

Edited by Jos
Tidied code
  • Developers
Posted

authread runs a separate process so they do not use any common Variable!
You need to use an IPC mechanism to exchange information ...  something like this: 

 

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

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
  • Recently Browsing   0 members

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