Screensavers With XNA and .NET? - Stack Overflow most recent 30 from stackoverflow.com2010-03-18T19:46:05Zhttp://stackoverflow.com/feeds/question/1365906http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1365906/screensavers-with-xna-and-net5Screensavers With XNA and .NET?RCIXhttp://stackoverflow.com/users/1170692009-09-02T05:00:22Z2010-01-21T15:08:20Z
<p>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?</p>
http://stackoverflow.com/questions/1365906/screensavers-with-xna-and-net/1365910#13659107Answer by silky for Screensavers With XNA and .NET?silkyhttp://stackoverflow.com/users/1541522009-09-02T05:02:12Z2009-09-02T05:02:12Z<p>A screensaver is just an executable named that has been renamed '.scr' :) So yes, you can make one in whatever language you like, pretty much.</p>
http://stackoverflow.com/questions/1365906/screensavers-with-xna-and-net/1438307#14383072Answer by mikej for Screensavers With XNA and .NET?mikejhttp://stackoverflow.com/users/1385122009-09-17T11:37:13Z2009-09-17T11:37:13Z<p>For a simple tutorial try <a href="http://www.i-programmer.info/projects/38-windows/350-useful-screensavers.html" rel="nofollow">Useful screensavers </a> which also explains how to do the preview mode which is generally left out of any accounts</p>
http://stackoverflow.com/questions/1365906/screensavers-with-xna-and-net/1847670#18476702Answer by Christian for Screensavers With XNA and .NET?Christianhttp://stackoverflow.com/users/541932009-12-04T15:25:17Z2009-12-04T15:25:17Z<p>Here's a nice and small tutorial that explains how to create a <a href="http://www.harding.edu/fmccown/screensaver/screensaver.html" rel="nofollow">screensaver with C#</a>.</p>
<p>As already mentioned, a screensaver is just an executable with an <code>.scr</code> file extension instead of <code>.exe</code>. Additionally, if you want to create a useful screensaver, you <em>should</em> support these <a href="http://www.wischik.com/scr/howtoscr.html#CommandLineArguments" rel="nofollow">command-line arguments</a>:</p>
<p><code>/c</code>, <code>/c:HWND</code>, <code>/c HWND</code>: Configuration mode where <code>HWND</code> is the handle to the window that should be used as the parent.<br />
<code>/p</code>, <code>/p HWND</code>: Preview mode where <code>HWND</code> is the handle to the parent window.<br />
<code>/s</code>: Run in full-screen mode</p>
http://stackoverflow.com/questions/1365906/screensavers-with-xna-and-net/1977667#19776672Answer by Rhys Jones for Screensavers With XNA and .NET?Rhys Joneshttp://stackoverflow.com/users/166432009-12-29T23:54:50Z2009-12-29T23:54:50Z<p>James O'Meara has created a nice XNA Screensaver Starter Kit which is a great resource for learning how to create a screensaver with XNA. Detail including the downloads are in the XNA forum <a href="http://forums.xna.com/forums/t/254.aspx" rel="nofollow">here</a>. I recommend reading the comments too, as there are some good tips on how to show the screensaver in the preview window also. </p>
http://stackoverflow.com/questions/1365906/screensavers-with-xna-and-net/1991937#19919372Answer by Christian Madsen for Screensavers With XNA and .NET?Christian Madsenhttp://stackoverflow.com/users/2419302010-01-02T15:49:16Z2010-01-03T18:48:30Z<p>Today, I have posted an updated starter kit at the XNA forum <a href="http://forums.xna.com/forums/p/254/269045.aspx#269045" rel="nofollow">here</a>. The update consists of XNA GS 3.1 support, working preview and modal configuration dialog.</p>
<p>Tonight, I will write an article describing the different aspects here: <a href="http://doktormadsen.dk/wp/xna-screensaver-kit/" rel="nofollow">http://doktormadsen.dk/wp/xna-screensaver-kit/</a>.</p>
<p>Update: the article is now drafted and comments are very welcome.</p>
http://stackoverflow.com/questions/1365906/screensavers-with-xna-and-net/2110207#21102070Answer by Nanook for Screensavers With XNA and .NET?Nanookhttp://stackoverflow.com/users/1269992010-01-21T15:08:20Z2010-01-21T15:08:20Z<p>There is an XNA 3.1 screen saver kit on the second page of this thread.</p>
<p><a href="http://forums.xna.com/forums/t/254.aspx" rel="nofollow">http://forums.xna.com/forums/t/254.aspx</a></p>