Jump to content

screen save settings


Recommended Posts

For the Windows XP Marquee screen saver, you have to change the right registry value:

;backup old text to clipboard just in case....
ClipPut(RegRead("HKEY_CURRENT_USER\Control Panel\Screen Saver.Marquee", "Text"))

;Set new text
RegWrite("HKEY_CURRENT_USER\Control Panel\Screen Saver.Marquee", "Text", "REG_SZ", "Your Text Goes Here!")

;test out the changes
Run("ssmarque.scr /S")
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Link to comment
Share on other sites

I think this will work. If not, then customize the screensaver and run regedit to look at the settings.

$key = "HKEY_CURRENT_USER\Software\Microsoft\Screensavers\Text3D"
RegWrite($key, "DisplayTime", "REG_DWORD", 0)
RegWrite($key, "DisplayString", "REG_SZ", "text")
RegWrite($key, "RotationStyle", "REG_DWORD", 2)
RegWrite($key, "SurfaceType", "REG_DWORD", 0)
RegWrite($key, "SurfaceColor", "REG_DWORD", 0x0000FF)

Edited by CyberSlug
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Link to comment
Share on other sites

  • 1 year later...

I have a question about screensaver settings, but not the settings for a specific screensaver.

I'm trying to change the Wait Time in the screensaver settings. I can easily do this in the registry (HKCU\Control Panel\desktop, ScreenSaveTimeOut), but I'm having trouble actually getting Windows to realize this change has come about.

I looked into another thread about refreshing the desktop wallpaper, thinking it would refresh the whole profile... but I was wrong (I found and tried this: "RunDll32.exe USER32.DLL,UpdatePerUserSystemParameters ,1 ,True", it did not work)

Any ideas?

*Edit: Spacing.

Edited by Saunders
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...