<?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; Codes</title>
	<atom:link href="http://www.imvuspace.com/tag/imvu-codes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imvuspace.com</link>
	<description></description>
	<lastBuildDate>Wed, 01 Feb 2012 08:01:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Hide Info Badges Under Avatar Pictures</title>
		<link>http://www.imvuspace.com/hide-info-badges-under-avatar-pictures/</link>
		<comments>http://www.imvuspace.com/hide-info-badges-under-avatar-pictures/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 11:35:18 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[IMVU]]></category>
		<category><![CDATA[imvucodes]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=1291</guid>
		<description><![CDATA[This will Hide Info Badges Under Avatar Pictures on a bling/badge enabled page (those that say, ap, vip, badge count&#8230;). Enjoy!]]></description>
			<content:encoded><![CDATA[<p>This will  Hide Info Badges Under Avatar Pictures on a bling/badge enabled page (those that say, ap, vip, badge count&#8230;). Enjoy!</p>
<form action="URI"><textarea style="background-color: #ffffff; font-family: verdana; color: #9900ff; border-style: solid;" onclick="this.select()" cols="45" rows="5">
<style type="text/css">
.infosprites, .by_imvuspacecom { display:none!important; }
</style>
</textarea>
</form>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/hide-info-badges-under-avatar-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Block Right Click</title>
		<link>http://www.imvuspace.com/block-right-click/</link>
		<comments>http://www.imvuspace.com/block-right-click/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 23:21:47 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Block]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=259</guid>
		<description><![CDATA[No one can Right Click On your page. Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.]]></description>
			<content:encoded><![CDATA[<p>No one can Right Click On your page.</p>
<form action="URI"><textarea style="background-color: #ffffff; font-family: verdana; color: #9900ff; border-style: solid;" onclick="this.select()" cols="50" rows="5">
<script type="text/javascript">
var copiedfrom='www.imvuspace.com';
function blockrightclick() {
	return false;
}
document.oncontextmenu=blockrightclick;
</script>
</textarea>
</form>
<p>Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/block-right-click/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Original size visitors avatar pictures</title>
		<link>http://www.imvuspace.com/original-size-visitors-avatar-pictures/</link>
		<comments>http://www.imvuspace.com/original-size-visitors-avatar-pictures/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 23:15:56 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[avatar]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[picture]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=257</guid>
		<description><![CDATA[This allows you to resize any pictures in the visitors panel to their original sizes. This code should work on a lot of browsers: Safari, Firefox, IE6+, Opera. If you are familiar with javascript you might change the imggroup variable to only change chosen images. Make sure you put this code at the very end [...]]]></description>
			<content:encoded><![CDATA[<p>This allows you to resize any pictures in the visitors panel to their original sizes. This code should work on a lot of browsers: Safari, Firefox, IE6+, Opera. If you are familiar with javascript you might change the imggroup variable to only change chosen images. Make sure you put this code at the very end of your imvu page (the panel that is best for this is the very lower right panel!).</p>
<form action="URI"><textarea style="background-color: #ffffff; font-family: verdana; color: #9900ff; border-style: solid;" onclick="this.select()" cols="50" rows="5">
<style type="text/css">
.avPic { width:auto!important; height:auto!important; }
</style>
<script type="text/javascript">
	var made_by='www.imvuspace.com';
	function getNaturalWidth(dImg) {
		var naturalWidth  = -1;
		if(dImg.naturalWidth != null) {
			naturalWidth = dImg.naturalWidth;
		} else if(dImg.runtimeStyle) {
			dImg.runtimeStyle.width= 'auto';
			dImg.runtimeStyle.height= 'auto';
			dImg.runtimeStyle.borderWidth= '0';
			dImg.runtimeStyle.padding= '0';
			naturalWidth =  dImg.offsetWidth;
			dImg.runtimeStyle.width= '';
			dImg.runtimeStyle.height= '';
			dImg.runtimeStyle.borderWidth= '';
			dImg.runtimeStyle.padding= '';
		} else {
			var dImgBk = dImg.cloneNode(true);
			dImg.className = '';
			dImg.style.width = 'auto !important';
			dImg.style.height = 'auto !important';
			dImg.style.borderWidth= '0 !important';
			dImg.style.padding= '0 !important';
			dImg.removeAttribute('width');
			dImg.removeAttribute('height');
			naturalWidth =  dImg.width;
			dImg.setAttribute('width' , dImgBk.getAttribute('width') );
			dImg.setAttribute('height', dImgBk.getAttribute('height') );
			dImg.style.width = dImgBk.style.width ; 
			dImg.style.height = dImgBk.style.height ; 
			dImg.style.padding = dImgBk.style.padding ; 
			dImg.style.borderWidth=  dImgBk.style.borderWidth ; 
			dImg.style.className = dImgBk.style.className ; 
		}
		return(naturalWidth);
	}
	function getNaturalHeight(dImg) {
		var naturalHeight  = -1;
		if(dImg.naturalHeight != null) {
			naturalHeight = dImg.naturalHeight;
		} else if(dImg.runtimeStyle) {
			dImg.runtimeStyle.width= 'auto';
			dImg.runtimeStyle.height= 'auto';
			dImg.runtimeStyle.borderWidth= '0';
			dImg.runtimeStyle.padding= '0';
			naturalHeight = dImg.offsetHeight;
			dImg.runtimeStyle.width= '';
			dImg.runtimeStyle.height= '';
			dImg.runtimeStyle.borderWidth= '';
			dImg.runtimeStyle.padding= '';
		} else {
			var dImgBk = dImg.cloneNode(true);
			dImg.className = '';
			dImg.style.width = 'auto !important';
			dImg.style.height = 'auto !important';
			dImg.style.borderWidth= '0 !important';
			dImg.style.padding= '0 !important';
			dImg.removeAttribute('width');
			dImg.removeAttribute('height');
			naturalHeight =  dImg.height;
			dImg.setAttribute('width' , dImgBk.getAttribute('width') );
			dImg.setAttribute('height', dImgBk.getAttribute('height') );
			dImg.style.width = dImgBk.style.width ; 
			dImg.style.height = dImgBk.style.height ; 
			dImg.style.padding = dImgBk.style.padding ; 
			dImg.style.borderWidth=  dImgBk.style.borderWidth ; 
			dImg.style.className = dImgBk.style.className ; 
		}
		return(naturalHeight);
	}	
	function ResizeIt_imvuspace_com() {
		var imgGroup = document.getElementById('visitors_panel_body').getElementsByTagName('img');
		for (var i=0; i<imgGroup.length; i++) {
			imgGroup[i].style.width=getNaturalWidth(imgGroup[i])+'px';
			imgGroup[i].style.height=getNaturalHeight(imgGroup[i])+'px';
		}
	}
	document.onload=ResizeIt_imvuspace_com();
</script>
</textarea>
</form>
<p>Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/original-size-visitors-avatar-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrolling Musicbox (with controls)</title>
		<link>http://www.imvuspace.com/scrolling-musicbox-with-controls/</link>
		<comments>http://www.imvuspace.com/scrolling-musicbox-with-controls/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 23:12:59 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Musicbox]]></category>
		<category><![CDATA[Scroll]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=255</guid>
		<description><![CDATA[This code will transform your music panel content into a scrollbox that automatically scrolls to the left. Additionally it contains two cotrolls (one at each end) to change the scrolling direction. This code has to be put after the music panel html box (that means it will not work when you put this code into [...]]]></description>
			<content:encoded><![CDATA[<p><code>This code will transform your music panel content into a scrollbox that automatically scrolls to the left. Additionally it contains two cotrolls (one at each end) to change the scrolling direction. This code has to be put after the music panel html box (that means it will not work when you put this code into the music panel!)</code></p>
<form action="URI"><textarea style="background-color: #ffffff; font-family: verdana; color: #9900ff; border-style: solid;" onclick="this.select()" cols="50" rows="5">
<script type="text/javascript">
 var copiedfrom='www.imvuspace.com';
 function musicmarquee_by_imvucspace_com() {
  var getlinks=document.getElementById('music_panel_body').getElementsByTagName('td');
  var newcontent='<table style="width:100%"><tr><td style="width:20px"><img src="http://www.imvucodes.net/src/120186342989880.png" style="cursor:pointer" onclick="musicbox_changedirection(-1)" title="Musicbox-Scroller by IMVUCODES.NET!" alt="left" /></td><td><marquee direction="alternate" id="musicbox"><table><tr>';
  if(getlinks.length>0) {
   for(var i=0;i<getlinks.length;i++) {
    newcontent+='<td style="text-align:center">'+getlinks[i].innerHTML+'</td>';
  }
  newcontent+='</tr></table></marquee></td><td style="width:20px"><img src="http://www.imvucodes.net/src/12018634972160.png" style="cursor:pointer" onclick="musicbox_changedirection(1)" title="Musicbox-Scroller by IMVUCODES.NET!" alt="right" /></td></tr></table>';
  document.getElementById('music_panel_body').innerHTML=newcontent;
   document.getElementById('musicbox').start();
 }
}
function musicbox_changedirection(direction) {
var newdirection='left';
if(direction>0) newdirection='right';
document.getElementById('musicbox').direction=newdirection;
}
musicmarquee_by_imvucspace_com();
</script>
</textarea>
</form>
<p>Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/scrolling-musicbox-with-controls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Object Link</title>
		<link>http://www.imvuspace.com/dynamic-object-link/</link>
		<comments>http://www.imvuspace.com/dynamic-object-link/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 23:09:53 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=253</guid>
		<description><![CDATA[This allows you to make a link at the given location (where you actually put this snippet). When you click the link the link disappears itself and the part where it says &#8220;HIDDEN OBJECT&#8221; will be made visible! Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.]]></description>
			<content:encoded><![CDATA[<p>This allows you to make a link at the given location (where you actually put this snippet). When you click the link the link disappears itself and the part where it says &#8220;HIDDEN OBJECT&#8221; will be made visible!</p>
<form action="URI"><textarea style="background-color: #ffffff; font-family: verdana; color: #9900ff; border-style: solid;" onclick="this.select()" cols="50" rows="5">
<span style="cursor:pointer" onclick="this.style.display='none';document.getElementById('myobject1').style.display='';">MY LINK DESCRIPTION</span>
<div id="myobject1" style="display:none">HIDDEN OBJECT</div>
</textarea>
</form>
<p>Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/dynamic-object-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Text Selection</title>
		<link>http://www.imvuspace.com/disable-text-selection/</link>
		<comments>http://www.imvuspace.com/disable-text-selection/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 23:07:09 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Disable]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=251</guid>
		<description><![CDATA[This will prevent the user from selecting any text, phrases or words on the page. It will not work to select text on the page. But notice there might be problems with embedded flash objects and their highlighting. Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.]]></description>
			<content:encoded><![CDATA[<p>This will prevent the user from selecting any text, phrases or words on the page. It will not work to select text on the page. But notice there might be problems with embedded flash objects and their highlighting.</p>
<form action="URI"><textarea style="background-color: #ffffff; font-family: verdana; color: #9900ff; border-style: solid;" onclick="this.select()" cols="50" rows="5">
<script type="text/javascript">
var copiedfrom='www.imvuspace.com';
  window.onload=function(){
    document.onselectstart=function(){return false;}
    document.onmousedown=function(){return false;}
  }
</script>
</textarea>
</form>
<p>Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/disable-text-selection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stretch Background Picture</title>
		<link>http://www.imvuspace.com/stretch-background-picture/</link>
		<comments>http://www.imvuspace.com/stretch-background-picture/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 23:03:31 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[picture]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=247</guid>
		<description><![CDATA[Its a workaround to a function that should be available in the next browser generation. Means you can add a background picture to your page that is stretched over the whole page! Unfortunatelly with Internet Explorer it doesnt work to make it not scrolling! Works fine on Firefox. NOTE: to change the background picture simply [...]]]></description>
			<content:encoded><![CDATA[<p>Its a workaround to a function that should be available in the next browser generation. Means you can add a background picture to your page that is stretched over the whole page! Unfortunatelly with Internet Explorer it doesnt work to make it not scrolling! Works fine on Firefox. NOTE: to change the background picture simply change the url in the third line (starting with &#8216;var newbackgroundimage=&#8217;). Good luck and enjoy. [This code has been published on this page, if you think its useful and want to copy it please say at least where you got if from. Thx]</p>
<form action="URI"><textarea style="background-color: #ffffff; font-family: verdana; color: #9900ff; border-style: solid;" onclick="this.select()" cols="50" rows="5">
<script type="text/javascript">

var copiedfrom='www.imvuspace.com';
  var newbackgroundimage='http://www.imvucodes.net/src/837a9f9268142a768c8d1f17b644e521_14877.png';
  document.getElementById('message-stack').innerHTML='<img src="'+newbackgroundimage+'" width="100%" height="100%" alt="This code was published on IMVUSPACE.COM. If you copy it then say at least where you got it from. Thx.">';
</script>
<style type="text/css">
  #message-stack, .byimvuspacecom { position:fixed; top:0; left:0; width:100%; height:100%; z-index:0; }
</style>
<!--[if gte IE 6]>
<style type="text/css">
  html {overflow-y:hidden;}
  body {overflow-y:auto;}
  #imvuParentTable {position:static;}
  #message-stack {position:absolute; z-index:-1;}
</style>
<![endif]-->
</textarea>
</form>
<p>Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/stretch-background-picture/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Leaving Popup Msg</title>
		<link>http://www.imvuspace.com/leaving-popup-msg-revised/</link>
		<comments>http://www.imvuspace.com/leaving-popup-msg-revised/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 22:55:18 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Message]]></category>
		<category><![CDATA[Popup]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=243</guid>
		<description><![CDATA[This will create a popup msg when the user leaves the page. Change MESSAGE GOES HERE! into the msg you want to have displayed! Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.]]></description>
			<content:encoded><![CDATA[<p>This will create a popup msg when the user leaves the page. Change MESSAGE GOES HERE! into the msg you want to have displayed!</p>
<form action="URI"><textarea style="background-color: #ffffff; font-family: verdana; color: #9900ff; border-style: solid;" onclick="this.select()" cols="50" rows="5">

<script type="text/javascript">
var copiedfrom='www.imvuspace.com';
var msg='MESSAGE GOES HERE!';
window.onunload=function() { alert(msg); };
</script>

</textarea>
</form>
<p>Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/leaving-popup-msg-revised/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Popup Message when visiting page</title>
		<link>http://www.imvuspace.com/popup-message-when-visiting-page/</link>
		<comments>http://www.imvuspace.com/popup-message-when-visiting-page/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 22:54:07 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Message]]></category>
		<category><![CDATA[Popup]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=241</guid>
		<description><![CDATA[Replace &#8220;YOUR MESSAGE GOES HERE&#8221; in the code with the message you want to pop up when someone visits your page! Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.]]></description>
			<content:encoded><![CDATA[<p>Replace &#8220;YOUR MESSAGE GOES HERE&#8221; in the code with the message you want to pop up when someone visits your page!</p>
<form action="URI"><textarea style="background-color: #ffffff; font-family: verdana; color: #9900ff; border-style: solid;" onclick="this.select()" cols="50" rows="5">

<script type="text/javascript">
var copiedfrom='www.imvuspace.com';
alert('YOUR MESSAGE GOES HERE');
</script>

</textarea>
</form>
<p>Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/popup-message-when-visiting-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hides green Online Bar</title>
		<link>http://www.imvuspace.com/hides-green-online-bar/</link>
		<comments>http://www.imvuspace.com/hides-green-online-bar/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 22:51:26 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Hide]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[online]]></category>

		<guid isPermaLink="false">http://www.imvuspace.com/?p=239</guid>
		<description><![CDATA[This will hide the small box saying Online right under avatar pics. Can be placed anywhere. Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.]]></description>
			<content:encoded><![CDATA[<p>This will hide the small box saying Online right under avatar pics. Can be placed anywhere.</p>
<form action="URI"><textarea style="background-color: #ffffff; font-family: verdana; color: #9900ff; border-style: solid;" onclick="this.select()" cols="50" rows="5">

<script type="text/javascript">
var copiedfrom='www.imvuspace.com';
function updateStatus() { }
</script>

</textarea>
</form>
<p>Click the code to select, press CTRL+C to copy and CTRL+V to paste at the wanted location.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imvuspace.com/hides-green-online-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

