JohnCleese Posted August 13, 2009 Posted August 13, 2009 Hello, Can anyone tell me how to use _Singleton (or any other method) to reload/restart/refresh the script in question? "I find it rather easy to portray a businessman. Being bland, rather cruel and incompetent comes naturally to me."
martin Posted August 13, 2009 Posted August 13, 2009 Hello, Can anyone tell me how to use _Singleton (or any other method) to reload/restart/refresh the script in question? The intention of _Singleton is to prevent another instance of your scriot running. If you want to start the script again then all you need to do is something like this (not tested) Func ReCreateMyself() If @Compiled Then Run(@ScriptFullPath);just run the exe Else ;$AutoIt3Path = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt", "betaInstallDir");installDir for beta $AutoIt3Path = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt", "InstallDir");installDir for production $ToRun1 = '"' & $AutoIt3Path & '\AutoIt3.exe "' & ' "' & @ScriptFullPath & '"' ; ConsoleWrite($ToRun1 & @CRLF);to test we have got it right Run($ToRun1) EndIf Exit EndFunc ;==>ReCreateMyself If you don't want 2 versions of the script to run under normal circumstances then you could use _Singleton and write your script so that if a certain parameter is passed then allow the second instance, or maybe wait a certain time and if the second instance stops then continue otherwise exit. There are examples of using _Singleton around, and a function _MutexExists which I find easier to use. Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
bluerein Posted August 13, 2009 Posted August 13, 2009 (edited) try Run(@ScriptFullPath & " /restart") sleep(500) exit only works with compiled exe edit.. Martin beat me to it Edited August 13, 2009 by bluerein
JohnCleese Posted August 13, 2009 Author Posted August 13, 2009 Alright thanks guys. Those look just like what I need. >_ "I find it rather easy to portray a businessman. Being bland, rather cruel and incompetent comes naturally to me."
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