dbzfanatic Posted September 11, 2007 Posted September 11, 2007 (edited) Hello everyone, I've made a little timer that changes my status in yahoo messenger whenever I have to leave for my martial arts lesson and I have almost everything perfectly but I want to hide it from task manager so I don't accidentally turn it off (I have a tendency to do such things.) Is there a way anyone could help? The code is as follows so you can see it's not malicious. #RequireAdmin #include <misc.au3> ; Global $tries AutoItSetOption("trayiconhide",1) While 1 If @HOUR = 16 and @WDAY = 3 Or @WDAY = 4 Or @WDAY = 5 And $tries = 0 Then $pixel = PixelSearch(0,0,@DesktopWidth,@DesktopHeight, 1972233 ,5) If Not @error Then MouseClick("left", $pixel[0], $pixel[1],2) Sleep(500) $pixel = PixelSearch(50,50,@DesktopWidth,250,16108221,0) if Not @error Then MouseClick("left", $pixel[0] + 20, $pixel[1],1) Sleep(500) MouseClick("left",$pixel[0], $pixel[1] + 280,1) Sleep(500) Send("At Chinese Kenpo (Martial arts lesson)") $pixel = PixelSearch(0,0,@DesktopWidth,@DesktopHeight,14891064 ,0,1) MouseClick("left",$pixel[0] - 25, $pixel[1]) MouseClick("left",$pixel[0] - 25, $pixel[1] + 30) EndIf $tries = 1 Sleep(7200000) $tries = 0 Else MsgBox(48,"Error", "Pixel not found.") EndIf EndIf WEnd Edited September 12, 2007 by dbzfanatic Go to my website. | My Zazzle Page (custom products)Al Bhed Translator | Direct linkScreenRec ProSimple Text Editor (STE) [TUTORIAL]Task Scheduler UDF <--- First ever UDF!_ControlPaste() UDF[quote name='renanzin' post='584064' date='Sep 26 2008, 07:00 AM']whats help ?[/quote]
dbzfanatic Posted September 12, 2007 Author Posted September 12, 2007 (edited) Hate to double post but this seems to be being ignored just because I want to do something that someone with bad intentions MAY want to do, I don't really think that's fair because I have NO intention of doing anything malicious. I also changed the title so my posts aren't dismissed as "some wanna-be hacker with problems". Edited September 12, 2007 by dbzfanatic Go to my website. | My Zazzle Page (custom products)Al Bhed Translator | Direct linkScreenRec ProSimple Text Editor (STE) [TUTORIAL]Task Scheduler UDF <--- First ever UDF!_ControlPaste() UDF[quote name='renanzin' post='584064' date='Sep 26 2008, 07:00 AM']whats help ?[/quote]
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