zeffy 0 Posted September 1, 2010 Hi, I've been trying to figure out how to check to see if a Singleton occurrence name has been registered or not, without registering it (which is what _Singleton("test", 1) would do), does anyone know how to do this? Thanks. Share this post Link to post Share on other sites
wakillon 403 Posted September 1, 2010 Hi, I've been trying to figure out how to check to see if a Singleton occurrence name has been registered or not, without registering it (which is what _Singleton("test", 1) would do), does anyone know how to do this? Thanks.Without using _Singleton ? use processlist function for find it . AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites
zeffy 0 Posted September 2, 2010 Without using _Singleton ? use processlist function for find it .If I wanted to just look for the script's process name I'd just use ProcessExists, but what I want to do is check to see if the mutex that _Singleton registers, is already registered, ProcessList doesn't do this. Share this post Link to post Share on other sites
trancexx 1,013 Posted September 2, 2010 Go with OpenMutex in that case. ♡♡♡ . eMyvnE Share this post Link to post Share on other sites
zeffy 0 Posted September 3, 2010 Sweet, thanks man. Share this post Link to post Share on other sites