I wonder if there's a way
A viewer for Screen Savers
Saturday, January 5, 2008 by Philly0381 | Discussion: OS Customization
This got me to thinking about how the Vista folks have dreams to enjoy and I started to think how us XP people, and for that fact everyone, might enjoy Screen Savers a little more and use them in a different way.
I kept thinking about the picture frame widgets/objects that allow you to view pictures or wallpapers. Now if there such a widget/object that would allow you to do the same with Screen Savers, Mmmmmm. Could change the look of a desktop.
Now I haven't tried one of the picture frame widgets to see if it would work. Didn't want to be disappointed and if it was an option I think someone would have used it by now.
So folks, what do you think? Is it something that could be done? Is there a viewer that is already out there? Yeah I imagine it would eat up some resources or would it?
Feel free to run with this if you like. I'm not a person who would even come close to trying this. If someone can make something that would do this with maybe Stardock would be interested.
Reply #2 Saturday, January 5, 2008 1:20 PM
Good idea.
You could set up a widget frame to use avi providing it was lightweight. I think though whatever you tried the drain on resources would be heavy. XP isn't set up to channel stuff like this through the graphics card the way Vista is. That is what made Dreams possible and all the other nice things Vista is capable of.
Would be nice if someone could get it to work without eating resources though.
Reply #3 Saturday, January 5, 2008 1:20 PM
Is this where we put a call out for RomanDA?
Reply #4 Saturday, January 5, 2008 1:33 PM
I don't see why it can't be done. Imagine if you could run several of these. Hmmm...
Reply #6 Saturday, January 5, 2008 8:29 PM
I don't think it can run an *.scr in a window.
Reply #7 Saturday, January 5, 2008 11:31 PM
Could be the answer is something other than using DX.
It maybe that it can't be done, or just the way to write the code to do it hasn't jumped out at anyone yet.
Ah, I'm just a user of the software, you smart guys are going to have to help here.
At any rate it would be nice to be able to run a screen saver on top of your desktop within a sizable viewer, someday.
Reply #8 Thursday, January 10, 2008 12:45 PM
If I found animated wallpapers, would they play or work using the current DesktopX Picture Frame Widgets?
Reply #9 Thursday, January 10, 2008 2:23 PM
If one has a slideshow widget or object then in the script one can easily change the timer, means if one has a sequence of images which one want to run as an animation or something like that then setting the timer to lower value will be OK. If one wants the animations to be as a wallpaper than setting the object to the desktop level is fine and if one wants to run it as screensaver then set the object as always on top and following this script with some enhancement will do this..
Dim ocx, ocy, Xtime
Sub Object_OnScriptEnter
ocx = system.cursorx 'old cursor positions
ocy = system.cursory
Object.SetTimer 1, Xtime/1000 'Xtime is the time in seconds you want for the screensaver to pop up
End Sub
Sub Object_OnTimer1
If system.cursorX = ocx and system.cursorY = ocy then 'means the cursor positions remains same and the mouse is idle
Object.visible = true ' if you want some other object which is a flash or a video then just alter the name of the object.
Object.SetTimer 2, 100
Object.killtimer 1
End If
ocx = system.cursorX ' again setting the positions so that timer will examine them in next cycle
ocy = system.cursorY
End Sub
Sub Object_OnTimer2
If system.cursorX = ocx and system.cursorY = ocy then
'do nothing
else ' means the mouse has moved and isnt idle
object.visible = false
Object.killtimer 2
Object.SetTimer 1, Xtime/1000
End If
ocx = system.cursorx 'Resetting the positions again
ocy = system.cursory
End Sub
You can just replace the object.visible = true to resizing object to system.ScreenX and object.visble=false to a specific size which you want it to be when screensaver is off or you just have a resizer object or right click menu.
I m not pretty sure about the script because I havent tested it. The idea just popped up in my mind when i saw the question. There may be some other ideas but the basis will be same.
If I will get this correctly done then I will surely add the picture slideshow screensaver in my wallchanger which is in progress..
Reply #10 Thursday, January 10, 2008 6:36 PM
Please login to comment and/or vote for this skin.
Welcome Guest! Please take the time to register with us.
There are many great features available to you once you register, including:
- Richer content, access to many features that are disabled for guests like commenting on the forums and downloading skins.
- Access to a great community, with a massive database of many, many areas of interest.
- Access to contests & subscription offers like exclusive emails.
- It's simple, and FREE!







Reply #1 Saturday, January 5, 2008 1:17 PM