yalil Posted December 13, 2023 Posted December 13, 2023 (edited) i cant remember the function to send messege back to main thread please help Edited December 13, 2023 by yalil
Developers Jos Posted December 13, 2023 Developers Posted December 13, 2023 (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 December 13, 2023 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.
yalil Posted December 13, 2023 Author Posted December 13, 2023 (edited) expandcollapse popup#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 December 14, 2023 by Jos Tidied code
Developers Jos Posted December 14, 2023 Developers Posted December 14, 2023 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.
argumentum Posted December 14, 2023 Posted December 14, 2023 might as well look at if you'd like something like "authread" Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
junkew Posted December 19, 2023 Posted December 19, 2023 You could use running object table FAQ 31 How to click some elements, FAQ 40 Test automation with AutoIt, Multithreading CLR .NET Powershell CMDLets
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now