<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>splash-screen &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/splash-screen/</link>
	<description>Feed of posts on WordPress.com tagged "splash-screen"</description>
	<pubDate>Wed, 23 Dec 2009 20:15:05 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Create splash screen WPF]]></title>
<link>http://dotnetit.wordpress.com/2009/12/04/create-splash-screen-wpf/</link>
<pubDate>Fri, 04 Dec 2009 14:05:31 +0000</pubDate>
<dc:creator>dotnetit</dc:creator>
<guid>http://dotnetit.wordpress.com/2009/12/04/create-splash-screen-wpf/</guid>
<description><![CDATA[This article describes how to create a simple splash screen for your WPF application. The class we w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This article describes how to create a simple splash screen for your WPF application.</p>
<p>The class we will be using is System.Windows.SplashScreen. Make sure you have the image you need added in your project.</p>
<p>How to do it:</p>
<blockquote>
<div id="_mcePaste" style="padding-left:30px;">SplashScreen sp = new SplashScreen(&#8220;splashscreen.jpg&#8221;);</div>
<div id="_mcePaste" style="padding-left:30px;">sp.Show(false);//Displays the splash screen. The boolean value is used to instruct the splash screen whether to close automatically or not.</div>
<div id="_mcePaste" style="padding-left:30px;">Thread.Sleep(3000); //Just to make sure you can get a good look at it.</div>
<div id="_mcePaste" style="padding-left:30px;">sp.Close(new TimeSpan(0,0,3)); //Specify how long it will take for the splash screen to fade after the Close operation has been called.</div>
</blockquote>
<p>That&#8217;s it!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Creating a Splash Screen]]></title>
<link>http://dotnetit.wordpress.com/2009/12/01/creating-a-splash-screen/</link>
<pubDate>Tue, 01 Dec 2009 19:19:44 +0000</pubDate>
<dc:creator>sciencefactor</dc:creator>
<guid>http://dotnetit.wordpress.com/2009/12/01/creating-a-splash-screen/</guid>
<description><![CDATA[This article will describe a quick and easy way to insert a splash screen into your application proj]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This article will describe a quick and easy way to insert a splash screen into your application project.</p>
<p>If you already have your application project created then please feel free to skip this step. Create a new project in Visual Studio by selecting File-&#62;New-&#62;Project-&#62;Visual C#-&#62;Windows Forms Application. In the form that appeared fill in the name of your application, if you&#8217;re planning to just try this tutorial as a demo i would say a suggestive name like &#8220;SplashScreenDemo&#8221;. After this, choose the folder in which the application will be saved.</p>
<p>Any Windows Forms Application (Winform) starts with a form named Form1. You will need to add a second form in order to perform the splash screen action. Go to your Solution Explorer-&#62;right click on your Project Name-&#62;Add-&#62;Windows Form.. In the form that appears fill in the name for your splash screen. I would again suggest a name like &#8220;SplashScreen&#8221;. Let&#8217;s get our hands through this form&#8217;s properties. You can do this by right clicking your SplashScreen form in designer view and choosing Properties:</p>
<ul>
<li>BackColor: please change this color to any opaque color. I chose White;</li>
<li>BackgroundImage: here you should insert the image you want to appear as a splash screen. I suggest you use a PNG since it provides support for transparency (If not, please retake the previous step and change the BackColor to the image&#8217;s background color.);</li>
<li>FormBorderStyle: none;</li>
<li>StartPosition: CenterScreen;</li>
<li>ShowInTaskbar: False;</li>
<li>TransparencyKey: Transparent.</li>
</ul>
<p>Ok. We have the elements we need to start this short and easy demo.</p>
<p>First, let&#8217;s go to Form1() constructor. You can do this by going to your Form1 designer-&#62;right click-&#62;Show source. Right after the InitializeComponent() method add the following code:</p>
<blockquote>
<p style="padding-left:30px;">﻿Thread splashThread = new Thread(new ThreadStart(ShowSplash));</p>
<p>splashThread.Start();</p>
<div id="_mcePaste" style="padding-left:30px;">Thread.Sleep(2000);</div>
<p>splashThread.Abort();</p></blockquote>
<div>Here you create a new thread that will actually be responsible with showing the splash screen. You tell the thread to start to perform its actions while telling the main Thread to sleep for a little while &#8211; enough time to show your splash screen. Of course, instead of sending it to sleep you could perform the calculus you need to be finished when the splash screen is gone but I won&#8217;t get into these details. I chose to send the main Thread to sleep for 2000 milliseconds which translates to 2 seconds.  After this well deserved sleep, the splash screen is shut down via the Abort() method. This method will close the splashThread and therefore the image will stop showing.</div>
<div>Next, you&#8217;ll have to add the ShowSplash method. There are many ways for doing this but really I will show you the simplest one:</div>
<div>
<blockquote>
<div style="padding-left:30px;">private void ShowSplash()</div>
<div style="padding-left:30px;">{</div>
<div style="padding-left:30px;">SplashScreen sp = new SplashScreen();</div>
<div style="padding-left:30px;">sp.ShowDialog();</div>
<div style="padding-left:30px;">}</div>
</blockquote>
<div>This method simply creates an object representing your SplashScreen form and will invoke the ShowDialog() method to start showing your splash screen image.</div>
<div>One more peace of code and you&#8217;re done. Go to SplashScreen() constructor in the way I described above for Form1(). Add this peace:</div>
<div>
<blockquote>
<div style="padding-left:30px;">Bitmap imageCopy = new Bitmap(this.BackgroundImage);</div>
<div style="padding-left:30px;">imageCopy.MakeTransparent(imageCopy.GetPixel(10,10));</div>
<div style="padding-left:30px;">this.BackgroundImage=imageCopy;</div>
</blockquote>
<div>What is happening here is that a copy of the form&#8217;s background is created and then by invoking the MakeTransparent method you tell it to find which color is at the coordinates you introduce and then to make this color transparent for the entire image. After this the copy will take the place of the initial background image.</div>
</div>
<div></div>
<div>That&#8217;s it! Congrats!</div>
</div>
<div></div>
<div>Here is what i got:</div>
<div><a href="http://dotnetit.wordpress.com/files/2009/12/untitled1.png"><img class="aligncenter size-medium wp-image-23" title="My Color Splash Screen" src="http://dotnetit.wordpress.com/files/2009/12/untitled1.png?w=300" alt="" width="300" height="255" /></a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Splish Splash]]></title>
<link>http://100percentlinux.wordpress.com/2009/11/19/splish-splash/</link>
<pubDate>Thu, 19 Nov 2009 19:53:30 +0000</pubDate>
<dc:creator>John</dc:creator>
<guid>http://100percentlinux.wordpress.com/2009/11/19/splish-splash/</guid>
<description><![CDATA[I love shiny boot sequences. Although seeing every service start in plain text is pretty cool, I als]]></description>
<content:encoded><![CDATA[I love shiny boot sequences. Although seeing every service start in plain text is pretty cool, I als]]></content:encoded>
</item>
<item>
<title><![CDATA[Hypnotizing Silverlight Splash Screen]]></title>
<link>http://crocusgirl.wordpress.com/2009/11/10/hypnotizing-silverlight-splash-screen/</link>
<pubDate>Tue, 10 Nov 2009 23:13:19 +0000</pubDate>
<dc:creator>crocusgirl</dc:creator>
<guid>http://crocusgirl.wordpress.com/2009/11/10/hypnotizing-silverlight-splash-screen/</guid>
<description><![CDATA[I wanted to test the Adobe Photoshop (PSD) File import feature in Expression Blend3 for a while now ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">I wanted to test the Adobe Photoshop (PSD) File import feature in Expression Blend3 for a while now and it  just worked flawlessly.  So I decided to take my plan one step further and create a sample Splash screen with my illustration files. You can find the final result by clicking on the image:</p>
<p style="text-align:center;"> </p>
<p style="text-align:center;"><a title="Blinking Belle" href="http://www.crocusgirl.com/splash" target="_blank"><img title="blinkingbelle" src="http://crocusgirl.wordpress.com/files/2009/11/blinkingbelle.jpg?w=1024" alt="blinkingbelle" width="469" height="286" /></a></p>
<p style="text-align:justify;"> </p>
<p style="text-align:justify;">In order to observe the loading experience and get a chance to test a simple animation, I included two sample video files in the project. Therefore the initial loading is incredibly slow. The animation has no complicated tricks; it only manipulates the opacity property and runs forever in autoreverse mode. <em>Actually it runs until you are hypnotized by all the blinking!</em></p>
<p style="text-align:justify;"> </p>
<p style="text-align:justify;">As for the progress bar, I basically used the same idea explained in the &#8220;<strong><a title="Splash Screen in Silverlight 3" href="http://www.c-sharpcorner.com/UploadFile/dpatra/SplashScreenInSilverlight3Application07282009135404PM/SplashScreenInSilverlight3Application.aspx" target="_blank">Splash Screen in Silverlight 3</a></strong>&#8220;  article by  Diptimaya Patra. I track the download progress with a &#8220;<strong>onSourceDownloadProgressChanged</strong>&#8221; Javascript function and increase the size of the colored content based on the progress percentage.</p>
<p style="text-align:justify;"><strong> </strong></p>
<p><strong>A few tips+tricks</strong></p>
<p><strong>Splash Screen &#8211; Design </strong></p>
<p style="text-align:justify;">Your Splashscreen Xaml will be placed in your Web project folder, which will make it  available for display while your Silverlight app is downloading (loading). But once you try to open that file in Blend to do some fixes, you will discover that you don&#8217;t have the option to display it in <strong>design mode</strong>. In fact, while playing around with the animation, I copied my Splash screen Xaml file back and forth between the Web and Silverlight project folders. Not very practial, yet it works.</p>
<p><strong>File Paths</strong></p>
<p style="text-align:justify;">The blinking belle is made up of several illustrations. When I placed the splash screen Xaml in my Web project folder, I had to reset the images&#8217; source info and point the file path to the Web project folder.</p>
<p style="text-align:justify;"><strong>Browser Cache</strong></p>
<p style="text-align:justify;">Despite enlarging the project file to test the splash screen,  it is sometimes necessary to clear the browser cache. In fact, once the content is cached by the browser, the slow loading experience might completely disappear.</p>
<p><strong>Event Triggers</strong></p>
<p style="text-align:justify;">When you create an animation Storyboard through the <strong>Objects and Timeline</strong> panel in Expression Blend 3, the Storyboard will be placed as a resource in your Container (Grid/Canvas etc.). Since there is no option to start the Storyboard explicitly (except with Javascript), the Storyboard has to be attached to an object  with an <strong>event trigger</strong>. In this particular example, once the Grid is loaded the event trigger starts the animation:</p>
<pre style="text-align:justify;">&#60;Grid.Triggers&#62;
&#60;EventTrigger RoutedEvent="Grid.Loaded"&#62;
    &#60;BeginStoryboard&#62;
      &#60;Storyboard x:Name="Storyboard1" RepeatBehavior="Forever" AutoReverse="True"&#62;
        ........
        ........
        {ANIMATION Definitions}
        .......
        ........
      &#60;/Storyboard&#62;
    &#60;/BeginStoryboard&#62;
&#60;/EventTrigger&#62;
&#60;/Grid.Triggers&#62;</pre>
<p>For further information on Silverlight Splash Screen scenarios and displaying animations, check out the<a title="Splash Screen scenarios" href="http://msdn.microsoft.com/en-us/library/cc838130(VS.95).aspx#splash_screen_scenarios_in_detail" target="_blank"> Splash screen articles </a>in the MSDN library.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tutorial Splash Screen di WordPress]]></title>
<link>http://alfrenius.wordpress.com/2009/10/27/tutorial-splash-screen-di-wordpress/</link>
<pubDate>Tue, 27 Oct 2009 07:15:09 +0000</pubDate>
<dc:creator>andi</dc:creator>
<guid>http://alfrenius.wordpress.com/2009/10/27/tutorial-splash-screen-di-wordpress/</guid>
<description><![CDATA[credit to Zoel Membuat splash screen, welcome page, intro, cover website, halaman muka, atau apapun ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>credit to <a href="http://lunjap.wordpress.com/2009/06/08/tutorial-membuat-splash-screen-halaman-intro-di-blog-wordpress/">Zoel</a></p>
<p>Membuat splash screen, welcome page, intro, cover website, halaman muka, atau  apapun istilahnya yang lain relatif mudah, tetapi karena menjadi tampilan  pertama ketika pengunjung melihat website atau blog kita, splash screen menjadi  sulit karena harus memenuhi syarat informatif dan eksklusif, baik dari segi  konten, tampilan (desain layout) dan isi yang terkandung di dalamnya. Umumnya  splash screen dibuat untuk mempromosikan produk terbaru, headline berita,  event-event penting, dan hal-hal menarik lainnya.</p>
<p><img src="http://zoel.ucoz.com/images/splashmu070609.jpg" alt="" border="1" height="311" width="500"><br />
<strong>Tampilan splash screen website resmi <a href="http://manutd.com/" target="_blank"> Manchester United</a></strong></p>
<p><span id="more-1131"></span><br />
Splash screen pun bisa ditampilkan bagi blogger yang menggunakan <a href="http://wordpress.org/" target="_blank">WordPress</a> sebagai CMS-nya, tentu dengan blog hosting sendiri, bukan di <a href="http://wordpress.com/" target="_blank">WP.com</a></p>
<p><img src="http://ongisnade.ucoz.net/images1/sson1111.jpg" alt="" border="1" height="320" width="500"><br />
<strong>Tampilan splash website <a href="http://ongisnade.net/" target="_blank">Ongisnade.net</a> (versi lama)</strong></p>
<p>Berikut langkah-langkah membuat splash screen atau welcome page pada blog  WordPress, cara ini saya gunakan pada website <a href="http://ongisnade.net/">Ongisnade.net</a> versi lama.</p>
<p><strong>Langkah 1</strong><br />
Buat halaman splash terlebih dulu. Konsep desain, layout, link, hingga CSS atau  PHP-nya anda atur sendiri sesuai kebutuhan. Simpan sebagai file home.php (atau  home.html)</p>
<p><strong>Langkah 2</strong><br />
Upload ke root direktori www anda</p>
<p><strong>Langkah 3</strong><br />
Edit .htaccess yang terdapat pada root direktori</p>
<pre class="brush: php;">DirectoryIndex home.php index.php
&#60;IfModule mod_rewrite.c&#62;
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
&#60;/IfModule&#62;
</pre>
<p>Selesai…</p>
<p>Sekarang, coba akses atau enter alamat URL anda, misal www.namaanda.com, dan  lihat perubahannya. Mudah bukan? Website anda pun menjadi seperti website <a href="http://manutd.com/" target="_blank">Manchester United</a> atau <a href="http://ongisnade.net/" target="_blank">Ongisnade</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CD-Cover von (K)Ubuntu 9.10]]></title>
<link>http://ubuntulinuxfreak.wordpress.com/2009/10/22/cd-cover-von-kubuntu-9-10/</link>
<pubDate>Thu, 22 Oct 2009 11:19:56 +0000</pubDate>
<dc:creator>Freax</dc:creator>
<guid>http://ubuntulinuxfreak.wordpress.com/2009/10/22/cd-cover-von-kubuntu-9-10/</guid>
<description><![CDATA[Die CD-Cover von (K)Ubuntu 9.10 sind da: Ubuntu 9.10 Ubuntu Server Edition 9.10 Kubuntu 9.10 Ich fin]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Die CD-Cover von (K)Ubuntu 9.10 sind da:</p>
<div>
<div><img style="border:0 none;margin:5px;" title=" Ubuntu 9.10 © Canonical" src="http://shop.canonical.com/images/m/ubuntu%201.jpg" border="0" alt="Ubuntu 9.10 Desktop Edition CD" hspace="5" vspace="5" width="210" height="210" /></div>
<div>Ubuntu 9.10<a href="void(0)"><br />
</a></div>
<p><a href="void(0)"></a></p>
<div><img style="border:0 none;margin:5px;" title=" Ubuntu 9.10 Server © Canonical" src="http://shop.canonical.com/images/m/server%20edition.jpg" border="0" alt="Ubuntu 9.10 Server Edition CD" hspace="5" vspace="5" width="210" height="210" /></div>
</div>
<div>Ubuntu Server Edition 9.10</div>
<div><img style="border:0 none;margin:5px;" title=" Kubuntu 9.10 © Canonical" src="http://shop.canonical.com/images/m/kubuntu1.jpg" border="0" alt="Kubuntu 9.10 Desktop Edition CD" hspace="5" vspace="5" width="210" height="210" /></div>
<div>Kubuntu 9.10</div>
<div>Ich find&#8217; die neuen CDs wirklich sehr schick, auch wenn es schöner gewesen wäre, wenn die CDs so ähnlich wie der neue Splash Screen aussehen würden:</div>
<div><img src="https://wiki.ubuntu.com/Artwork/Incoming/Karmic/Boot/Demo?action=AttachFile&#38;do=get&#38;target=xsplash-3.png" alt="https://wiki.ubuntu.com/Artwork/Incoming/Karmic/Boot/Demo?action=AttachFile&#38;do=get&#38;target=xsplash-3.png" width="369" height="273" /></div>
<p><img src="///tmp/moz-screenshot.jpg" alt="" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rendere Ubuntu più "Figo" in mezz'ora (circa)]]></title>
<link>http://mito94.wordpress.com/2009/08/29/rendere-ubuntu-piu-figo-in-mezzora-circa/</link>
<pubDate>Sat, 29 Aug 2009 14:54:41 +0000</pubDate>
<dc:creator>mito94</dc:creator>
<guid>http://mito94.wordpress.com/2009/08/29/rendere-ubuntu-piu-figo-in-mezzora-circa/</guid>
<description><![CDATA[I temi di default di Ubuntu proprio non li sopportate? Volete qualcosa che faccia colpo sui vostri a]]></description>
<content:encoded><![CDATA[I temi di default di Ubuntu proprio non li sopportate? Volete qualcosa che faccia colpo sui vostri a]]></content:encoded>
</item>
<item>
<title><![CDATA[Crea tu Splash Screen para KDE 4 por tí mismo =D]]></title>
<link>http://elblogdemaritocares.wordpress.com/2009/08/13/crea-tu-splash-screen-para-kde-4-por-ti-mismo-d/</link>
<pubDate>Thu, 13 Aug 2009 13:54:28 +0000</pubDate>
<dc:creator>Mario Cares</dc:creator>
<guid>http://elblogdemaritocares.wordpress.com/2009/08/13/crea-tu-splash-screen-para-kde-4-por-ti-mismo-d/</guid>
<description><![CDATA[En la entrada anterior, aprendieron a crear sus propios Fondos para el Grub. Siguiendo con la ]]></description>
<content:encoded><![CDATA[En la entrada anterior, aprendieron a crear sus propios Fondos para el Grub. Siguiendo con la ]]></content:encoded>
</item>
<item>
<title><![CDATA[AVIRA ANTIVIR: Disabilitare lo splash-screen all’avvio]]></title>
<link>http://zirconet.wordpress.com/2009/08/06/antivir-disabilitare-lo-splash-screen-all%e2%80%99avvio/</link>
<pubDate>Wed, 05 Aug 2009 23:39:14 +0000</pubDate>
<dc:creator>zirconet</dc:creator>
<guid>http://zirconet.wordpress.com/2009/08/06/antivir-disabilitare-lo-splash-screen-all%e2%80%99avvio/</guid>
<description><![CDATA[Altro indubbio elemento di fastidio (se pur lieve) nell’utilizzare Avira AntiVir come antivirus è si]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><strong><a href="http://zirconet.wordpress.com/files/2009/04/avira.jpg"><img class="alignright size-medium wp-image-1330" title="avira" src="http://zirconet.wordpress.com/files/2009/04/avira.jpg?w=300" alt="avira" width="300" height="75" /></a>Altro indubbio elemento di fastidio </strong>(se pur lieve) nell’utilizzare <strong>Avira AntiVir </strong>come antivirus è sicuramente quello dello splash-screen all’avvio, vale a dire la comparsa ad ogni accensione del PC della finestrella con il <strong>logo</strong> del programma.</p>
<p style="text-align:justify;">Come facilmente prevedibile, anche qui c’è un modo molto semplice per<strong> aggirare l’ostacolo</strong>:</p>
<p style="text-align:justify;"><!--more--></p>
<p><strong>&#62; </strong><strong>Andare </strong>in start &#62; esegui…</p>
<p><strong>&#62; </strong><strong>Digitare </strong><strong><span style="color:#008000;">regedit </span></strong>e premere il tasto Invio</p>
<p><strong>&#62; </strong><strong>Andare </strong>in <span style="color:#008000;"><strong>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run</strong></span></p>
<p><strong>&#62; </strong><strong>Fare </strong>doppio click sulla chiave avgnt</p>
<p><strong>&#62; </strong><strong>Aggiungere </strong><strong><span style="color:#008000;">/nosplash</span></strong> al termine del percorso pre-esistente  (ottenendo quindi una stringa simile a “C:\Program Files\Avira\AntiVir PersonalEdition Classic\avgnt.exe” /min /nosplash).</p>
<p style="text-align:justify;"><strong><strong>&#62; </strong> </strong><strong>Chiudere </strong>regedit</p>
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">via<a href="http://www.geekissimo.com/2008/04/24/come-rendere-meno-stressante-antivir-8/#more-5219"> Come rendere meno stressante AntiVir 8 &#8211; Geekissimo</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Splash Screen In Silverlight 3 Application]]></title>
<link>http://diptimayapatra.wordpress.com/2009/07/25/splash-screen-in-silverlight-3-application/</link>
<pubDate>Sat, 25 Jul 2009 10:25:08 +0000</pubDate>
<dc:creator>dpatra1982</dc:creator>
<guid>http://diptimayapatra.wordpress.com/2009/07/25/splash-screen-in-silverlight-3-application/</guid>
<description><![CDATA[Introduction In this article we will discuss about the Splash Screen in Silverlight 3. If a Silverli]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h1>Introduction<br />
</h1>
<p>In this article we will discuss about the Splash Screen in Silverlight 3.
</p>
<p>If a Silverlight application is small, it will be downloaded quickly and appear in the browser. If a Silverlight application is large, it may take a few seconds to download. As long as your application takes longer than 500 milliseconds to download, Silverlight will show an animated splash screen.
</p>
<p>Splash Screens can be used for the following purposes:
</p>
<ol>
<li>To show the Progress of downloading the xap file. (By Default)
</li>
<li>Copyright Information
</li>
<li>Custom Animation.
</li>
</ol>
<h1>Crating Silverlight Project<br />
</h1>
<p>Fire up Visual Studio 2008 and create a Silverlight Application. Name it as SplashScreenInSL3.
</p>
<p><img src="http://diptimayapatra.files.wordpress.com/2009/12/121709_1024_splashscree1.png">
	</p>
<p>The built in Splash Screen is not that exciting. It simply displays a ring of blinking circles and the percentage of the application that&#8217;s been downloaded so far.
</p>
<p>If you don&#8217;t like the stock splash screen, you can easily create your own. Essentially, a custom splash screen is a XAML file with the graphical content you want to display, and a dash of JavaScript code that updates the splash screen as the application is downloaded.
</p>
<p>Add a new XAML file to your ASP.NET website (not the Silverlight project).
</p>
<p>Choose the Silverlight JScript page template, enter a name, and click Add. This XAML file will hold the markup for your splash screen.
</p>
<p><img src="http://diptimayapatra.files.wordpress.com/2009/12/121709_1024_splashscree2.png">
	</p>
<p>Add the following xaml code into it.
</p>
<p><img src="http://diptimayapatra.files.wordpress.com/2009/12/121709_1024_splashscree3.png">
	</p>
<p>
 </p>
<p><span style="color:blue;font-size:10pt;">&#60;<span style="color:#a31515;">Grid<span style="color:blue;"><br />
					<span style="color:red;">xmlns<span style="color:blue;">=</span>&#8220;<span style="color:blue;">http://schemas.microsoft.com/client/2007</span>&#8220;<br />
</span></span></span></span></p>
<p><span style="color:blue;font-size:10pt;"><br />
			<span style="color:red;">xmlns:x<span style="color:blue;">=</span>&#8220;<span style="color:blue;">http://schemas.microsoft.com/winfx/2006/xaml</span>&#8220;<span style="color:blue;">&#62;<br />
</span></span></span></p>
<p><span style="color:blue;font-size:10pt;">  &#60;<span style="color:#a31515;">StackPanel<span style="color:blue;"><br />
					<span style="color:red;">VerticalAlignment<span style="color:blue;">=</span>&#8220;<span style="color:blue;">Center</span>&#8220;<span style="color:blue;">&#62;<br />
</span></span></span></span></span></p>
<p><span style="color:blue;font-size:10pt;">    &#60;<span style="color:#a31515;">Grid<span style="color:blue;">&#62;<br />
</span></span></span></p>
<p><span style="color:blue;font-size:10pt;">      &#60;<span style="color:#a31515;">Rectangle<span style="color:blue;"><br />
					<span style="color:red;">x:Name<span style="color:blue;">=</span>&#8220;<span style="color:blue;">progressBarBackground</span>&#8220;<span style="color:blue;"><br />
							<span style="color:red;">Fill<span style="color:blue;">=</span>&#8220;<span style="color:blue;">White</span>&#8220;<span style="color:blue;"><br />
									<span style="color:red;">Stroke<span style="color:blue;">=</span>&#8220;<span style="color:blue;">Black</span>&#8220;<span style="color:blue;"><br />
											<span style="color:red;">StrokeThickness<span style="color:blue;">=</span>&#8220;<span style="color:blue;">1</span>&#8220;<span style="color:blue;"><br />
													<span style="color:red;">Height<span style="color:blue;">=</span>&#8220;<span style="color:blue;">30</span>&#8220;<span style="color:blue;"><br />
															<span style="color:red;">Width<span style="color:blue;">=</span>&#8220;<span style="color:blue;">200</span>&#8220;<span style="color:blue;">&#62;&#60;/<span style="color:#a31515;">Rectangle<span style="color:blue;">&#62;<br />
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></p>
<p><span style="color:blue;font-size:10pt;">      &#60;<span style="color:#a31515;">Rectangle<span style="color:blue;"><br />
					<span style="color:red;">x:Name<span style="color:blue;">=</span>&#8220;<span style="color:blue;">progressBar</span>&#8220;<span style="color:blue;"><br />
							<span style="color:red;">Fill<span style="color:blue;">=</span>&#8220;<span style="color:blue;">Yellow</span>&#8220;<span style="color:blue;"><br />
									<span style="color:red;">Height<span style="color:blue;">=</span>&#8220;<span style="color:blue;">28</span>&#8220;<span style="color:blue;"><br />
											<span style="color:red;">Width<span style="color:blue;">=</span>&#8220;<span style="color:blue;">0</span>&#8220;<span style="color:blue;">&#62;&#60;/<span style="color:#a31515;">Rectangle<span style="color:blue;">&#62;<br />
</span></span></span></span></span></span></span></span></span></span></span></span></span></p>
<p><span style="color:blue;font-size:10pt;">    &#60;/<span style="color:#a31515;">Grid<span style="color:blue;">&#62;<br />
</span></span></span></p>
<p><span style="color:blue;font-size:10pt;">    &#60;<span style="color:#a31515;">TextBlock<span style="color:blue;"><br />
					<span style="color:red;">x:Name<span style="color:blue;">=</span>&#8220;<span style="color:blue;">progressText</span>&#8220;<span style="color:blue;"><br />
							<span style="color:red;">HorizontalAlignment<span style="color:blue;">=</span>&#8220;<span style="color:blue;">Center</span>&#8220;<span style="color:blue;"><br />
									<span style="color:red;">Text<span style="color:blue;">=</span>&#8220;<span style="color:blue;">0% downloaded &#8230;</span>&#8220;<span style="color:blue;">&#62;&#60;/<span style="color:#a31515;">TextBlock<span style="color:blue;">&#62;<br />
</span></span></span></span></span></span></span></span></span></span></span></p>
<p><span style="color:blue;font-size:10pt;">  &#60;/<span style="color:#a31515;">StackPanel<span style="color:blue;">&#62;<br />
</span></span></span></p>
<p><span style="color:blue;font-size:10pt;">&#60;/<span style="color:#a31515;">Grid<span style="color:blue;">&#62;<br />
</span></span></span></p>
<p>
 </p>
<p>Next, you need to add a JavaScript function to your ASPX entry page or ASP.NET test page. (If you plan on using both, place the JavaScript function in a separate file and then link to it in both files using the source attribute of the script block.) The JavaScript code can look up named elements on the page using the sender.findName() method, and manipulate their properties. It can also determine the current progress using the eventArgs.progress property. In this example, the event handling code simply updates the text and widens the progress bar based on the current progress percentage:
</p>
<p><span style="color:blue;font-size:10pt;">&#60;<span style="color:#a31515;">script</span><br />
			<span style="color:red;">type<span style="color:blue;">=&#8221;text/javascript&#8221;&#62;<br />
</span></span></span></p>
<p><span style="font-size:10pt;"><br />
			<span style="color:blue;">function</span> onSourceDownloadProgressChanged(sender, eventArgs) {<br />
</span></p>
<p><span style="font-size:10pt;">            sender.findName(<span style="color:#a31515;">&#8220;progressText&#8221;</span>).Text = Math.round((eventArgs.progress * 100)) + <span style="color:#a31515;">&#8220;% downloaded &#8230;&#8221;</span>;<br />
</span></p>
<p><span style="font-size:10pt;">            sender.findName(<span style="color:#a31515;">&#8220;progressBar&#8221;</span>).Width = eventArgs.progress * sender.findName(<span style="color:#a31515;">&#8220;progressBarBackground&#8221;</span>).Width;<br />
</span></p>
<p><span style="font-size:10pt;">        }<br />
</span></p>
<p><span style="font-size:10pt;"><br />
			<span style="color:blue;">&#60;/<span style="color:#a31515;">script<span style="color:blue;">&#62;<br />
</span></span></span></span></p>
<p>To use this splash screen, you need to add the splashscreensource parameter to identify your XAML splash screen and the onsourcedownloadprogresschanged parameter to hook up your JavaScript event handler. If you want to react when the download is finished, you can hook up a different JavaScript event handler using the onsourcedownloadcomplete parameter.
</p>
<p><span style="color:blue;font-size:10pt;">&#60;<span style="color:#a31515;">object</span><br />
			<span style="color:red;">data<span style="color:blue;">=&#8221;data:application/x-silverlight-2,&#8221;</span> type<span style="color:blue;">=&#8221;application/x-silverlight-2&#8243;</span> width<span style="color:blue;">=&#8221;100%&#8221;</span> height<span style="color:blue;">=&#8221;100%&#8221;&#62;<br />
</span></span></span></p>
<p><span style="color:blue;font-size:10pt;">&#60;<span style="color:#a31515;">param</span><br />
			<span style="color:red;">name<span style="color:blue;">=&#8221;source&#8221;</span> value<span style="color:blue;">=&#8221;ClientBin/SplashScreenInSL3.xap&#8221;/&#62;<br />
</span></span></span></p>
<p><span style="font-size:10pt;">      <span style="color:blue;">&#60;<span style="color:#a31515;">param</span><br />
				<span style="color:red;">name<span style="color:blue;">=&#8221;onError&#8221;</span> value<span style="color:blue;">=&#8221;onSilverlightError&#8221;</span><br />
					<span style="color:blue;">/&#62;<br />
</span></span></span></span></p>
<p><span style="font-size:10pt;">      <span style="color:blue;">&#60;<span style="color:#a31515;">param</span><br />
				<span style="color:red;">name<span style="color:blue;">=&#8221;background&#8221;</span> value<span style="color:blue;">=&#8221;white&#8221;</span><br />
					<span style="color:blue;">/&#62;<br />
</span></span></span></span></p>
<p><span style="font-size:10pt;">      <span style="color:blue;">&#60;<span style="color:#a31515;">param</span><br />
				<span style="color:red;">name<span style="color:blue;">=&#8221;minRuntimeVersion&#8221;</span> value<span style="color:blue;">=&#8221;3.0.40624.0&#8243;</span><br />
					<span style="color:blue;">/&#62;<br />
</span></span></span></span></p>
<p><span style="font-size:10pt;">      <span style="color:blue;">&#60;<span style="color:#a31515;">param</span><br />
				<span style="color:red;">name<span style="color:blue;">=&#8221;autoUpgrade&#8221;</span> value<span style="color:blue;">=&#8221;true&#8221;</span><br />
					<span style="color:blue;">/&#62;<br />
</span></span></span></span></p>
<p><span style="font-size:10pt;">      <span style="color:blue;background-color:yellow;">&#60;<span style="color:#a31515;">param</span><br />
				<span style="color:red;">name<span style="color:blue;">=&#8221;splashscreensource&#8221;</span> value<span style="color:blue;">=&#8221;MySplashScreen.xaml&#8221;</span><br />
					<span style="color:blue;">/&#62;<br />
</span></span></span></span></p>
<p><span style="font-size:10pt;"><span style="background-color:yellow;">                <span style="color:blue;">&#60;<span style="color:#a31515;">param</span><br />
					<span style="color:red;">name<span style="color:blue;">=&#8221;onsourcedownloadprogresschanged&#8221;</span> value<span style="color:blue;">=&#8221;onSourceDownloadProgressChanged&#8221;</span><br />
						<span style="color:blue;">/&#62;</span></span></span></span><br />
		</span></p>
<p><span style="font-size:10pt;"><br />
			<span style="color:blue;">&#60;<span style="color:#a31515;">a</span><br />
				<span style="color:red;">href<span style="color:blue;">=&#8221;http://go.microsoft.com/fwlink/?LinkID=149156&#38;v=3.0.40624.0&#8243;</span> style<span style="color:blue;">=&#8221;<span style="color:red;">text-decoration</span>:none&#8221;&#62;<br />
</span></span></span></span></p>
<p><span style="font-size:10pt;"><br />
			<span style="color:blue;">&#60;<span style="color:#a31515;">img</span><br />
				<span style="color:red;">src<span style="color:blue;">=&#8221;http://go.microsoft.com/fwlink/?LinkId=108181&#8243;</span> alt<span style="color:blue;">=&#8221;Get Microsoft Silverlight&#8221;</span> style<span style="color:blue;">=&#8221;<span style="color:red;">border-style</span>:none&#8221;/&#62;<br />
</span></span></span></span></p>
<p><span style="font-size:10pt;"><br />
			<span style="color:blue;">&#60;/<span style="color:#a31515;">a<span style="color:blue;">&#62;<br />
</span></span></span></span></p>
<p><span style="font-size:10pt;"><br />
			<span style="color:blue;">&#60;/<span style="color:#a31515;">object<span style="color:blue;">&#62;<br />
</span></span></span></span></p>
<p>That&#8217;s it run your application to test your Splash Screen. If you still don&#8217;t see your Splash Screen that is because your page is loading in 500 milli seconds. To see the splash screen build your sample application and this time you will be able to see it.
</p>
<p><img src="http://diptimayapatra.files.wordpress.com/2009/12/121709_1024_splashscree4.png">
	</p>
<p>Remember this is a sample Splash Screen. You can make your own Splash Screen.
</p>
<p>Enjoy Coding.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Sims 3: Game FAQs]]></title>
<link>http://thesimsinfo.wordpress.com/2009/07/19/the-sims-3-game-faqs/</link>
<pubDate>Sun, 19 Jul 2009 04:43:39 +0000</pubDate>
<dc:creator>Lee</dc:creator>
<guid>http://thesimsinfo.wordpress.com/2009/07/19/the-sims-3-game-faqs/</guid>
<description><![CDATA[My Sim is stuck in the bathtub how can I un-stuck her/him? Your Sim will not be able to get out of t]]></description>
<content:encoded><![CDATA[My Sim is stuck in the bathtub how can I un-stuck her/him? Your Sim will not be able to get out of t]]></content:encoded>
</item>
<item>
<title><![CDATA[Cambia la pantalla de inicio de Openoffice.org]]></title>
<link>http://glatelier.org/2009/07/18/cambia-la-pantalla-de-inicio-de-openoffice-org/</link>
<pubDate>Sun, 19 Jul 2009 02:29:37 +0000</pubDate>
<dc:creator>Pablo N.</dc:creator>
<guid>http://glatelier.org/2009/07/18/cambia-la-pantalla-de-inicio-de-openoffice-org/</guid>
<description><![CDATA[Este es un sencillo tip para cambiar tu pantalla de inicio de Openoffice a algo como ésto: Para logr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Este es un sencillo tip para cambiar tu pantalla de inicio de Openoffice a algo como ésto:</p>
<p><img class="aligncenter size-full wp-image-2897" title="splash screen black" src="http://glatelier.wordpress.com/files/2009/07/pantallazo-10.png" alt="splash screen black" width="600" height="375" />Para lograrlo sólo sigue los siguientes pasos:</p>
<ul>
<li>Descarga tu pantalla de inicio de Openoffice.org. Te recomiendo <a href="http://gnome-look.org/content/show.php/Dark+OpenOffice+Splash?content=78373">ésta</a></li>
<li>Inicia Nautilus con privilegios de administrador. Para hacerlo abre una terminal y escribe <em><strong>sudo nautilus</strong></em></li>
<li>Dirígete a la carpeta donde descargaste el tema y cópialo. Ahora pégalo sin salir de Nautilus como administrador en <em><strong>/usr/lib/openoffice/program/. </strong></em>Reemplaza el archivo llamado <em><strong>openintro_ubuntu_sun.bmp </strong></em>por el archivo que descargaste</li>
<li>¡Y listo!</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cambiare lo splash-screen del BIOS dell’Aspire One]]></title>
<link>http://aceraspire1.wordpress.com/2009/07/13/cambiare-lo-splash-screen-del-bios-dell%e2%80%99aspire-one/</link>
<pubDate>Mon, 13 Jul 2009 21:39:57 +0000</pubDate>
<dc:creator>doserdj</dc:creator>
<guid>http://aceraspire1.wordpress.com/2009/07/13/cambiare-lo-splash-screen-del-bios-dell%e2%80%99aspire-one/</guid>
<description><![CDATA[Ciao a tutti, tra tutte le personalizzazioni che possono essere applicate al nostro computer, dal co]]></description>
<content:encoded><![CDATA[Ciao a tutti, tra tutte le personalizzazioni che possono essere applicate al nostro computer, dal co]]></content:encoded>
</item>
<item>
<title><![CDATA[Tutorial Splash Screen di WordPress]]></title>
<link>http://abycute.wordpress.com/2009/06/09/tutorial-splash-screen-di-wordpress/</link>
<pubDate>Tue, 09 Jun 2009 11:33:06 +0000</pubDate>
<dc:creator>abycute</dc:creator>
<guid>http://abycute.wordpress.com/2009/06/09/tutorial-splash-screen-di-wordpress/</guid>
<description><![CDATA[Membuat splash screen, welcome page, intro, cover website, halaman muka, atau apapun istilahnya yang]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Membuat splash screen, welcome page, intro, cover website, halaman muka, atau apapun istilahnya yang lain relatif mudah, tetapi karena menjadi tampilan pertama ketika pengunjung melihat website atau blog kita, splash screen menjadi sulit karena harus memenuhi syarat informatif dan eksklusif, baik dari segi konten, tampilan (desain layout) dan isi yang terkandung di dalamnya. Umumnya splash screen dibuat untuk mempromosikan produk terbaru, headline berita, event-event penting, dan hal-hal menarik lainnya.</p>
<p><img class="alignnone" src="http://zoel.ucoz.com/images/splashmu070609.jpg" alt="" width="500" height="311" /></p>
<p>Splash screen pun bisa ditampilkan bagi blogger yang menggunakan <a href="http://wordpress.org/" target="_blank">WordPress</a> sebagai CMS-nya, tentu dengan blog hosting sendiri, bukan di <a href="http://wordpress.com/" target="_blank">WP.com</a></p>
<p><!--more--></p>
<p><img class="alignnone" src="http://ongisnade.ucoz.net/images1/sson1111.jpg" alt="" width="520" height="333" /></p>
<p>Berikut langkah-langkah membuat splash screen atau welcome page pada blog  WordPress, cara ini saya gunakan pada website <a href="http://ongisnade.net/">Ongisnade.net</a> versi lama.</p>
<p><strong>Langkah 1</strong><br />
Buat halaman splash terlebih dulu. Konsep desain, layout, link, hingga CSS atau PHP-nya anda atur sendiri sesuai kebutuhan. Simpan sebagai file home.php (atau home.html)</p>
<p><strong>Langkah 2</strong><br />
Upload ke root direktori www anda</p>
<p><strong>Langkah 3</strong><br />
Edit .htaccess yang terdapat pada root direktori</p>
<div>
<ol>
<li><span><span>DirectoryIndex home.php index.php </span></span></li>
<li><span>&#60;IfModule mod_rewrite.c&#62; </span></li>
<li><span>RewriteEngine On </span></li>
<li><span>RewriteBase / </span></li>
<li><span>RewriteCond %{REQUEST_FILENAME} !-f </span></li>
<li><span>RewriteCond %{REQUEST_FILENAME} !-d </span></li>
<li><span>RewriteRule . /index.php [L] </span></li>
<li><span>&#60;/IfModule&#62;<br />
</span></li>
</ol>
<p>lebih detail silahklan kunjungi <a href="http://lunjap.wordpress.com/2009/06/08/tutorial-membuat-splash-screen-halaman-intro-di-blog-wordpress/" target="_blank">blog sam zoel</a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Java 6 Splash-Screen]]></title>
<link>http://danielrohe.wordpress.com/2009/05/30/java-6-splash-screen/</link>
<pubDate>Sat, 30 May 2009 16:41:56 +0000</pubDate>
<dc:creator>danielrohe</dc:creator>
<guid>http://danielrohe.wordpress.com/2009/05/30/java-6-splash-screen/</guid>
<description><![CDATA[Working on Java Swing is sometimes not the easiest! Today I came across a problem with the Java6 Spl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Working on Java Swing is sometimes not the easiest! Today I came across a problem with the Java6 Splash-Screen feature where you can define the splash screen in the manifest file. I wanted to see when the splash screen gets shown and when it gets disposed. The screen really gets shown when the JVM starts, so its good to use it for showing feedback while initialization. And the screen gets disposed as soon as the first window, may it be a frame or dialog, gets shown.</p>
<p>But nothing comes for free, a problem occured as I added class-path entries to the manifest.  The splash screen was not shown! So I played around with a dozen of combinations in the manifest file. The outcome is that <strong>if the Splashscreen-Image entry is after the Class-Path entry no splash screen will be shown</strong>! So always keep you entry for the splash screen at the top of the manifest file.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Create a Windows Executable for Java with Embedded JAR Files]]></title>
<link>http://borisinc.wordpress.com/2009/05/27/create-a-single-executable-with-embedded-jar-files/</link>
<pubDate>Wed, 27 May 2009 07:54:48 +0000</pubDate>
<dc:creator>poidasmith</dc:creator>
<guid>http://borisinc.wordpress.com/2009/05/27/create-a-single-executable-with-embedded-jar-files/</guid>
<description><![CDATA[The following is a quick tutorial on how to create a single executable for a java application using ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The following is a quick tutorial on how to create a single executable for a java application using WinRun4J. We will also give it a splash screen.</p>
<p>To start <a href="http://winrun4j.sf.net/">download WinRun4J</a>.</p>
<p>Now unzip it into any folder, create a new directory called winrun4j and copy:</p>
<ul>
<li>WinRun4J.exe</li>
<li>WinRun4J.jar</li>
<li>WinRun4JTest.jar</li>
<li>WinRun4J.ini</li>
<li>SplashScreen.gif</li>
<li>RCEDIT.exe</li>
</ul>
<p>You should now have a folder that looks like this:</p>
<p><img src="http://i578.photobucket.com/albums/ss228/poidasmith/embed-screen1.gif"></p>
<p>Now create a console window and change directory to your winrun4j folder:</p>
<p><img src="http://i578.photobucket.com/albums/ss228/poidasmith/embed-screen2.gif"></p>
<p>Now its time to use RCEDIT to embed the files into the WinRun4J executable. If you run RCEDIT you should see the following output:</p>
<pre style="font-size:14px;background-color:#EEE;border-color:#888;border-style:solid;border-width:1px;padding:5px;">
F:\winrun4j&#62;RCEDIT.exe
WinRun4J Resource Editor v1.0 (winrun4j.sf.net)

Edits resources in executables (EXE) and dynamic link-libraries (DLL).

RCEDIT   [resource]

  filename      Specifies the filename of the EXE/DLL.
  resource      Specifies the name of the resource to add to the EXE/DLL.
  /I            Set the icon as the default icon for the executable.
  /A            Adds an icon to the EXE/DLL.
  /N            Sets the INI file.
  /J            Adds a JAR file.
  /E            Extracts a JAR file from the EXE/DLL.
  /S            Sets the splash image.
  /H            Adds an HTML file the EXE/DLL.
  /C            Clears all resources from the EXE/DLL.
  /L            Lists the resources in the EXE/DLL.
  /P            Outputs the contents of the INI file in the EXE.

F:\winrun4j&#62;
</pre>
<p>So to embed the JAR files we need to run the following command:</p>
<pre style="font-size:14px;background-color:#EEE;border-color:#888;border-style:solid;border-width:1px;padding:5px;">
F:\winrun4j&#62;RCEDIT.exe /J WinRun4J.exe WinRun4J.jar
</pre>
<p>And:</p>
<pre style="font-size:14px;background-color:#EEE;border-color:#888;border-style:solid;border-width:1px;padding:5px;">
F:\winrun4j&#62;RCEDIT.exe /J WinRun4J.exe WinRun4JTest.jar
</pre>
<p>Now we need to edit the WinRun4J.ini file to contain the necessary instructions (or in this case remove the unnecessary ones). After editing it should look like this:</p>
<pre style="font-size:14px;background-color:#EEE;border-color:#888;border-style:solid;border-width:1px;padding:5px;">
main.class=org.boris.winrun4j.test.WinRunTest
</pre>
<p>Now we are ready to embed this file into the executable:</p>
<pre style="font-size:14px;background-color:#EEE;border-color:#888;border-style:solid;border-width:1px;padding:5px;">
F:\winrun4j&#62;RCEDIT.exe /N WinRun4J.exe WinRun4J.ini
</pre>
<p>The last thing we want to do is embed the splash screen:</p>
<pre style="font-size:14px;background-color:#EEE;border-color:#888;border-style:solid;border-width:1px;padding:5px;">
F:\winrun4j&#62;RCEDIT.exe /S WinRun4J.exe SplashScreen.gif
</pre>
<p>You should see that the WinRun4J.exe file has increased in size:</p>
<p><img src="http://i578.photobucket.com/albums/ss228/poidasmith/embed-screen3.gif"></p>
<p>You should now be able to double click on the WinRun4J.exe and launch the java application:</p>
<p><img src="http://i578.photobucket.com/albums/ss228/poidasmith/embed-screen4.gif"></p>
<p><img src="http://i578.photobucket.com/albums/ss228/poidasmith/embed-screen5.gif"></p>
<p>To check that there are no magic tricks you can delete the other files (i.e. WinRun4J.jar, WinRun4J.ini, SplashScreen.gif, WinRun4JTest.jar and RCEDIT.exe). You only need the executable.</p>
<p>That&#8217;s all folks.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to create 8 bit colormap PNG image for usplash]]></title>
<link>http://joekuan.wordpress.com/2009/05/26/how-to-create-8-bit-colormap-png-image-for-usplash/</link>
<pubDate>Tue, 26 May 2009 21:22:52 +0000</pubDate>
<dc:creator>Joe Kuan</dc:creator>
<guid>http://joekuan.wordpress.com/2009/05/26/how-to-create-8-bit-colormap-png-image-for-usplash/</guid>
<description><![CDATA[I have both the libusplash-dev and libbogl-dev packages installed, followed the instruction in /usr/]]></description>
<content:encoded><![CDATA[I have both the libusplash-dev and libbogl-dev packages installed, followed the instruction in /usr/]]></content:encoded>
</item>
<item>
<title><![CDATA[WinRun4J 0.3.0 Released]]></title>
<link>http://borisinc.wordpress.com/2009/05/26/winrun4j-0-3-0-released/</link>
<pubDate>Tue, 26 May 2009 20:50:59 +0000</pubDate>
<dc:creator>poidasmith</dc:creator>
<guid>http://borisinc.wordpress.com/2009/05/26/winrun4j-0-3-0-released/</guid>
<description><![CDATA[A new version of WinRun4J is now available (v0.3.0). The changes and new features are: Added log.ove]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A new version of WinRun4J is now available (v0.3.0). The changes and new features are:</p>
<ul>
<li>Added log.overwrite option for log files</li>
<li>Fixed log file logging</li>
<li>Added process.priority option to set process priority on startup</li>
<li>Fixed shutdown bug on service mode</li>
<li>Added ability to write text to splash screen</li>
<li>Fixes for splash screen loading in 64 bit mode</li>
<li>Improved window attributes on splash screen</li>
<li>Further improvements to diagnostics</li>
</ul>
<p>Download at the <a href="http://winrun4j.sourceforge.net/">WinRun4J Sourceforge Site</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Interested in designing the next blender-splash?]]></title>
<link>http://blendipel.wordpress.com/2009/04/05/interested-in-designing-the-next-blender-splash/</link>
<pubDate>Sun, 05 Apr 2009 18:16:44 +0000</pubDate>
<dc:creator>blendipel</dc:creator>
<guid>http://blendipel.wordpress.com/2009/04/05/interested-in-designing-the-next-blender-splash/</guid>
<description><![CDATA[Because the countdown is running for the next Blender release &#8211; the last one before the big st]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Because the countdown is running for the next Blender release &#8211; the last one before the big step of 2.50 &#8211; there also is a splash screen contest started by Ton. The winner-entry will appear in the 2.49 release of Blender, presumably containing the following changes:</p>
<ul>
<li><span class="postbody"> bugfixes<br />
</span></li>
<li><span class="postbody">etch a ton<br />
</span></li>
<li><span class="postbody">texture nodes<br />
</span></li>
<li><span class="postbody">video textures in the game engine<br />
</span></li>
<li><span class="postbody">projection painting<br />
</span></li>
<li><span class="postbody">JPEG 2000 support<br />
</span></li>
<li><span class="postbody">further improvements of the game engine (update for Bullet Physics, &#8230;)<br />
</span></li>
</ul>
<p>The deadline for the entries is Sunday the 19th at 14:00 UTC &#8211; probably directly before the release of release candidate 1. Find more information about it and the rules (and post your entries) at the <a href="http://blenderartists.org/forum/showthread.php?t=152631" target="_blank">official thread on Blender Artists Forums.</a></p>
<p>I hope many people will participate &#8211; and I hope I will be among them. I try to make an entry &#8211; although the time is a bit short to create something totally new, it is no problem to modify some older project to fit in the template.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[XP's Splash Screen]]></title>
<link>http://rocky46.wordpress.com/2009/03/30/xps-splash-screen/</link>
<pubDate>Mon, 30 Mar 2009 13:09:22 +0000</pubDate>
<dc:creator>rocky46</dc:creator>
<guid>http://rocky46.wordpress.com/2009/03/30/xps-splash-screen/</guid>
<description><![CDATA[The Windows XP splash screen is designed to hide all of the behind the scenes boot information that ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h3 class="smller"></h3>
<div class="para">The Windows XP splash screen is designed to hide all of the behind the scenes boot information that is ordinarily never needed to view. However, if you need to troubleshoot a startup problem, it may be necessary to view this information to determine the trouble. To find out, you can disable the splash screen by making a small change to the Boot.ini file. Follow the steps below:</p>
<p>1. Press [Windows][Break] to open the System Properties dialog box.<br />
2. On the Advanced tab, click the Settings button in the Startup And Recovery section.<br />
3. In the Startup And Recovery dialog box, select the Edit button in the System Startup section.<br />
4. The Boot.ini file will open in Notepad; locate the line that ends with the /fastdetect switch.<br />
5. Position your cursor right after the parameter, press the spacebar, and add the /SOS switch.<br />
6. Save the Boot.ini file, and close Notepad.<br />
7. Click Cancel to close both the Startup And Recovery dialog box and the System properties dialog box.<br />
8. Restart the system.</p>
<p>When the system restarts, the splash screen will no longer appear. You can observe some of the operations that Windows XP performs during the startup stage.</p>
<p>To revive the splash screen, simply repeat the above steps to edit the Boot.ini file and remove the /SOS switch</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[splash Screen اوبونتو را به راحتی تغییر دهید]]></title>
<link>http://taftish.wordpress.com/2009/01/29/howto-change-splash-screen-in-ubuntu/</link>
<pubDate>Wed, 28 Jan 2009 23:04:22 +0000</pubDate>
<dc:creator>Alinn</dc:creator>
<guid>http://taftish.wordpress.com/2009/01/29/howto-change-splash-screen-in-ubuntu/</guid>
<description><![CDATA[یکی از ویژگی های بسیار خوب لینوکس (و اوبونتو)قابلیت سفارشی سازی بالای آن است.شایداز  splash Screen ا]]></description>
<content:encoded><![CDATA[یکی از ویژگی های بسیار خوب لینوکس (و اوبونتو)قابلیت سفارشی سازی بالای آن است.شایداز  splash Screen ا]]></content:encoded>
</item>
<item>
<title><![CDATA[New Gimp 2.6 Splash Screen]]></title>
<link>http://efrenefren.wordpress.com/2008/12/29/new-gimp-26-splash-screen/</link>
<pubDate>Mon, 29 Dec 2008 09:57:11 +0000</pubDate>
<dc:creator>efrenefren</dc:creator>
<guid>http://efrenefren.wordpress.com/2008/12/29/new-gimp-26-splash-screen/</guid>
<description><![CDATA[Wilber will be surly missed. GIMP is a versatile graphics manipulation package. This page should hel]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a title="gimp 2.6 splash screen by efrenefren, on Flickr" href="http://www.flickr.com/photos/efrenefren/3147206220/"><img src="http://farm4.static.flickr.com/3240/3147206220_15e76d85a6_o.png" alt="gimp 2.6 splash screen" width="277" height="402" /></a></p>
<p>Wilber will be surly missed. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><em><a title="GIMP" href="http://www.gimp.org/" target="_blank">GIMP</a> is a versatile graphics manipulation package. This page should help you get a taste of what GIMP is capable of. You can also have a look at our <a href="http://www.gimp.org/about/introduction.html">introduction page</a> or browse through the <a href="http://www.gimp.org/tutorials/">tutorials</a>.<a title="GIMP" href="http://www.gimp.org/" target="_blank">http://www.gimp.org/</a></em></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
