<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.3" -->
<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>TheTutorial</title>
	<link>http://www.thetutorial.org</link>
	<description>A tutorial site</description>
	<pubDate>Thu, 15 May 2008 07:17:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>
	<language>en</language>
			<item>
		<title>Where is the hosts file?</title>
		<link>http://www.thetutorial.org/uncategorized/where-is-the-hosts-file/</link>
		<comments>http://www.thetutorial.org/uncategorized/where-is-the-hosts-file/#comments</comments>
		<pubDate>Thu, 15 May 2008 07:15:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thetutorial.org/uncategorized/where-is-the-hosts-file/</guid>
		<description><![CDATA[The hosts file lets you point specific ip adresses to domains, on your filesystem, instead of letting this be resolved at the DNS level.
Mac OS X 10.2 or later
Edit the /private/etc/hosts file. 
Windows 95/98/Me c:\windows\hosts
Windows NT/2000/XP Pro  c:\winnt\system32\drivers\etc\hosts
Windows XP Home c:\windows\system32\drivers\etc\hosts
windows Vista C:\Windows\System32\drivers\etc 
change "C" for your os drive
]]></description>
			<content:encoded><![CDATA[<p>The hosts file lets you point specific ip adresses to domains, on your filesystem, instead of letting this be resolved at the DNS level.</p>
<p><strong>Mac OS X 10.2 or later<br />
</strong>Edit the /private/etc/hosts file. </p>
<p><strong>Windows 95/98/Me </strong>c:\windows\hosts<br />
<strong>Windows NT/2000/XP Pro </strong> c:\winnt\system32\drivers\etc\hosts<br />
<strong>Windows XP Home </strong>c:\windows\system32\drivers\etc\hosts<br />
<strong>windows Vista</strong> C:\Windows\System32\drivers\etc </p>
<p>change "C" for your os drive</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thetutorial.org/uncategorized/where-is-the-hosts-file/feed/</wfw:commentRss>
		</item>
		<item>
		<title>javascript redirect</title>
		<link>http://www.thetutorial.org/javascript/javascript-redirect/</link>
		<comments>http://www.thetutorial.org/javascript/javascript-redirect/#comments</comments>
		<pubDate>Sun, 04 May 2008 15:19:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.thetutorial.org/javascript/javascript-redirect/</guid>
		<description><![CDATA[To redirect the browser clientside. You can use javascript. This can be done in  different ways. 
Like this:
&#160;
&#160;
&#60;SCRIPT LANGUAGE=&#34;JavaScript&#34;&#62;
&#60;!-- Script courtesy of http://www.thetutorial.org
window.location=&#34;http://www.thetutorial.org&#34;;
// --&#62;
&#60;/script&#62;
&#160;
or with a function like this:
&#160;
&#60;script language=&#34;JavaScript&#34;&#62;
&#60;!--Script courtesy of http://www.thetutorial.org 
 move&#40;&#41; ;
function move&#40;&#41; &#123;
window.location = 'http://www.yourdomain.com'
&#125;
//--&#62;
&#60;/script&#62;
&#160;
]]></description>
			<content:encoded><![CDATA[<p>To redirect the browser clientside. You can use javascript. This can be done in  different ways. </p>
<p><strong>Like this:</strong></p>
<pre class="javascript">&nbsp;
&nbsp;
&lt;SCRIPT LANGUAGE=<span style="color: #3366CC;">&quot;JavaScript&quot;</span>&gt;
&lt;!-- Script courtesy of http:<span style="color: #009900; font-style: italic;">//www.thetutorial.org</span>
window.<span style="color: #006600;">location</span>=<span style="color: #3366CC;">&quot;http://www.thetutorial.org&quot;</span>;
<span style="color: #009900; font-style: italic;">// --&gt;</span>
&lt;/script&gt;
&nbsp;</pre>
<p><strong>or with a function like this:</strong></p>
<pre class="javascript">&nbsp;
&lt;script language=<span style="color: #3366CC;">&quot;JavaScript&quot;</span>&gt;
&lt;!--Script courtesy of http:<span style="color: #009900; font-style: italic;">//www.thetutorial.org </span>
 move<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> ;
<span style="color: #003366; font-weight: bold;">function</span> move<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
window.<span style="color: #006600;">location</span> = <span style="color: #3366CC;">'http://www.yourdomain.com'</span>
<span style="color: #66cc66;">&#125;</span>
<span style="color: #009900; font-style: italic;">//--&gt;</span>
&lt;/script&gt;
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thetutorial.org/javascript/javascript-redirect/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Javascript go back code</title>
		<link>http://www.thetutorial.org/javascript/javascript-go-back-code/</link>
		<comments>http://www.thetutorial.org/javascript/javascript-go-back-code/#comments</comments>
		<pubDate>Thu, 01 May 2008 11:29:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.thetutorial.org/javascript/javascript-go-back-code/</guid>
		<description><![CDATA[This can be done in many different ways, for instance like this:
&#160;
&#60;a href=&#34;javascript:history.go(-1)&#34;&#62; Go Back&#60;/a&#62;
&#160;
or with a form like this
&#160;
&#60;form&#62;
&#60;input type=&#34;button&#34; value=&#34;Click here to go back&#34;
onClick=&#34;history.back()&#34; /&#62;
&#60;/form&#62;
&#160;
the history parameter can be set, to for instance 1 or -1 one.. reflecting the movement forward or backward in the history of the browsed pages. 
&#160;
history.go&#40;-1&#41; or history.go&#40;1&#41;
&#160;
]]></description>
			<content:encoded><![CDATA[<p>This can be done in many different ways, for instance like this:</p>
<pre class="javascript">&nbsp;
&lt;a href=<span style="color: #3366CC;">&quot;javascript:history.go(-1)&quot;</span>&gt; Go Back&lt;/a&gt;
&nbsp;</pre>
<p><strong>or with a form like this</strong></p>
<pre class="javascript">&nbsp;
&lt;form&gt;
&lt;input type=<span style="color: #3366CC;">&quot;button&quot;</span> value=<span style="color: #3366CC;">&quot;Click here to go back&quot;</span>
onClick=<span style="color: #3366CC;">&quot;history.back()&quot;</span> /&gt;
&lt;/form&gt;
&nbsp;</pre>
<p>the history parameter can be set, to for instance 1 or -1 one.. reflecting the movement forward or backward in the history of the browsed pages. </p>
<pre class="javascript">&nbsp;
history.<span style="color: #006600;">go</span><span style="color: #66cc66;">&#40;</span><span style="color: #CC0000;">-1</span><span style="color: #66cc66;">&#41;</span> or history.<span style="color: #006600;">go</span><span style="color: #66cc66;">&#40;</span><span style="color: #CC0000;">1</span><span style="color: #66cc66;">&#41;</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thetutorial.org/javascript/javascript-go-back-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Textfield highlight on focus</title>
		<link>http://www.thetutorial.org/javascript/textfield-highlight-on-focus/</link>
		<comments>http://www.thetutorial.org/javascript/textfield-highlight-on-focus/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 16:43:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.thetutorial.org/javascript/textfield-highlight-on-focus/</guid>
		<description><![CDATA[Do you want the text in a textfield to automatically be highlited when the user clicks it? 
then use the code:
&#160;
&#60;input onFocus=&#34;javascript:this.select()&#34;  type=&#34;text&#34; value=&#34;test&#34; /&#62;
&#160;
magic is in the onfocusevent, and the call to the method select:
&#160;
&#160;
onFocus=&#34;javascript:this.select()&#34;   
&#160;
]]></description>
			<content:encoded><![CDATA[<p>Do you want the text in a textfield to automatically be highlited when the user clicks it? </p>
<p>then use the code:</p>
<pre class="javascript">&nbsp;
&lt;input <span style="color: #000066;">onFocus</span>=<span style="color: #3366CC;">&quot;javascript:this.select()&quot;</span>  type=<span style="color: #3366CC;">&quot;text&quot;</span> value=<span style="color: #3366CC;">&quot;test&quot;</span> /&gt;
&nbsp;</pre>
<p>magic is in the onfocusevent, and the call to the method select:</p>
<pre class="javascript">&nbsp;
&nbsp;
<span style="color: #000066;">onFocus</span>=<span style="color: #3366CC;">&quot;javascript:this.select()&quot;</span>   
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thetutorial.org/javascript/textfield-highlight-on-focus/feed/</wfw:commentRss>
		</item>
		<item>
		<title>remove the ie7 image toolbar</title>
		<link>http://www.thetutorial.org/uncategorized/remove-the-ie7-image-toolbar/</link>
		<comments>http://www.thetutorial.org/uncategorized/remove-the-ie7-image-toolbar/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 12:45:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thetutorial.org/uncategorized/remove-the-ie7-image-toolbar/</guid>
		<description><![CDATA[Like so:
&#60;HEAD&#62;
	&#60;TITLE&#62;My Site&#60;/TITLE&#62;
	&#60;META HTTP-EQUIV=&#34;imagetoolbar&#34; CONTENT=&#34;no&#34;&#62;
&#60;/HEAD&#62;
&#160;
]]></description>
			<content:encoded><![CDATA[<p>Like so:</p>
<pre class="actionscript">&lt;HEAD&gt;
	&lt;TITLE&gt;My Site&lt;/TITLE&gt;
	&lt;META HTTP-EQUIV=<span style="color: #ff0000;">&quot;imagetoolbar&quot;</span> CONTENT=<span style="color: #ff0000;">&quot;no&quot;</span>&gt;
&lt;/HEAD&gt;
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thetutorial.org/uncategorized/remove-the-ie7-image-toolbar/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Print webpage with javascript</title>
		<link>http://www.thetutorial.org/javascript/print-webpage-with-javascript/</link>
		<comments>http://www.thetutorial.org/javascript/print-webpage-with-javascript/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 13:03:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.thetutorial.org/javascript/print-webpage-with-javascript/</guid>
		<description><![CDATA[The easyest way to print a page, is to simply write an anchor tag, like so:
&#160;
&#60;a href=&#34;#&#34; onClick=&#34;javascript:window.print()&#34;
&#62; Print this Page!&#60;/a&#62;
&#160;
result:
 Print this Page!
]]></description>
			<content:encoded><![CDATA[<p>The easyest way to print a page, is to simply write an anchor tag, like so:</p>
<pre class="actionscript">&nbsp;
&lt;a href=<span style="color: #ff0000;">&quot;#&quot;</span> onClick=<span style="color: #ff0000;">&quot;javascript:window.print()&quot;</span>
&gt; <span style="color: #0066CC;">Print</span> <span style="color: #0066CC;">this</span> Page!&lt;/a&gt;
&nbsp;</pre>
<p>result:<br />
<a href="#" onClick="javascript:window.print()" > Print this Page!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thetutorial.org/javascript/print-webpage-with-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Oneclickmeta</title>
		<link>http://www.thetutorial.org/wordpress/oneclickmeta/</link>
		<comments>http://www.thetutorial.org/wordpress/oneclickmeta/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 01:29:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.thetutorial.org/oneclickmeta/</guid>
		<description><![CDATA[This is a plugin for Wordpress. Inputs meta description and keywords in one klick, simple and smooth. Nothing to adjust, it just works!
Description
This is a one click plugin to "on the fly" -generate meta keyword and description. One klick no hussle.  

The plugin uses content on the present page to generate description and keywords [...]]]></description>
			<content:encoded><![CDATA[<p><strong>This is a plugin for <a href="http://wordpress.org/">Wordpress</a>. Inputs meta description and keywords in one klick, simple and smooth. Nothing to adjust, it just works!</strong></p>
<p><strong>Description</strong><br />
This is a one click plugin to "on the fly" -generate meta keyword and description. One klick no hussle.  </p>
<ul>
<li>The plugin uses content on the present page to generate description and keywords in the metadata header. </li>
<li>At present 2 things can be altered (optional). This is done in the code of the plugin, at rows 37 and 40. </li>
<li>The plugin strips common words from the text (to use in the description), the percentage of common words to strip can be altered. It<br />
defaults t0 25%. Also the max amount of words can be altered, this defaults to 150 words.</li>
</ul>
<p><strong><br />
Download!</strong></p>
<ul>
<li><a href="http://www.thetutorial.org/downloads/onekclickmeta.rar">Download the plugin here » </a> (3k) or <a href="http://www.thetutorial.org/downloads/oneclickmeta.txt">here </a>for only the php file (rename to .php).</li>
<li>file is compressed (as usual), use <a href="http://www.rarlab.com/download.htm">winrar</a> or similar program to "Unzip".</li>
</ul>
<p><strong>Installation</strong>
<ul>
<li>Upload `oneclickmeta.php` to the `/wp-content/plugins/` directory</li>
<li>Activate the plugin through the 'Plugins' menu in WordPress</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.thetutorial.org/wordpress/oneclickmeta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remove firefox klick outline</title>
		<link>http://www.thetutorial.org/uncategorized/remove-firefox-klick-outline/</link>
		<comments>http://www.thetutorial.org/uncategorized/remove-firefox-klick-outline/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 11:02:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thetutorial.org/remove-firefox-klick-outline/</guid>
		<description><![CDATA[To remove the klick outline in firefox. Use the following in your css.
a &#123;
	outline: none;
&#125;
]]></description>
			<content:encoded><![CDATA[<p>To remove the klick outline in firefox. Use the following in your css.</p>
<pre class="css">a <span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">outline</span>: <span style="color: #993333;">none</span>;
<span style="color: #66cc66;">&#125;</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.thetutorial.org/uncategorized/remove-firefox-klick-outline/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rss on your website, the simple way</title>
		<link>http://www.thetutorial.org/php-tutorials/rss-on-your-website-the-simple-way/</link>
		<comments>http://www.thetutorial.org/php-tutorials/rss-on-your-website-the-simple-way/#comments</comments>
		<pubDate>Sat, 07 Jul 2007 09:03:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php tutorials]]></category>

		<guid isPermaLink="false">http://www.thetutorial.org/rss-on-your-website-the-simple-way/</guid>
		<description><![CDATA[i recently (yesterday) created a pure rss page. It is made to display several rss flows on one page. Here is the page (it is on the seo topic, and covers the best seo-blogs in the world imo).
]]></description>
			<content:encoded><![CDATA[<p>i recently (yesterday) created a pure rss page. It is made to display several rss flows on one page. <a href="http://hoglind.org/seo-nyheter/">Here is the page </a>(it is on the seo topic, and covers the best seo-blogs in the world imo).<br />
 <a href="http://www.thetutorial.org/php-tutorials/rss-on-your-website-the-simple-way/#more-7" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thetutorial.org/php-tutorials/rss-on-your-website-the-simple-way/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pause flash with actionscript</title>
		<link>http://www.thetutorial.org/flash-tutorials/pause-flash-with-actionscript/</link>
		<comments>http://www.thetutorial.org/flash-tutorials/pause-flash-with-actionscript/#comments</comments>
		<pubDate>Sat, 02 Jun 2007 10:25:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Flash tutorials]]></category>

		<guid isPermaLink="false">http://www.thetutorial.org/pause-flash-with-actionscript/</guid>
		<description><![CDATA[There are alot of samples out there on how to pause the timeline, bit not som many on how to pause the flow of frames itself. So here you go:
]]></description>
			<content:encoded><![CDATA[<p>There are alot of samples out there on how to pause the timeline, bit not som many on how to pause the flow of frames itself. So here you go:</p>
<p> <a href="http://www.thetutorial.org/flash-tutorials/pause-flash-with-actionscript/#more-6" class="more-link">(more...)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thetutorial.org/flash-tutorials/pause-flash-with-actionscript/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
