Mosquitos Posted April 12, 2006 Posted April 12, 2006 I have see the starfield screensaver but how do you do this with text please? A black background with the red letters " i love autoit" and the text is moving on your screen Sapiente vince, rex, noli vincere ferro!
nfwu Posted April 12, 2006 Posted April 12, 2006 (edited) #include <GUIConstants.au3> $gSpeed = (50) $gFieldColor = (0) $gRandColor = (1) $gFontSize = (25) Func SaverWindow($nWidth, $nHeight, $nLeft, $nTop, $hParent = 0) MouseMove($nWidth + 1, $nHeight + 1, 0) $mPos = MouseGetPos() $hGUI = GUICreate("", $nWidth, $nHeight, $nLeft, $nTop, $WS_POPUPWINDOW, $WS_EX_TOPMOST, $hParent) GUISetBkColor($gFieldColor) Local $labelx = Random(0, $nWidth), $labely = Random(0, $nHeight) Local $label = GUICtrlCreateLabel ( "AutoIt is simple, subtle, elegant.", $labelx, $labely, 1000, 300) GUICtrlSetColor ( $label, 0xFFFFFF) GUICtrlSetFont ($label, $gFontSize ) GUISetState() While 1 $msg = GuiGetMsg() $mcPos = MouseGetPos() If $mPos[0] <> $mcPos[0] or $mPos[1] <> $mcPos[1] or $msg = $GUI_EVENT_CLOSE Then GUIDelete($hGUI) Return EndIf $labelx = $labelx + 5 If $labelx > $nWidth Then $labelx = 0 $labely = Random(0, $nHeight) EndIf GUICtrlSetPos ( $label, $labelx, $labely ) Sleep(50 - $gSpeed) WEnd EndFunc SaverWindow(@DesktopWidth, @DesktopHeight, 0, 0) EDIT (05:25 PM): Tested code, corrected errors, posted new code. EDIT (05:47 PM): Spelling error: subtile -> subtle #) Edited April 12, 2006 by nfwu TwitterOut of date stuff:Scripts: Sudoku Solver | Webserver | 3D library (Pure AutoIt) | Wood's GadgetsUDFs: _WoodUniqueID() | _DialogEditIni() | _Console*() | _GetIPConfigData() | _URLEncode/Decode()
Infinitex0 Posted April 12, 2006 Posted April 12, 2006 D@/\/\N, way to go all out The below statement is False.The above statement is True.a lesson I learned from Greenmachine; give a man a code and he'll solve one problem. Teach a man to code and he'll solve all his problems.P.S please don't use autoIt as a virus creator/spyware maker(keyLogger especially)Cick this and help me[center]My Scripts:[/center][center]Port Scanner[/center]
Mosquitos Posted April 12, 2006 Author Posted April 12, 2006 #include <GUIConstants.au3> $gSpeed = (50) $gFieldColor = (0) $gRandColor = (1) $gFontSize = (25) Func SaverWindow($nWidth, $nHeight, $nLeft, $nTop, $hParent = 0) MouseMove($nWidth + 1, $nHeight + 1, 0) $mPos = MouseGetPos() $hGUI = GUICreate("", $nWidth, $nHeight, $nLeft, $nTop, $WS_POPUPWINDOW, $WS_EX_TOPMOST, $hParent) GUISetBkColor($gFieldColor) Local $labelx = Random(0, $nWidth), $labely = Random(0, $nHeight) Local $label = GUICtrlCreateLabel ( "AutoIt is simple, subtle, elegant.", $labelx, $labely, 1000, 300) GUICtrlSetColor ( $label, 0xFFFFFF) GUICtrlSetFont ($label, $gFontSize ) GUISetState() While 1 $msg = GuiGetMsg() $mcPos = MouseGetPos() If $mPos[0] <> $mcPos[0] or $mPos[1] <> $mcPos[1] or $msg = $GUI_EVENT_CLOSE Then GUIDelete($hGUI) Return EndIf $labelx = $labelx + 5 If $labelx > $nWidth Then $labelx = 0 $labely = Random(0, $nHeight) EndIf GUICtrlSetPos ( $label, $labelx, $labely ) Sleep(50 - $gSpeed) WEnd EndFunc SaverWindow(@DesktopWidth, @DesktopHeight, 0, 0) EDIT (05:25 PM): Tested code, corrected errors, posted new code. EDIT (05:47 PM): Spelling error: subtile -> subtle #) Thanks And is it possible that the text turning around or moving diagonal over the screen? Sapiente vince, rex, noli vincere ferro!
BigDod Posted April 12, 2006 Posted April 12, 2006 ThanksAnd is it possible that the text turning around or moving diagonal over the screen?Why not just use the 3D Text that comes with Windows. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
nfwu Posted April 12, 2006 Posted April 12, 2006 ThanksAnd is it possible that the text turning around or moving diagonal over the screen?That sounds like what my AutoIt3D was planned to be capable of... problem is that I haven't completed it.(It's been on hold for 3 months?)@BigDod: Good Alternative!#) TwitterOut of date stuff:Scripts: Sudoku Solver | Webserver | 3D library (Pure AutoIt) | Wood's GadgetsUDFs: _WoodUniqueID() | _DialogEditIni() | _Console*() | _GetIPConfigData() | _URLEncode/Decode()
Mosquitos Posted April 12, 2006 Author Posted April 12, 2006 Why not just use the 3D Text that comes with Windows. Yes thats true but i wanna use that script anytime i go away from my computer... Sapiente vince, rex, noli vincere ferro!
greenmachine Posted April 12, 2006 Posted April 12, 2006 Yes thats true but i wanna use that script anytime i go away from my computer...Set the screensaver wait time to 1 minute? Or 2, or 3....
Onoitsu2 Posted April 17, 2006 Posted April 17, 2006 $labelx = $labelx + 5 If $labelx > $nWidth Then $labelx = 0 <=== This Line $labely = Random(0, $nHeight) Changed to -500 and instead of starting at the far left of the screen it scrolled onto the screen, this value only worked for the message "AutoIt is simple, subtle, elegant." for any other you would have to do some width calculation based on the length of the text and then multiply that by the pixel width of the font chosen, or something like that ... LOL Just saw this post and I like what this script does Laterzzz, Onoitsu2 Things I have made:[font="Trebuchet Ms"]_CheckTimeBlock UDF(LT)MOH Call Ignore List (MOH = Modem On Hold)[/font]
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