<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IMVU SPACE &#187; Blink</title>
	<atom:link href="http://www.imvuspace.com/tag/blink/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imvuspace.com</link>
	<description></description>
	<lastBuildDate>Mon, 26 Apr 2010 22:41:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Blinking Title Bar V2.0!</title>
		<link>http://www.imvuspace.com/blinking-title-bar-v20/</link>
		<comments>http://www.imvuspace.com/blinking-title-bar-v20/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 23:05:04 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Blink]]></category>
		<category><![CDATA[Message]]></category>
		<category><![CDATA[TitleBar]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=249</guid>
		<description><![CDATA[This code is the same as the original, exept this one lets you have 10 messages! var copiedfrom='www.imvuspace.comt'; function titlebar(val) { var speed = 500; var pos = val; var msg1 = " Message 10"; var msg2 = " Message 1"; var msg3 = " Message 2"; var msg4 = " Message 3"; var msg5 [...]]]></description>
			<content:encoded><![CDATA[<p>This code is the same as the original, exept this one lets you have 10 messages!</p>
<p><!--start_raw--></p>
<form ACTION=URI><textarea rows="5" cols="52" style="background-color:#ffffff; font-family:verdana; color:#9900ff; border-</p>
<p>style:solid" onclick="this.select()"></p>
<p><script type="text/javascript">
var copiedfrom='www.imvuspace.comt';
function titlebar(val) {
var speed = 500;
var pos = val;</p>
<p>var msg1 = " Message 10";
var msg2 = " Message 1";
var msg3 = " Message 2";
var msg4 = " Message 3";
var msg5 = " Message 4";
var msg6 = " Message 5";
var msg7 = " Message 6";
var msg8 = " Message 7";
var msg9 = " Message 8";
var msg10 = " Message 9";</p>
<p>if(pos == 9){ masg = msg1; pos = 0; }
else if(pos == 0){ masg = msg2; pos = 1; }
else if(pos == 1){ masg = msg3; pos = 2; }
else if(pos == 2){ masg = msg4; pos = 3; }
else if(pos == 3){ masg = msg5; pos = 4; }
else if(pos == 4){ masg = msg6; pos = 5; }
else if(pos == 5){ masg = msg7; pos = 6; }
else if(pos == 6){ masg = msg8; pos = 7; }
else if(pos == 7){ masg = msg9; pos = 8; }
else if(pos == 8){ masg = msg10; pos = 9; }
document.title = masg;
timer = window.setTimeout("titlebar("+pos+")",speed);
}
titlebar(0);
</script></p>
<p></textarea></form>
<p><!--end_raw--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/blinking-title-bar-v20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blinking Title Bar</title>
		<link>http://www.imvuspace.com/blinking-title-bar/</link>
		<comments>http://www.imvuspace.com/blinking-title-bar/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 22:58:01 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Blink]]></category>
		<category><![CDATA[TitleBar]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=245</guid>
		<description><![CDATA[Replace &#8220;YOUR MESSAGE GOES HERE&#8221; in the code with the message you want to appear in the title bar of your page! Replace &#8220;******&#8221; and &#8220;&#8212;&#8212;-&#8221; in the blinking title bar code with whatever you want to blink on the sides of your title bar message. The title bar on this page (above) is an [...]]]></description>
			<content:encoded><![CDATA[<p>Replace &#8220;YOUR MESSAGE GOES HERE&#8221; in the code with the message you want to appear in the title bar of your page!</p>
<p>Replace &#8220;******&#8221; and &#8220;&#8212;&#8212;-&#8221; in the blinking title bar code with whatever you want to blink on the sides of your title bar message.</p>
<p>The title bar on this page (above) is an example of how the blinking title bar will look.</p>
<p><!--start_raw--></p>
<form ACTION=URI><textarea rows="5" cols="52" style="background-color:#ffffff; font-family:verdana; color:#9900ff; border-</p>
<p>style:solid" onclick="this.select()"></p>
<p><script type="text/javascript">
var copiedfrom='www.imvuspace.com';
function titlebar(val)
{
	var msg  = "YOUR MESSAGE GOES HERE";
	var speed = 500;
	var pos = val;</p>
<p>	var msg1  = "    ****** "+msg+" ******";
	var msg2  = "    ------- "+msg+" -------";</p>
<p>	if(pos == 0){
		masg = msg1;
		pos = 1;
	}
	else if(pos == 1){
		masg = msg2;
		pos = 0;
	}</p>
<p>	document.title = masg;
	timer = window.setTimeout("titlebar("+pos+")",speed);
}</p>
<p>titlebar(0);
</script></p>
<p></textarea></form>
<p><!--end_raw--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/blinking-title-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
