<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>propstm.net</title>
	
	<link>http://www.propstm.net</link>
	<description />
	<lastBuildDate>Wed, 09 Dec 2009 18:16:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Propstm" /><feedburner:info uri="propstm" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><feedburner:emailServiceId>Propstm</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to use RGBA + Examples</title>
		<link>http://feedproxy.google.com/~r/Propstm/~3/4Jz2cbB90V0/</link>
		<comments>http://www.propstm.net/2009/12/09/how-to-use-rgba-examples/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 18:14:13 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.propstm.net/?p=324</guid>
		<description><![CDATA[Today I wanted to talk about RGBA color a bit.  Before I launch off into the post I first want to note that this will not work in all browsers.  As RGBA is something for CSS3 you may want to check this chart to see if your browser of choice is supported.  RGB color is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.propstm.net%2F2009%2F12%2F09%2Fhow-to-use-rgba-examples%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.propstm.net%2F2009%2F12%2F09%2Fhow-to-use-rgba-examples%2F" height="61" width="51" /></a></div><p>Today I wanted to talk about RGBA color a bit.  Before I launch off into the post I first want to note that this will not work in all browsers.  As RGBA is something for CSS3 you may want to check <a href="http://www.css3.info/modules/compatibility-table-colour-module/" target="_blank">this chart</a> to see if your browser of choice is supported.  RGB color is a way of displaying color other than using hex values.  With the CSS3 specification designers and developers get to take RGB one step further and define an alpha or transparency value.  RGBA is a great new way that CSS3 deals with transparency.</p>
<p>Here&#8217;s a quick example of defining a value to red in both hexidecimal values and RGB</p>
<pre>em { color: #ff0000 }           /* #rrggbb */
em { color: rgb(255,0,0) }</pre>
<pre><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, -webkit-fantasy; font-size: small;"><span style="line-height: 19px; white-space: normal;">
</span></span></pre>
<pre><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, fantasy; line-height: 19px; white-space: normal; font-size: 13px;">There are several sites that already use RGBA to create some very interesting and dynamic effects.  <a href="http://24ways.org/2009/working-with-rgba-colour" target="_blank">24ways.org</a> uses RGBA to create a layered overlapping effect.  Other examples such as <a href="http://sam.brown.tc" target="_blank">Sam Brown</a>'s site uses RGBA to once again create a level of depth, and after glancing at the CSS Sam uses RGBA to change the alpha value of many of his various textual elements.  In addition Dan Cedarholm, who writes at <a href="http://simplebits.com/" target="_blank">simplebits.com</a>, and who spoke about RGBA as well as other CSS3 features in his talk on Progressive Enrichment using CSS3 at FOWA last November, uses RGBA for some of the textual elements on his site as well.</span></pre>
<p><img class="aligncenter" title="24Ways.org" src="http://propstm.net/blog_images/24ways.png" alt="" width="940" height="125" /></p>
<p><img class="aligncenter" title="sam.brown.tc" src="http://propstm.net/blog_images/sambrown.png" alt="" width="940" height="125" /></p>
<p><img class="aligncenter" title="SimpleBits.com" src="http://propstm.net/blog_images/simplebits.png" alt="" width="940" height="125" /></p>
<p>Below is a small bit of code i put together just to show how RGBA can be used.  The page changes background color and alpha value when you mouseover the paragraph.</p>
<pre>&lt;html&gt;
 &lt;head&gt;
 &lt;style type="text/css"&gt;
 p {
 width: 300px;
 padding:15px;
 background: rgba(0, 0, 255, .5);
 }

 p:hover{
 background: rgba(0, 0, 255, .75);
 }
 &lt;/style&gt;
 &lt;/head&gt;
 &lt;body&gt;
 &lt;p&gt;This is a sample paragraph that shows how RGBA works.
 This is a sample paragraph that shows how RGBA works.
 This is a sample paragraph that shows how RGBA works.&lt;/p&gt;    
 &lt;/body&gt;
&lt;/html&gt;</pre>
<p><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, -webkit-fantasy; ">From my standpoint, the thing that I really like is the fact that by replacing a normal hex value with RGBA, I define a color just the same, however I&#8217;m also given the alpha value which seems as though it could be a jumping point to many great new uses.  I think I may be doing a few more posts in this style, so let me know what you think.  Hopefully this sort example helps, and don&#8217;t be afraid to leave a comment or reach out to me on <a href="http://www.twitter.com/propstm" target="_blank">Twitter</a>.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.propstm.net/2009/12/09/how-to-use-rgba-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.propstm.net/2009/12/09/how-to-use-rgba-examples/</feedburner:origLink></item>
		<item>
		<title>Why Client Revisions Shouldn’t Be Allowed</title>
		<link>http://feedproxy.google.com/~r/Propstm/~3/StpU2f9o_Fc/</link>
		<comments>http://www.propstm.net/2009/12/07/why-client-revisions-shouldnt-be-allowed/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 12:00:27 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.propstm.net/?p=315</guid>
		<description><![CDATA[This past week The Oatmeal had a post called How A Web Design Goes Straight To Hell.  The post got quite popular, getting on Digg and became a trending topic on Twitter.  After reading the comic and finding it quite amusing, one thing went off in my head;  that post makes one thing obvious to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.propstm.net%2F2009%2F12%2F07%2Fwhy-client-revisions-shouldnt-be-allowed%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.propstm.net%2F2009%2F12%2F07%2Fwhy-client-revisions-shouldnt-be-allowed%2F" height="61" width="51" /></a></div><p>This past week The Oatmeal had a post called How A Web Design Goes Straight To Hell.  The post got quite popular, getting on Digg and became a trending topic on Twitter.  After reading the comic and finding it quite amusing, one thing went off in my head;  that post makes one thing obvious to me, client revisions are bad.  Normally these revision occur after you&#8217;ve delivered the product to the client and they want to make &#8220;tweaks&#8221;.  I&#8217;ll say I HATE that!</p>
<p>If you are doing your job correctly as a designer you a developing a creative brief for the client outlining a solution, or solutions to their problems.  By the time deliverables reach the client they should meet all requirements of the creative brief.  If the client is paying a designer to create something because the client cannot.  The client needs to know that the end product will meet the creative brief and that the designer&#8217;s work is in the best interest of the customer.</p>
<p>Client revisions should not be needed if the project is planned correctly and all requirements of the client are addressed when the designer creates the end product.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.propstm.net/2009/12/07/why-client-revisions-shouldnt-be-allowed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.propstm.net/2009/12/07/why-client-revisions-shouldnt-be-allowed/</feedburner:origLink></item>
		<item>
		<title>Learning from Failure at ThemeForest</title>
		<link>http://feedproxy.google.com/~r/Propstm/~3/lAOOlAUk3Pg/</link>
		<comments>http://www.propstm.net/2009/11/29/learning-from-failure-at-themeforest/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 23:47:10 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.propstm.net/?p=292</guid>
		<description><![CDATA[Last Friday I submitted my first theme to ThemeForest.net.  Last Friday my theme was denied by ThemeForest.net. Being entirely realistic my theme would either be approved or denied.  Considering this was my first try at the process of theme submission for ThemeForest I had more going against me, than for me.  Failure [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.propstm.net%2F2009%2F11%2F29%2Flearning-from-failure-at-themeforest%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.propstm.net%2F2009%2F11%2F29%2Flearning-from-failure-at-themeforest%2F" height="61" width="51" /></a></div><p>Last Friday I submitted my first theme to ThemeForest.net.  Last Friday my theme was denied by ThemeForest.net. Being entirely realistic my theme would either be approved or denied.  Considering this was my first try at the process of theme submission for ThemeForest I had more going against me, than for me.  Failure would undoubtedly be a learning process.</p>
<h3><strong>When I found out I&#8217;d been denied, here is what I first saw: </strong></h3>
<p>&#8220;Thanks so much for taking the time to submit this template. Unfortunately, due to our current quality standards, your template has been declined. Here are a few improvements you might consider making before resubmitting:</p>
<p>1.This template is not aesthetic ready for TF and it will be very hard to be improved and get accepted. It required many improvements in term of design, visual hierarchy, typography, layout and its aesthetic quality.<br />
2. You need to provide a more decent help file: <a href="http://blog.themeforest.net/site-news/building-better-template-documentation/" target="_blank">http://blog.themeforest.net/site-news/building-better-template-documentation/</a><br />
3. You need to provide the new wordpress GPL license within the download.&#8221;</p>
<p>That information from the email helped me greatly.  ThemeForest has content about how to create proper documentation, and also <a href="http://blog.themeforest.net/site-news/important-change-to-wordpress-license-takes-effect-today-please-read/" target="_blank">information</a> about proper licensing for Wordpress.  Had I not been denied, I would not know about those resources.</p>
<h3><strong>Failure allowed me to look for constructive criticism.</strong></h3>
<p><img class="alignleft" title="Why Wordpress" src="http://www.propstm.net/images/question.jpg" alt="" width="297" height="93" />After I was denied I tweeted about it.  By tweeting about it I found out people were intrigued.  People wanted to know not only why I was denied, but what I had submitted people asked for screenshots.  After sending off some screenshots and talking with a few folks the suggestions started coming back to me.  Why did I code it for WP?  Why not just a template?  A template was honestly something that was something I didn&#8217;t even think of.  I&#8217;d helped develop with a similar static version of the theme for a friend about a year ago.  The reason I&#8217;d done it in Wordpress is because the static version was clumsy, &amp; my buddy liked it, but he had trouble updating his portfolio.  Choosing Wordpress, I was able to modify the static version and allow users to easily add or modify their portfolio using the easy to manipulate Wordpress backend.</p>
<p>After looking at my work, being honest with myself, and thinking of my reasons, I concluded one thing; The portfolio theme I created works, but it is NOT for the TF Wordpress section.</p>
<h3>Drawing conclusions from my failure</h3>
<p>First off, ThemeForest is a tough site to get into.  There is a level of quality which your work must have in order to be accepted.  Everyday work just wont cut it.  Second, document the hell out of your work.  If you work gets accepted, other people will look at your work, and the WILL WONDER &#8220;What the heck was this guy thinking?&#8221;  Documentation helps answer anyone&#8217;s questions, and hopefully save you as the developer from answering those questions after the fact. Third, this is all a learning process.  I&#8217;ve learned what NOT to do, now next time I can only work to improve.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.propstm.net/2009/11/29/learning-from-failure-at-themeforest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.propstm.net/2009/11/29/learning-from-failure-at-themeforest/</feedburner:origLink></item>
		<item>
		<title>How To Export a Transparent Movie from After Effects</title>
		<link>http://feedproxy.google.com/~r/Propstm/~3/uB9EvUqdNLA/</link>
		<comments>http://www.propstm.net/2009/11/25/how-to-export-a-transparent-movie-from-after-effects/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 01:48:29 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[After Effects]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.propstm.net/?p=298</guid>
		<description><![CDATA[This tutorial is based on need.  I needed this info earlier today, and I had to sort through about a half dozen sites to find all of this information.  The scenario is as follows:  I was tasked with creating an animated movie that has a layer of transparency.  My client did not know what color [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.propstm.net%2F2009%2F11%2F25%2Fhow-to-export-a-transparent-movie-from-after-effects%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.propstm.net%2F2009%2F11%2F25%2Fhow-to-export-a-transparent-movie-from-after-effects%2F" height="61" width="51" /></a></div><p>This tutorial is based on need.  I needed this info earlier today, and I had to sort through about a half dozen sites to find all of this information.  The scenario is as follows:  I was tasked with creating an animated movie that has a layer of transparency.  My client did not know what color they were going to use as their background for the site, but they wanted an animated movie to transition into showing their logo.  Knowing this was my task I then posed two questions; How do I get a movie to render with an alpha layer in After Effects?  Also, can that transparent movie be put into Flash and published in Flash all the while maintaining the transparency?</p>
<ul>
<li><img class="alignright" title="Toggle Transparent View" src="http://propstm.net/blog_images/toggleTransView.png" alt="" width="470" height="69" />To Start we open up After Effects and create a new Composition.  To ensure that we have no background layer toggle the Transparency Grid so that you get a &#8220;waffle background&#8221; which will look the same as when you are working with a transparent background in Photoshop.</li>
<li>Next just go crazy in After Effects and create your movie.  For this example I just put two different text elements onto the composition and gave them both a little big of animation.  After Effects allows you to import assets, so if you create a very nice background of image in Photoshop that was you want to use, just go to <strong>File -&gt; Import -&gt; File&#8230;</strong> and bring in anything you want to use.</li>
<li>Once your movie is created you will want to render it so that you can use it in Flash.  To render your video go to Composition -&gt; Add to Render Queue</li>
<li>Now that you are in the Render Queue locate Output Module, and click on the yellow text next to it to bring up the Output Module Settings.  Go to Video Output and make sure that under Channels, RGB+Alpha is selected and that you Depth is Millions of Colors+.  Those two settings are key to making sure you get a transparent movie.</li>
</ul>
<p style="text-align: center;"><img class="alignnone" title="Set Transparency in AE" src="http://propstm.net/blog_images/setAlpha.png" alt="" width="470" height="326" /></p>
<ul>
<li>Since we are working with Flash after this we want to set our Format to FLV.  Now that we&#8217;re done with that we want to hit the OK button. Last, make sure you video has a title under Output To on the main Render Queue tab and finally to render the video hit the Render button in the upper right of the Render Queue.</li>
<li>Now close out of After Effects and open up Flash.  You will want to create a new file.  Once you get your new file you will want to go to <strong>File -&gt; Import -&gt; Import Video&#8230;</strong> to bring in your video you just created. Browse to your video, then make sure to choose &#8220;Embed FLV in SWF and play in timeline&#8221;.  Now hit OK and your video will be brought into your Flash file.</li>
<li>Your stage may appear to be blank but this is because you video plays out along the timeline.  To view your video scrub across the timeline, or hit CTRL + Enter to view the SWF.</li>
</ul>
<p style="text-align: center;"><img class="alignnone" title="Black Stage in Flash" src="http://propstm.net/blog_images/blankStage.png" alt="" width="470" height="294" /></p>
<ul>
<li>The final step to this whole process is publishing the Flash file.  To make sure we preserve the transparency, go to<strong> File -&gt; Publish Settings&#8230; </strong>Click on HTML to get the HTML Settings. Under Window Mode select Transparent Windowless.  Now just hit the Publish button and your SWF and HTML file will be published with movie in it.  Now no matter what image you set as your background, or background color you choose, it will show through.</li>
<p style="text-align: center;"><img class="alignnone" title="Save Transparent From Flash" src="http://propstm.net/blog_images/saveTransparent.png" alt="" width="470" height="331" /></p>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.propstm.net/2009/11/25/how-to-export-a-transparent-movie-from-after-effects/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.propstm.net/2009/11/25/how-to-export-a-transparent-movie-from-after-effects/</feedburner:origLink></item>
		<item>
		<title>Future of Web Design 09 – Drawing Conclusions</title>
		<link>http://feedproxy.google.com/~r/Propstm/~3/RDyLjikvn7A/</link>
		<comments>http://www.propstm.net/2009/11/18/future-of-web-design-09-drawing-conclusions/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 13:30:07 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.propstm.net/?p=284</guid>
		<description><![CDATA[I had a great time today at Future of Web Design.  There were a bunch of great speakers, great conversation, and great visuals.  I was very pleased with the content presented and will surely take more than a few things away and use these gems with my work.  Now i&#8217;d like to draw conclusions.  I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.propstm.net%2F2009%2F11%2F18%2Ffuture-of-web-design-09-drawing-conclusions%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.propstm.net%2F2009%2F11%2F18%2Ffuture-of-web-design-09-drawing-conclusions%2F" height="61" width="51" /></a></div><p>I had a great time today at Future of Web Design.  There were a bunch of great speakers, great conversation, and great visuals.  I was very pleased with the content presented and will surely take more than a few things away and use these gems with my work.  Now i&#8217;d like to draw conclusions.  I&#8217;m not going to review each individual speaker&#8217;s content, but instead I&#8217;d like to just outline the themes, concepts, and quotes which stuck out to me*.</p>
<p><strong>From Dan Cederholm&#8217;s talk on Progressive Enhancement with CSS3:</strong></p>
<ul>
<li>None of it matters if it&#8217;s not there.  &#8211; Make stuff beautiful for Safari and FF users, if people in IE can&#8217;t see it, it doesn&#8217;t matter.</li>
<li>Also from Dan&#8217;s talk I think i&#8217;ve come to the conclusion that transforms in CSS3 are amazing, if used in moderation.</li>
</ul>
<p><strong>From Daniel Burka&#8217;s talk on Feedback:</strong></p>
<ul>
<li>Feedback isn&#8217;t always easy to get.</li>
<li>Read between the lines, users who complain don&#8217;t usually want a solution but are simply helping you to identify a possible problem.</li>
<li>Negative feedback = Passion!</li>
</ul>
<p><strong>From Mike Kus&#8217; 3-D Thinking Talk:</strong></p>
<ul>
<li>Design happens at any time.</li>
<li>Ban boring trends.</li>
<li>&#8220;Progress and innovation in design requires exploration&#8221;.</li>
</ul>
<p><strong>From Elliot Jay Stocks&#8217; Designing for Modern Web:</strong></p>
<ul>
<li>Visually appealing is better User Experience.</li>
<li>Good design on the web is Important!</li>
<li>The nicer something looks, the longer visitors stay, and the more stuff visitors will read.</li>
<li>&#8220;Validation is irrelevant.&#8221;</li>
<li>Validation does not equal conformity to web standards.</li>
<li>Plan for degradation.</li>
</ul>
<p><strong>From Joshua Davis&#8217; Keynote on the topic of &#8220;Space&#8221;:</strong></p>
<ul>
<li>&#8220;Clients are the problem.&#8221;</li>
<li>&#8220;If M.C. Escher was alive, he&#8217;d be a f**kin&#8217; programmer.&#8221;</li>
<li>Drastic changes are not required for drastic results.</li>
<li>Through not knowing, trying will ALWAYS cause you to learn.</li>
<li>If you don&#8217;t ask, the answer is always &#8220;no&#8221;.</li>
<li>&#8220;If I&#8217;m not making mistakes, I&#8217;m not learning.&#8221;</li>
</ul>
<p><small>*Stuck with me, and the ones I had notes from in my notebook.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.propstm.net/2009/11/18/future-of-web-design-09-drawing-conclusions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.propstm.net/2009/11/18/future-of-web-design-09-drawing-conclusions/</feedburner:origLink></item>
	</channel>
</rss>
