fastnick1oo Posted February 18, 2006 Posted February 18, 2006 (edited) expandcollapse popup#include <GUIConstants.au3> Opt('WinTitleMatchMode', 4) Screensaver() Sleep(1000) Exit Func Screensaver() Local $i = 1 Local $point = 50 WinSetState("Program Manager", "", @SW_HIDE) WinSetState("Classname=Shell_TrayWnd", "", @SW_HIDE) WinMinimizeAll() While $i <= 150 Local $x = Random(0, @DesktopWidth, 1) Local $y = Random(0, @DesktopHeight, 1) If $i > $point Then GUIDelete(WinGetHandle($i - $point)) EndIf If $i > $point - 5 Then Local $trans = 250 For $n = $point - 5 To $point - 1 Step 1 WinSetTrans($i - $n, "", $trans) $trans = $trans - 50 Next EndIf MouseMove($x, $y, 3) GUICreate($i, 50, 25, $x - 25, $y - 11, $WS_POPUP + $WS_BORDER, $WS_EX_TOOLWINDOW) GUICtrlCreateLabel("Hacked", 5, 6, 45, 20) GUICtrlSetColor(-1, 0xFF0000) GUISetState() ToolTip($i, 0, 0) $i = $i + 1 WEnd WinMinimizeAllUndo() WinSetState("Classname=Shell_TrayWnd", "", @SW_SHOW) WinSetState("Program Manager", "", @SW_SHOW) EndFunc There is one problem: sometimes freshly created GUIs are deleted insted of "old ones". Anyone know solution for that? Edited February 18, 2006 by fastnick1oo SciTE - much better than notepad. ; ]
sheck Posted February 18, 2006 Posted February 18, 2006 expandcollapse popupOpt('WinTitleMatchMode', 4) Screensaver() Sleep(1000) Exit Func Screensaver() Local $i = 1 Local $point = 50 WinSetState("Program Manager", "", @SW_HIDE) WinSetState("Classname=Shell_TrayWnd", "", @SW_HIDE) WinMinimizeAll() While $i <= 150 Local $x = Random(0, @DesktopWidth, 1) Local $y = Random(0, @DesktopHeight, 1) If $i > $point Then GUIDelete(WinGetHandle($i - $point)) EndIf If $i > $point - 5 Then Local $trans = 250 For $n = $point - 5 To $point - 1 Step 1 WinSetTrans($i - $n, "", $trans) $trans = $trans - 50 Next EndIf MouseMove($x, $y, 3) GUICreate($i, 50, 25, $x - 25, $y - 11, $WS_POPUP + $WS_BORDER, $WS_EX_TOOLWINDOW) GUICtrlCreateLabel("Hacked", 5, 6, 45, 20) GUICtrlSetColor(-1, 0xFF0000) GUISetState() ToolTip($i, 0, 0) $i = $i + 1 WEnd WinMinimizeAllUndo() WinSetState("Classname=Shell_TrayWnd", "", @SW_SHOW) WinSetState("Program Manager", "", @SW_SHOW) EndFunc There is one problem: sometimes freshly created GUIs are deleted insted of "old ones". Anyone know solution for that? This is fun. Good Job. Good code to play a trick on someone. Live and Learn, 'cause Knowledge is Super Power.
cdkid Posted February 18, 2006 Posted February 18, 2006 haha, it threw me an error about undefined variables right after it hid the stuff >.< AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide!
Valuater Posted February 18, 2006 Posted February 18, 2006 its missing this #include <GUIConstants.au3> 8)
FuZi0h Posted February 18, 2006 Posted February 18, 2006 how do i close it? ive been havin it on for hours now. [~FuZi0h~]ScriptRipping? = ┴¬┴¬┴┴¬ (My word for sucks.)'FuZi0h, Liope and Rambo3889 4-EvaHelp me by pressin This!all clicks appreciated :)
Valuater Posted February 18, 2006 Posted February 18, 2006 how do i close it? ive been havin it on for hours now.it has this in the while loopWhile $i <= 150when $i reaches 151 it exits the loop and closes( it did for me )8)
rhg Posted February 18, 2006 Posted February 18, 2006 Yes, exited fine for me to. Neat script Valuater.
FuZi0h Posted February 18, 2006 Posted February 18, 2006 it has this in the while loopWhile $i <= 150when $i reaches 151 it exits the loop and closes( it did for me )8)but how do i make i to reach 151? [~FuZi0h~]ScriptRipping? = ┴¬┴¬┴┴¬ (My word for sucks.)'FuZi0h, Liope and Rambo3889 4-EvaHelp me by pressin This!all clicks appreciated :)
kapowdude Posted February 18, 2006 Posted February 18, 2006 it should reach it itself... unless you changed the coding... the whole script takes about 42 seconds to complete before it exits...
rambo3889 Posted February 18, 2006 Posted February 18, 2006 (edited) If u dont have this line in your code then i think thats why i doesnt reach 151 $i = $i + 1 Edited February 18, 2006 by rambo3889 My Scripts:Radioblog Club Music DownloaderOther stuff:Fun movieIm serious read the help file it helps :PFight 'Till you drop. Never stop, You Cant give up. Til you reach the top Fight! youre the best in town Fight!
ConsultingJoe Posted February 18, 2006 Posted February 18, 2006 A cool little thing to add to it would be HotKeySet ( "{ESC}", "e") func e() WinMinimizeAllUndo() WinSetState("Classname=Shell_TrayWnd", "", @SW_SHOW) WinSetState("Program Manager", "", @SW_SHOW) exit endfunc add this at the top right after #include <GUIConstants.au3> Opt('WinTitleMatchMode', 4) NICE SCRIPT Check out ConsultingJoe.com
fastnick1oo Posted February 18, 2006 Author Posted February 18, 2006 So... only I (script author) have this problem with closing newly created window? It starts form about 110 window count and it bugs at about every 10 windows. SciTE - much better than notepad. ; ]
rambo3889 Posted February 18, 2006 Posted February 18, 2006 I dont have tha prob My Scripts:Radioblog Club Music DownloaderOther stuff:Fun movieIm serious read the help file it helps :PFight 'Till you drop. Never stop, You Cant give up. Til you reach the top Fight! youre the best in town Fight!
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