<?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>In the Woods &#187; Screencasts</title>
	<atom:link href="http://blog.themeforest.net/category/screencasts/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.themeforest.net</link>
	<description>The ThemeForest Blog</description>
	<lastBuildDate>Mon, 27 Sep 2010 19:48:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ask JW: A Plugin to Make Important Announcements</title>
		<link>http://blog.themeforest.net/screencasts/ask-jw-a-plugin-to-make-important-announcements/</link>
		<comments>http://blog.themeforest.net/screencasts/ask-jw-a-plugin-to-make-important-announcements/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 10:19:54 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jquery plugin]]></category>
		<category><![CDATA[screencast]]></category>

		<guid isPermaLink="false">http://blog.themeforest.net/?p=3037</guid>
		<description><![CDATA[
Today&#8217;s Q&#038;A comes courtesy of Frederico Gonzalez, from Twitter. He asked if there was an easy way to add announcement bars to the top of his site, much like the one on ActiveDen right now (assuming you&#8217;re not logged in). Luckily, as you&#8217;ll find, it&#8217;s quite simple to whip up a jQuery plugin that will [...]]]></description>
			<content:encoded><![CDATA[<p>
Today&#8217;s Q&#038;A comes courtesy of Frederico Gonzalez, from Twitter. He asked if there was an easy way to add announcement bars to the top of his site, much like the one on <a href="http://activeden.net">ActiveDen</a> right now (assuming you&#8217;re not logged in). Luckily, as you&#8217;ll find, it&#8217;s quite simple to whip up a jQuery plugin that will make these announcements a cinch to add. </p>
<ul>
<li><a href="http://themeforest.s3.amazonaws.com/137_jwAnnounce/real-site/index.html">View Demo</a></li>
<li><a href="http://themeforest.s3.amazonaws.com/137_jwAnnounce/jwAnnounce.zip">Download Source</a></li>
<li><a href="http://jeffrey-way.com/introducing-jwannounce/">Plugin Homepage</a></li>
</ul>
<h2>The Screencast</h2>
<p><embed src="http://blip.tv/play/gcMVgaybNQA%2Em4v" type="application/x-shockwave-flash" width="615" height="461" allowscriptaccess="always" allowfullscreen="true"></embed>	</p>
<h2>The Final Plugin</h2>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
$.<span style="color: #660066;">fn</span>.<span style="color: #660066;">jwAnnounce</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>options<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #003366; font-weight: bold;">var</span> options <span style="color: #339933;">=</span> $.<span style="color: #660066;">extend</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
		className <span style="color: #339933;">:</span> <span style="color: #3366CC;">'notice'</span><span style="color: #339933;">,</span>
		text <span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">null</span><span style="color: #339933;">,</span>
		siteWidth <span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">null</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> options<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">prepend</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;div class=&quot;'</span> <span style="color: #339933;">+</span> options.<span style="color: #660066;">className</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'&quot; /&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #003366; font-weight: bold;">var</span> $announceDiv <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.'</span> <span style="color: #339933;">+</span> options.<span style="color: #660066;">className</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		$announceDiv
			.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;div&gt;'</span> <span style="color: #339933;">+</span> options.<span style="color: #660066;">text</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'&lt;/div&gt;'</span><span style="color: #009900;">&#41;</span>
			.<span style="color: #660066;">children</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'div:last'</span><span style="color: #009900;">&#41;</span>
				.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
					<span style="color: #3366CC;">'width'</span> <span style="color: #339933;">:</span> options.<span style="color: #660066;">siteWidth</span><span style="color: #339933;">,</span>
					<span style="color: #3366CC;">'margin'</span> <span style="color: #339933;">:</span> <span style="color: #3366CC;">'auto'</span>
				<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
			.<span style="color: #660066;">end</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
			.<span style="color: #660066;">prepend</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;span class=&quot;close&quot;&gt;X&lt;/span&gt;'</span><span style="color: #009900;">&#41;</span>
			.<span style="color: #660066;">children</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.close'</span><span style="color: #009900;">&#41;</span>
				.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
					<span style="color: #3366CC;">'position'</span> <span style="color: #339933;">:</span> <span style="color: #3366CC;">'absolute'</span><span style="color: #339933;">,</span>
					<span style="color: #3366CC;">'cursor'</span> <span style="color: #339933;">:</span> <span style="color: #3366CC;">'pointer'</span><span style="color: #339933;">,</span>
					<span style="color: #3366CC;">'display'</span> <span style="color: #339933;">:</span> <span style="color: #3366CC;">'none'</span>
				<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
			.<span style="color: #660066;">end</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
&nbsp;
			.<span style="color: #660066;">hover</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #006600; font-style: italic;">// over</span>
				$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>
					.<span style="color: #660066;">children</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.close'</span><span style="color: #009900;">&#41;</span>
					.<span style="color: #660066;">show</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
					.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
						$announceDiv.<span style="color: #660066;">slideUp</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">250</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
							$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">remove</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
						<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
					<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
			<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.close'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hide</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// end each</span>
&nbsp;
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>jQuery<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.themeforest.net/screencasts/ask-jw-a-plugin-to-make-important-announcements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with the New &#8220;Envato Marketplace Items&#8221; WordPress Plugin</title>
		<link>http://blog.themeforest.net/general/working-with-the-new-envato-marketplace-items-wordpress-plugin/</link>
		<comments>http://blog.themeforest.net/general/working-with-the-new-envato-marketplace-items-wordpress-plugin/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 02:57:49 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[envato api]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://blog.themeforest.net/?p=2800</guid>
		<description><![CDATA[
Just a few days ago, Envato&#8217;s very own WordPress ninja, Derek Herman, released a new &#8220;Envato Marketplace Items&#8221; plugin for WordPress. Now, with only a few minutes worth of work, you can display your recent files, popular files, and even files according to a specific category on your site. Not only that, but you can [...]]]></description>
			<content:encoded><![CDATA[<p>
Just a few days ago, Envato&#8217;s very own WordPress ninja, <a href="http://valendesigns.com/">Derek Herman</a>, released a new &#8220;<a href="http://valendesigns.com/wordpress/envato-marketplace-items/">Envato Marketplace Items</a>&#8221; plugin for WordPress. Now, with only a few minutes worth of work, you can display your recent files, popular files, and even files according to a specific category on your site. Not only that, but you can additionally attach your referral id to each item and <a href="http://themeforest.net/wiki/referral/referral-program/">earn 30%</a> of your referred user&#8217;s first deposit!
</p>
<p>
In only a few steps, I&#8217;ll show you exactly how to implement this plugin into your own project.
</p>
<h2>Screencast Version </h2>
<p><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='560' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_0817090731.swf' /><param name='flashvars' value='i=17560' /><param name='allowFullScreen' value='true' /><embed src='http://screenr.com/Content/assets/screenr_0817090731.swf' flashvars='i=17560' allowFullScreen='true' width='560' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed></object></p>
<h2>Written Version</h2>
<h3>Step 1: Install the Plugin</h3>
<p>
We begin by accessing the control panel of our WordPress installation. Next, within the sidebar, we choose &#8220;Add New&#8221;, under the &#8220;Plugins&#8221; widget.
</p>
<p><img src="http://themeforest.s3.amazonaws.com/126_plugin/addNew.png" alt="Add New Plugin" /></p>
<p>
Once the page loads, search for &#8220;Envato Marketplace Items.&#8221;
</p>
<p><img src="http://themeforest.s3.amazonaws.com/126_plugin/marketplaceItemsOption.png" alt="Envato Marketplace Item Option" /></p>
<p>
Look far to the right, and click &#8220;Install.&#8221; A modal box will pop up where you can then officially install the plugin. Once the installation has completed, simply click &#8220;Activate!&#8221;</p>
<h2>Step 2: The Settings</h2>
<p>
The next step is to choose your settings. Don&#8217;t worry, it&#8217;s simple. Refer back to the sidebar of your control panel, scroll to the bottom, and under &#8220;Settings,&#8221; choose &#8220;Envato Marketplace.&#8221;
</p>
<p><img src="http://themeforest.s3.amazonaws.com/126_plugin/settings-panel-sidebar.png" alt="Sidebar Option" /></p>
<p>Most of the options are self-explanatory. You have the ability to choose your marketplace, select which kinds of files to display, and the text for the heading of your widget. An additional nifty little feature is the ability to append your referral id to the end of every link. This means that you&#8217;ll receive 30% from your referred user&#8217;s first deposit! Please <a href="http://themeforest.net/wiki/referral/referral-program/">refer here</a> for more details. </p>
<p><img src="http://themeforest.s3.amazonaws.com/126_plugin/settings.png" alt="Settings" /></p>
<p>When choosing which files to display on your blog, you have three options: </p>
<ol>
<li>Files According to User</li>
<li>Files by Category</li>
<li>Popular Files</li>
</ol>
<p>
If working with one of the first two options listed above, you&#8217;ll need to fill out the following textbox, &#8220;API Set Parameter.&#8221; The value within this box should reflect your desired outcome. For example, if I wanted to display only WordPress templates, I would type &#8220;wordpress.&#8221; Alternatively, if I only wanted to display my personal items, I would simply type in my username.
</p>
<h2>Step 3: Add the Code Snippet</h2>
<p>
The final step is to place the provided code snippet (available in the &#8220;Envato Marketplace&#8221; settings page) anywhere within our project:
</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'envato_marketplace_items'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> envato_marketplace_items<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Most likely, you&#8217;ll choose to place this snippet somewhere within your sidebar, as I have.
<p><img src="http://themeforest.s3.amazonaws.com/126_plugin/sidebar.jpg" alt="Coda Example" /></p>
<p>Once you&#8217;ve added this snippet, save it, and upload the revised file to your server! That&#8217;s all! It&#8217;s as easy as that. </p>
<p><img src="http://themeforest.s3.amazonaws.com/126_plugin/final.jpg" alt="Final Product" /></p>
<h2>Questions?</h2>
<p>
As always, if you have any questions, feel free to leave a comment and we&#8217;ll try help you as soon as possible!
</p>
<p>
<em>Please note that this tutorial assumes that you&#8217;re using WordPress 2.8 or newer. If you happen to be using an older installation, you&#8217;ll need to <a href="http://valendesigns.com/wordpress/envato-marketplace-items/">manually download the files<a>, and then upload them to the &#8220;Plugins&#8221; folder of your WordPress installation. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.themeforest.net/general/working-with-the-new-envato-marketplace-items-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Marketplace Features Screencast</title>
		<link>http://blog.themeforest.net/site-news/new-marketplace-features-screencast/</link>
		<comments>http://blog.themeforest.net/site-news/new-marketplace-features-screencast/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 21:00:23 +0000</pubDate>
		<dc:creator>Cyan</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://blog.themeforest.net/?p=2660</guid>
		<description><![CDATA[<p>
A lot has happened within the last twenty four hours, and, understandably, there's a lot to take in! If you have a few moments, why not set aside five minutes to view this screencast and learn about some of the new features in the marketplace redesign that we're all really excited about? When finished viewing, don't forget to leave a comment, via the forums, and let us know your thoughts!
</p>]]></description>
			<content:encoded><![CDATA[<p>
A lot has happened within the last twenty four hours, and, understandably, there&#8217;s a lot to take in! If you have a few moments, why not view this screencast and learn about some of the new features in the marketplace redesign that we&#8217;re all really excited about? When finished viewing, don&#8217;t forget to leave a comment, via the forums, and let us know your thoughts!
</p>
<p><embed src="http://blip.tv/play/hLozgaOmHwA" type="application/x-shockwave-flash" width="600" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.themeforest.net/site-news/new-marketplace-features-screencast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Twitter-Exclusive Quick-Tip Video Series</title>
		<link>http://blog.themeforest.net/screencasts/new-twitter-exclusive-quick-tip-video-series/</link>
		<comments>http://blog.themeforest.net/screencasts/new-twitter-exclusive-quick-tip-video-series/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 16:07:00 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[drop shadow]]></category>
		<category><![CDATA[rounded corners]]></category>
		<category><![CDATA[video tutorials]]></category>

		<guid isPermaLink="false">http://blog.themeforest.net/?p=2470</guid>
		<description><![CDATA[
Last week, I launched a new exclusive quick-tip series for our Twitter followers. What makes this screencast series unique is that they&#8217;re all five minutes or less, and the topic for each entry comes straight from the community! As these will not be posted on the blogs, the only way to stay up to date [...]]]></description>
			<content:encoded><![CDATA[<p>
Last week, I launched a new exclusive quick-tip series for our <a href="http://www.twitter.com/nettuts">Twitter followers</a>. What makes this screencast series unique is that they&#8217;re all five minutes or less, and the topic for each entry comes straight from the community! As these will not be posted on the blogs, the only way to stay up to date is to follow<a href="http://www.twitter.com/nettuts"> Nettuts+</a> and <a href="http://www.twitter.com/themeforest">ThemeForest</a>!
</p>
<p>Just for a one-time sample, here are the first two quick tips. </p>
<h3>How to Make Rounded Corners with CSS and JavaScript.</h3>
<div class="tutorial_image">
<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='560' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_0817090731.swf' /><param name='flashvars' value='i=6094' /><param name='allowFullScreen' value='true' /><embed src='http://screenr.com/Content/assets/screenr_0817090731.swf' flashvars='i=6094' allowFullScreen='true' width='560' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed></object>
</div>
<h3>How to Add a Drop-Shadow Across All Browsers</h3>
<div class="tutorial_image">
   <object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='560' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_0817090731.swf' /><param name='flashvars' value='i=6599' /><param name='allowFullScreen' value='true' /><embed src='http://screenr.com/Content/assets/screenr_0817090731.swf' flashvars='i=6599' allowFullScreen='true' width='560' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed></object>
</div>
<ul class="webroundup">
<li>Please subscribe to the <a href="http://feedproxy.google.com/themeforest" title="ThemeForest RSS Feed">Theme Forest RSS Feed</a>, and follow us on <a href="http://twitter.com/themeforest">Twitter</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.themeforest.net/screencasts/new-twitter-exclusive-quick-tip-video-series/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>WordPress for Designers: Day 18</title>
		<link>http://blog.themeforest.net/wordpress/wordpress-for-designers-day-18/</link>
		<comments>http://blog.themeforest.net/wordpress/wordpress-for-designers-day-18/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 22:44:07 +0000</pubDate>
		<dc:creator>Drew Douglass</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[video tutorials]]></category>
		<category><![CDATA[word press]]></category>
		<category><![CDATA[wordpress for designers]]></category>

		<guid isPermaLink="false">http://blog.themeforest.net/?p=2407</guid>
		<description><![CDATA[I&#8217;ll bet that many of you have used or have been searching for a WordPress contact form to you for yourself or a client. Plugins can be great and very convenient, but your also relying on the plugin developer to make sure it works and does what you want. Today, we are going to build [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll bet that many of you have used or have been searching for a WordPress contact form to you for yourself or a client. Plugins can be great and very convenient, but your also relying on the plugin developer to make sure it works and does what you want. Today, we are going to build our contact page, complete with a working AJAX/php contact form! We will use the jQuery library to pull off the AJAX call and animation effects. It&#8217;s a day you won&#8217;t want to miss if you have ever wondered how to build an AJAX contact form with WordPress.</p>
<h3 style="clear: left;">Day 18: Creating an AJAX Contact Form</h3>
<p></p>
<div>
<embed src="http://blip.tv/play/grg3gZrJDwA" type="application/x-shockwave-flash" width="590" height="443" allowscriptaccess="always" allowfullscreen="true"></embed>
</div>
<h3>Resources you May Enjoy&#8230;</h3>
<ul>
<li><a href='http://docs.jquery.com/Ajax/jQuery.post#urldatacallbacktype'>jquery.post function</a></li>
<li><a href='http://us.php.net/filter_var'>PHP &#8211; filter_var()</a></li>
<li><a href='http://codex.wordpress.org/Function_Reference/wp_enqueue_script'>WP Codex- wp_enqueue_script()</a></li>
</ul>
<ul class="webroundup">
<li>Subscribe to the <a href="http://feedproxy.google.com/themeforest" title="ThemeForest RSS Feed">Theme Forest RSS Feed</a> and follow us on <a href="http://www.twitter.com/themeforest">Twitter</a>.</li>
</ul>
<p>
<script type="text/javascript"><!--digg_url = "post permalink (not digg url)"; // -->
</script><br />
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.themeforest.net/wordpress/wordpress-for-designers-day-18/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>WordPress for Designers: Day 17</title>
		<link>http://blog.themeforest.net/screencasts/wordpress-for-designers-day-17/</link>
		<comments>http://blog.themeforest.net/screencasts/wordpress-for-designers-day-17/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 16:29:25 +0000</pubDate>
		<dc:creator>Drew Douglass</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[video tutorials]]></category>
		<category><![CDATA[wordpress for designers]]></category>
		<category><![CDATA[wordpress wp]]></category>

		<guid isPermaLink="false">http://blog.themeforest.net/?p=2338</guid>
		<description><![CDATA[Did someone call for an integrated back end slider? Well, if you did, we heard you! After much anticipation from our readers, today is the day we integrate our slider with the backend of WordPress. We will learn all about how to use the WordPress media manager to let users setup, add, and edit the [...]]]></description>
			<content:encoded><![CDATA[<p>Did someone call for an integrated back end slider? Well, if you did, we heard you! After much anticipation from our readers, today is the day we integrate our slider with the backend of WordPress. We will learn all about how to use the WordPress media manager to let users setup, add, and edit the slider, all from the convenient backend of WordPress. This is a day you don&#8217;t want to miss, so fire up your server and let&#8217;s do this!</p>
<h3 style="clear: left;">Day 17: Slider</h3>
<p></p>
<div>
<embed src="http://blip.tv/play/grg3gZipLAA" type="application/x-shockwave-flash" width="590" height="443" allowscriptaccess="always" allowfullscreen="true"></embed>
</div>
<h3>Resources you May Enjoy.</h3>
<ul>
<li><a href='http://digwp.com/2009/08/awesome-image-attachment-recipes-for-wordpress/'>Awesome image attachment recipes via DigWP.</a></li>
<li><a href='http://codex.wordpress.org/Function_Reference/WP_Query'>Codex: WP_Query</a></li>
<li><a href='http://codex.wordpress.org/Template_Tags/wp_get_attachment_link'>Codex: wp_get_attachment_link</a></li>
</ul>
<h3>What&#8217;s Next?</h3>
<p>It&#8217;s your call. Now that we have completely covered the slider, what section of the theme would you like to tackle next? The choice is yours!</p>
<ul class="webroundup">
<li>Subscribe to the <a href="http://feedproxy.google.com/themeforest" title="ThemeForest RSS Feed">Theme Forest RSS Feed</a> and follow us on <a href="http://www.twitter.com/themeforest">Twitter</a>.</li>
</ul>
<p>
<script type="text/javascript"><!--digg_url = "post permalink (not digg url)"; // -->
</script><br />
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.themeforest.net/screencasts/wordpress-for-designers-day-17/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>WordPress for Designers: Day 16</title>
		<link>http://blog.themeforest.net/wordpress/wordpress-for-designers-day-16/</link>
		<comments>http://blog.themeforest.net/wordpress/wordpress-for-designers-day-16/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 07:42:12 +0000</pubDate>
		<dc:creator>Drew Douglass</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.themeforest.net/?p=2117</guid>
		<description><![CDATA[Have you missed us? We&#8217;re back and ready for more action with our WordPress for Designers series! We are currently on day sixteen and each fay we are getting closer to completing our goal. Today, we go over creating and styling an entire page from scratch, including the sidebar. Furthermore, we will learn how to [...]]]></description>
			<content:encoded><![CDATA[<p>Have you missed us? We&#8217;re back and ready for more action with our WordPress for Designers series! We are currently on day sixteen and each fay we are getting closer to completing our goal. Today, we go over creating and styling an entire page from scratch, including the sidebar. Furthermore, we will learn how to use multiple custom fields and text area inputs to take full advantage of the power of WordPress from the backend admin panel. Servers on, text editor running, Hanson playing on iTunes, let&#8217;s go!</p>
<h3 style="clear: left;">Day 16</h3>
<p></p>
<div>
<embed src="http://blip.tv/play/grg3gY%2BqXAA" type="application/x-shockwave-flash" width="590" height="443" allowscriptaccess="always" allowfullscreen="true"></embed>
</div>
<h3>Resources you may enjoy:</h3>
<ul>
<li><a href='http://codex.wordpress.org/Using_Custom_Fields'>Wp Codex: Using Custom Fields</a></li>
<li><a href='http://vandelaydesign.com/blog/wordpress/custom-fields/'>20 tutorials and resources for working with custom fields</a></li>
</ul>
<ul class="webroundup">
<li>Subscribe to the <a href="http://feedproxy.google.com/themeforest" title="ThemeForest RSS Feed">Theme Forest RSS Feed</a> and follow us on <a href="http://www.twitter.com/themeforest">Twitter</a>.</li>
</ul>
<p>
<script type="text/javascript"><!--digg_url = "post permalink (not digg url)"; // -->
</script><br />
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.themeforest.net/wordpress/wordpress-for-designers-day-16/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>Ask JW: How Do I Work On My Server in TextMate?</title>
		<link>http://blog.themeforest.net/screencasts/ask-jw-how-do-i-work-on-my-server-in-textmate/</link>
		<comments>http://blog.themeforest.net/screencasts/ask-jw-how-do-i-work-on-my-server-in-textmate/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 22:12:46 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
				<category><![CDATA[Screencasts]]></category>

		<guid isPermaLink="false">http://blog.themeforest.net/?p=1992</guid>
		<description><![CDATA[
The greatest advantage that Coda has over TextMate is that you can work directly on your server. Obviously, by removing the middle-man, we can work much more quickly. This is a bit unfortunate, as TextMate is a much more powerful platform. Thanks to Twitter, I&#8217;ve just learned how to work around this. We&#8217;ll use a [...]]]></description>
			<content:encoded><![CDATA[<p>
The greatest advantage that Coda has over TextMate is that you can work directly on your server. Obviously, by removing the middle-man, we can work much more quickly. This is a bit unfortunate, as TextMate is a much more powerful platform. Thanks to <a href="http://twitter.com/chriscoyier/status/2181516312">Twitter</a>, I&#8217;ve just learned how to work around this. We&#8217;ll use a program, for Mac and PC, called <a href="http://www.expandrive.com/mac">ExpanDrive</a>. For more information, check out this quick <strong>screencast</strong>.
</p>
<div class="tutorial_image">
<embed src="http://blip.tv/play/grg3gYndFgA" type="application/x-shockwave-flash" width="560" height="413" allowscriptaccess="always" allowfullscreen="true"></embed>
</div>
<p>What do you think? I love it. </p>
<ul class="webroundup">
<li>Please subscribe to the <a href="http://feedproxy.google.com/themeforest" title="ThemeForest RSS Feed">Theme Forest RSS Feed</a>, and follow us on <a href="http://twitter.com/themeforest">Twitter</a>.</li>
</ul>
<p>
<script type="text/javascript"><!--digg_url = "post permalink (not digg url)"; // -->
</script><br />
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.themeforest.net/screencasts/ask-jw-how-do-i-work-on-my-server-in-textmate/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Diving into PHP: Day 16</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-16/</link>
		<comments>http://blog.themeforest.net/screencasts/diving-into-php-day-16/#comments</comments>
		<pubDate>Thu, 28 May 2009 01:37:57 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[classes]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php class]]></category>

		<guid isPermaLink="false">http://blog.themeforest.net/?p=1907</guid>
		<description><![CDATA[
Continuing on with our OOP review, we&#8217;ll begin to build a real-world database abstraction class. We&#8217;ll review the __construct magic method, as well as the mysqli object.

Day 16: Database Abstraction Class






Subscribe to the Theme Forest RSS Feed.





]]></description>
			<content:encoded><![CDATA[<p>
Continuing on with our OOP review, we&#8217;ll begin to build a real-world database abstraction class. We&#8217;ll review the __construct magic method, as well as the mysqli object.
</p>
<h3>Day 16: Database Abstraction Class</h3>
<p></p>
<p><embed src="http://blip.tv/play/grg3gYWCFgA" type="application/x-shockwave-flash" width="590" height="443" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<div class="source">
<a href="http://themeforest.s3.amazonaws.com/39_DivingIntoPHP/phpClass_training.zip"><img src="http://net.tutsplus.com/wp-content/themes/nettuts/site_images/button_src_nm.jpg" alt="Download the Source Code" /></a>
</div>
<ul class="webroundup">
<li>Subscribe to the <a href="http://feedproxy.google.com/themeforest" title="ThemeForest RSS Feed">Theme Forest RSS Feed</a>.</li>
</ul>
<p>
<script type="text/javascript"><!--digg_url = "post permalink (not digg url)"; // -->
</script><br />
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.themeforest.net/screencasts/diving-into-php-day-16/feed/</wfw:commentRss>
		<slash:comments>68</slash:comments>
		</item>
		<item>
		<title>WordPress for Designers: Day 15</title>
		<link>http://blog.themeforest.net/wordpress/wordpress-for-designers-day-15/</link>
		<comments>http://blog.themeforest.net/wordpress/wordpress-for-designers-day-15/#comments</comments>
		<pubDate>Tue, 26 May 2009 08:36:32 +0000</pubDate>
		<dc:creator>Drew Douglass</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress for designers]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://blog.themeforest.net/?p=1900</guid>
		<description><![CDATA[We&#8217;re back with our Wordpress for Designers series! Moving on with our &#8216;Paper Business&#8217; theme, it&#8217;s time to bring in the slider. Today, we will build and implement a jQuery slider plugin into WordPress, style it properly, and discuss how we will pull out the information from the admin panel. Let&#8217;s get our slide on!
Day [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re back with our Wordpress for Designers series! Moving on with our &#8216;Paper Business&#8217; theme, it&#8217;s time to bring in the slider. Today, we will build and implement a jQuery slider plugin into WordPress, style it properly, and discuss how we will pull out the information from the admin panel. Let&#8217;s get our slide on!</p>
<h3 style="clear: left;">Day 15: The Slider</h3>
<p></p>
<div>
<embed src="http://blip.tv/play/grg3gYS_VwA" type="application/x-shockwave-flash" width="590" height="443" allowscriptaccess="always" allowfullscreen="true"></embed>
</div>
<h3>Resources You May Enjoy</h3>
<ul>
<li><a href='http://github.com/nathansearles/loopedSlider/tree/master' title='Looped Slider'>Looped Slider Plugin</a></li>
<li><a href='http://code.google.com/apis/ajaxlibs/' title='Google AJAX Libs'>Google AJAX Libraries</a></li>
</ul>
<h3>Custom queries coming!</h3>
<p>On day 16 of our series, we will take the slider we have created and learn how to pull out the information the user has entered. No need for the end user to hard code anything, stay tuned!</p>
<ul class="webroundup">
<li>Subscribe to the <a href="http://feedproxy.google.com/themeforest" title="ThemeForest RSS Feed">Theme Forest RSS Feed</a>.</li>
</ul>
<p>
<script type="text/javascript"><!--digg_url = "post permalink (not digg url)"; // -->
</script><br />
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.themeforest.net/wordpress/wordpress-for-designers-day-15/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
	</channel>
</rss>

