I built a launcher that uses ShellExecute() to load a hidden web page, with the users default browser. The problem im having is since it doesn't return the process handle or nothing. We end up with a process idling in the background. Is there any way to return a handle and close this process that would work on a global scale across all web browsers?
Would work. But wont meet my requirements. This program will be used by 1,000's of people daily for a official game, with all different kinds of browsers, so it needs to be more robust.
;~ Load Web Page
$Shell = ObjCreate('Shell.Application')
$Shell.ShellExecute('http://www.google.com', '', '', '', @SW_HIDE)
And then doing.
$Shell.Quit
And
$Shell = 0
But no success, process still exists maybe im doing something wrong?
I built a launcher that uses ShellExecute() to load a hidden web page, with the users default browser. The problem im having is since it doesn't return the process handle or nothing. We end up with a process idling in the background. Is there any way to return a handle and close this process that would work on a global scale across all web browsers?
WinSetTitle('[REGEXPTITLE:DSM;CLASS:ConsoleWindowClass]', '', 'Manager (Version ' & $nVersion & ')')
But that still isn't good enough for me. It can be bypassed by renaming the executable.
Questions simple. If I register two AdlibRegister's in my script. Lets say the first one for 5 minutes and the second one for 10 minutes. When the fist AdlibRegister runs its second run it will be at the same time as the 10 minute AdlibRegister. Now my question is, will it only run the first AdlibRegister to trigger, or will it run them back-to-back until they both are done?
Here's a update to this UDF (Shaggi I hope you don't mind just minor things). You can now use all 255 color combinations in a console, however you cannot Obfuscate your source no longer (bug). Removed: $FOREGROUND_X
$BACKGROUND_X Added: $COLOR_X (1-255) #include <Console.au3>
Dim $COLOR_
For $i = 1 to 255
Cout($i & ' ', $COLOR_ & $i)
Sleep(10)
Next
While 1 = 1
Sleep(1000)
WEndConsole.au3
An example of using AutoIt's binary mode for byte patching. This was a random boredom fiddle-diddle so don't expect it to be coded "properly".
Source Code
Code removed because it demonstrates patching a game bot.