screensaver

pushing screen saver as wallpaper

var ScreenSaver:String; var handle:HWND; begin Handle := FindWindow('Progman', 'Program Manager'); Handle := FindWindowEx(Handle, 0, 'SHELLDLL_DefView', 0); Handle := FindWindowEx(Handle, 0,'SysListView32', 'FolderView'); ScreenSaver := 'C:\windows\system32\Mystify.scr /P' + InttoStr( Handle ); WinExec(pAnsichar(screensaver), SW_SHOWNor...

C#: How would you organize a screen saver in the file system?

I am planning to create a screen saver. Thinking of trying out some WPF as well. Anyways, I am not quite sure how I would organize the screen saver on disk in the file system. I have mainly two related issues that I am very uncertain on how to solve: Normally an application lives, with all its 3rd party assemblies, static resources, im...

C#: Retrieve Names of Installed Screen Savers

I want to be able to show basically the same list that the Windows Screen Saver dialog shows, with the name of each screen saver. The problem I've run into however is that the names that show up in the drop down list on the dialog don't seem to correspond to the filename, embedded file information, anything in the registry, etc. For ex...

Screensavers With XNA and .NET?

I'm fairly sure you can create screensavers with.NET but are there any tutorials on doing so? and how well can you make XNA screensavers? ...

How can I create a screensaver with a password from a Flash/projector file?

I have an projector file/Flash application that I need to turn into an interactive screen saver. I cannot make an actual screen saver of course because screen savers cannot be interacted with. I need this to be password protected and I need to keep it from being closed. I need to disable any combinations of keys which would cause it to ...

Good way to store settings for an XNA screensaver?

What's the best way to store settings for a screensaver that happens to use XNA? i'm thinking of using a .settings file but i'm unsure how to read that from my XNA code... ...

How can I detect if the screen is locked or screensaver is active from the Terminal in OS X 10.6?

Due to the new limitations of Kerberos in OS X 10.6, I'm working on a script that offers similar functionality to what used to be available in 10.5. Essentially it parses the klist output to see if your ticket is expiring and displays how long until it expires. If we hit the 10 minute mark, it calls kinit to do a GUI password prompt to...

mac screensaver start event

Is there an event fired when screensaver starts? Like for keychain locking: OSStatus keychain_locked(SecKeychainEvent keychainEvent, SecKeychainCallbackInfo *info, void *context){...} ...

How to turn screensaver on (windows 7) by a code (in cmd)?

How to turn screensaver on (windows 7) by a code (in cmd)? ...

Screensaver in C++ with fading image

How can I make a screensaver in C++ that fades an image in and out at random places on the screen with a specified time delay on the fade out? Multimonitor support would be awesome. If you have a working code or know where I can get it, it would be great. Otherwise point me in the right direction. I'm looking for a method that has a sm...

LaunchAgent - Is there something like RunAtScreenSaver?

Hi, I am looking for a way to execute my app (it's a background task) at times, where the machine is "idle". A good incident would be when the screensaver launches. I already read the manual auf launchd and already use a LaunchAgent to lauch my app at certain intervals, but I found nothing that might help me launching my app when the sc...

Screensaver: Draw in front of the lockscreen

I need to build a screensaver which simply draws a picture and displays some information around it. That all isn't any problem. The problem is that I would like to lock the screen, which I do with the API-Call Private Declare Function LockWorkStation Lib "user32.dll" () As Long Call LockWorkStation() and in fact have my screensaver d...

Customizing Setup project for Screen Saver

Hi, I've created Screen saver in C#.Net. How can I customize my Setup project to do the following: 1) Create .scr file from .exe file 2) Save .scr file into System32 folder 3) At the end of installation, open Display properties dialog box and select my Screen saver ...

How does screen savers work on Mac OS X and Linux?

In Windows a screen saver is just an executable with a .scr extension dumped in the system32, and it is controlled with three switches (/p, /c and /s, I think). How does screen savers work on Mac OS X and Linux? Do they work similarly in Mac OS X and Linux (Gnome, KDE, Ubuntu, or wherever the difference is) or is it completely different...

Basic animation in Java for a screensaver app of sorts

I was assigned to make an animated screensaver as a programming project for my Advanced Programming course. The objective is to have several moving components inside an undecorated, fullscreen frame, but I'm going step-by-step and doing it one component at a time. Here's my source code so far: http://pastebin.com/dc722188 Feel free to...

Enable ScreenSaver after other applications turn it off

I have several applications that seem to turn off the screensaver and the powersave mode of the video card (eg Skype, VLC, mplayer, etc). Sometimes, these applications crash and the monitor is just on all the time until I reboot. Is there a simple API call to turn on the screensaver and powersave mode again? ...

How does one run screensaver within Windows Form as background for it?

How does one run screensaver within Windows Form as background for it? User also can interact with form controls while screensaver running. [Why this?] We have a case which we need to run Windows Bubbles screensaver while user can continue interacting with form controls? ...

Screensaver to cycle through webpages?

Hi, Does anyone have any suggestions for how to create a screensaver that can cycle through some webpages? I would like to create a screensaver that displays various dashboard and statistics pages that are available in our Hudson CI server. This is a windows machine, with firefox and IE available. Extra bonus points if I can do it in...

Redirecting Command-line Arguments for Bootstrapping

I am trying to rewrite the following program in C instead of C# (which is less portable). It is obvious that "int system ( const char * command )" will be necessary to complete the program. Starting it with "int main ( int argc, char * argv[] )" will allow getting the command-line arguments, but there is still a problem that is difficult...

Windows 7 and SPI_GETSCREENSAVERSECURE

I'm having a problem with the SystemParametersInfo API in C#. I have no problem getting the screensaver timeout, but when I try to get the state of the "On resume display logon screen" checkbox I always get false. [DllImport("user32.dll", EntryPoint = "SystemParametersInfo")] private static extern bool SystemParametersInfo(uint uiAction...