Hi Guys, Thanks for posting your screensaver script -- it's great! I'm not able to install fonts on the work computer, but the "Symbol" font makes it look pretty cool. The computer at work isn't very fast, so I'm not seeing the strings of symbols waterfalling down the screen like the movie, but it still has at least a nice basic Matrix effect. ___________ There's a problem with the script. It's in the section where you're trying to do the preview. You put the following code inside a loop: While Not WinActive("[CLASS:#32770]", $SSP_Text)
Run("rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1")
If @error Then Return SetError(1)
Sleep(1)
WEndYikes! That tells the system to open window after window of the windows screensaver tab -- crashes the computer! You'd be better off doing something like this: Run("rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1")
While Not WinActive("[CLASS:#32770]", $SSP_Text)
If @error Then Return SetError(1)
Sleep(1)
WEndAt least it won't crash the computer. Also, there's a problem in this line: Local $sChooseColor = _ChooseColor(2, $sSetColor, 2, $GUI)There's one too many parameters... It should probably be: Local $sChooseColor = _ChooseColor(2, $sSetColor, 2)Was the $GUI needed for something? The preview doesn't seem to work on the XP computers I've tried this screensaver on... have you come up with a fix? Thanks!