<?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>Blind Acre Media &#187; tutorial</title>
	<atom:link href="http://blindacre.com/blog/tag/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://blindacre.com/blog</link>
	<description>Website Design &#38; Development Blog, Internet Marketing Blog</description>
	<lastBuildDate>Tue, 07 Sep 2010 13:34:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating a Facebook style menu (The BAM Menu)</title>
		<link>http://blindacre.com/blog/2010/04/19/creating-a-facebook-style-menu-the-bam-menu/</link>
		<comments>http://blindacre.com/blog/2010/04/19/creating-a-facebook-style-menu-the-bam-menu/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 18:48:48 +0000</pubDate>
		<dc:creator>bam</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[primary navigation]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[webpage]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blindacre.com/blog/?p=243</guid>
		<description><![CDATA[One of the questions we get most often about our website is, &#8220;How did you do your primary navigation menu?&#8221; (actually it&#8217;s normally worded more like, &#8220;I really like that menu thingy at the bottom of you web page. It&#8217;s like facebook! How&#8217;d you do that?&#8221;) You can see the navigation on our main site [...]]]></description>
			<content:encoded><![CDATA[<p>One of the questions we get most often about our website is, &#8220;How did you do your primary navigation menu?&#8221; (actually it&#8217;s normally worded more like, &#8220;I really like that menu thingy at the bottom of you web page. It&#8217;s like facebook! How&#8217;d you do that?&#8221;) You can see the navigation on our main site at <a href="http://www.blindacre.com">blindacre.com</a></p>
<p>Here&#8217;s the answer.</p>
<p>It&#8217;s actually pretty simple in it&#8217;s current state.</p>
<p><strong>First</strong>, you need to start off by building your containers with appropriate background images and such which looks something like this:</p>
<blockquote><p><code>&lt;div id="container"&gt;&lt;/div&gt;</code></p></blockquote>
<p>With CSS that looks eerily similar to this:</p>
<blockquote><p><code>#container {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;height:70px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;width:900px;<br />
}</code></p></blockquote>
<p><strong>Then</strong> add your background image, which gives you this:</p>
<blockquote><p><code>#container {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;height:70px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;width:900px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;background:url(image.png) bottom center no-repeat;<br />
} </code></p></blockquote>
<p>Now, what you&#8217;re left with is a div that&#8217;s at the top of your page that&#8217;s 70 pixels tall, 900px wide and has a background image that&#8217;s at the bottom/center of the div.</p>
<p><strong>Next</strong> is the positioning trick. In order to get the div to stay at the bottom of the page and not move when you scroll there a bit more CSS to add to the container. We need to position the div to be static, and then center it in the window.</p>
<p>To make it not scroll:</p>
<blockquote><p><code>#container {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;height:70px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;width:900px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;background:url(image.png) bottom  center no-repeat;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;position:fixed;<br />
}</code></p></blockquote>
<p>Take make it at the bottom of the window:</p>
<blockquote><p><code>#container {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;height:70px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;width:900px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;background:url(image.png) bottom   center no-repeat;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;position:fixed;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bottom:0;<br />
}</code></p></blockquote>
<p>To make it in the center. This is a two parter. First we need to determine the center of the page:</p>
<blockquote><p><code>#container {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;height:70px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;width:900px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;background:url(image.png) bottom center no-repeat;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;position:fixed;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bottom:0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;left:50%<br />
}</code></p></blockquote>
<p>That makes it so that the left side of the div is aligned to the middle of the screen. Now we need to pull the div to the left by giving it a negative left margin of half of the entire width of the div (remember that the div is already set to be 900px wide).</p>
<blockquote><p><code>#container {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;height:70px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;width:900px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;background:url(image.png) bottom     center no-repeat;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;position:fixed;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bottom:0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;left:50%;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;margin-left:-450px;<br />
}</code></p></blockquote>
<p>That&#8217;s it! Now you just need to find a good drop down menu system to plug into that and you&#8217;re gold. The navigation system we used was a highly customized Jquery plugin that&#8217;s meant to emulate Mac&#8217;s Stacks. We had to retool it to work on a toggle so that one disappears when another is opened&#8230;but that&#8217;s a different post for a different time ; )</p>
<p>-Steve</p>
]]></content:encoded>
			<wfw:commentRss>http://blindacre.com/blog/2010/04/19/creating-a-facebook-style-menu-the-bam-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keyboard shortcuts in CS4</title>
		<link>http://blindacre.com/blog/2010/03/14/keyboard-shortcuts-in-cs4/</link>
		<comments>http://blindacre.com/blog/2010/03/14/keyboard-shortcuts-in-cs4/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 02:00:14 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[cs4]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[key commands]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blindacre.com/blog/2010/03/14/keyboard-shortcuts-in-cs4/</guid>
		<description><![CDATA[Adobe has, for a very long time, been at the forefront of the design community as the software of choice for web and print design. When Adobe starting buying out Macromedia, they took great care in turning their individual pieces of software into a suite; all programs are supposed to work harmoniously with each other [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe has, for a very long time, been at the forefront of the design community as the software of choice for web and print design. When Adobe starting buying out Macromedia, they took great care in turning their individual pieces of software into a suite; all programs are supposed to work harmoniously with each other for a more efficient and enjoyable work flow. However, they dropped the ball on one of the most simple aspects of this feat; shortcut keys.</p>
<p>One can argue that they didn’t change the shortcut keys on all of the programs because people were already used to, and had already established, their muscle memory for the pre-established keystrokes. My opinion is that the new programs have been around long enough that it’s time to make the simplest aspect of consistency consistent. Let’s face it, it’s completely absurd that to hide an application you press Command-H in Dreamweaver, Command-Shift-H in Photoshop, and Illustrator totally lacks a default keystroke for hiding altogether.</p>
<p>Now, Adobe doesn’t appear to be changing this any time soon, however they did set the programs up to customize all key commands on your own.</p>
<p>It’s honestly as simple as selecting Edit &gt; Keystrokes</p>
<p>From there, you can view either shortcuts for tools or shortcuts for each menu item categorized by a high level menu option.</p>
<p>Once you find a shortcut you would like to change, click on the appropriate column and then simply type the keys you would like to assign to that shortcut and the symbols for those keys will appear. Hit save and you’re all set – and one step closer to better efficiency.</p>
]]></content:encoded>
			<wfw:commentRss>http://blindacre.com/blog/2010/03/14/keyboard-shortcuts-in-cs4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating an HTML Email for Blasts and Newsletters</title>
		<link>http://blindacre.com/blog/2010/01/04/creating-an-html-email-for-blasts-and-newsletters/</link>
		<comments>http://blindacre.com/blog/2010/01/04/creating-an-html-email-for-blasts-and-newsletters/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 15:51:10 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blindacre.com/blog/?p=55</guid>
		<description><![CDATA[Creating an HTML email for newsletter and email blasts can actually be a lot trickier than you&#8217;d think. First, a few points to always remember:
1. Email Clients are dumb
When creating an HTML email always remember that you&#8217;re basically creating a web page for someone in 1996. This means that you should be using the simplest [...]]]></description>
			<content:encoded><![CDATA[<p>Creating an HTML email for newsletter and email blasts can actually be a lot trickier than you&#8217;d think. First, a few points to always remember:</p>
<h2>1. Email Clients are dumb</h2>
<p>When creating an HTML email always remember that you&#8217;re basically creating a web page for someone in 1996. This means that you should be using the simplest in HTML tags, and when using CSS, don&#8217;t use floats, absolute positioning, and use CSS shorthand sparingly.</p>
<h2>2. Don&#8217;t copy and paste or import a Word file as the content in your email.</h2>
<p>If you paste in from Word you&#8217;ll also be pasting in Word&#8217;s special characters which tend to fail-out when viewed in an email client (or a basic web-browser for that matter). What I mean by that is that a quotation mark pasted in from word will be the pretty curved quotation mark instead of the web-standard straight-quotes. So, if it&#8217;s THAT important to you to have curly quotes you would actually need to replace all quotations with either the code <code>&amp;ldquo;</code> or <code>&amp;rdquo;</code></p>
<p>You&#8217;ll also end up with a bunch of useless XML and styling that doesn&#8217;t do anything but mess things up like <a href="http://www.blindacre.com/blog/snips/word-xml.html" target="_blank">this</a>.</p>
<h2>3. Width</h2>
<p>Remember that most people viewing your emails won&#8217;t be seeing it in a web browser, they&#8217;ll be looking at it in Mac Mail, Outlook, Entourage, Thunderbird, etc. So, the standard rules of website width don&#8217;t apply. You&#8217;ll want to keep email below 650 pixels.</p>
<h2>4. The &lt;head&gt; is useless</h2>
<p>Don&#8217;t spend too much time playing with the information in the Head of the HTML. In fact, you can delete it. Most email clients will remove it anyway so it doesn&#8217;t interfere with their own interface.</p>
<h2>5. Don&#8217;t give it a DOCTYPE</h2>
<p>Remove any DOCTYPE information from the top of the HTML. Because you&#8217;re going to be using depreciated and long-handed code the DOCTYPE may actually interfere with what you&#8217;re trying to accomplish.</p>
<h2>6. No external stylesheets</h2>
<p>Trying to use external stylesheets is generally a bad idea. Its support between email clients is spotty at best. It&#8217;s best practice to APPLY ALL STYLES INLINE.</p>
<h2>7. No Javascript or Flash</h2>
<p>As stated in #6, support for in-email Javascript is very spotty because of security issues. Flash just straight-up won&#8217;t work&#8230;don&#8217;t even think about it.</p>
<h2>8. Always give direct source URLs</h2>
<p>When linking images up to your email, remember, they always must be hosted online on a public server. So, never leave an image tag like this: <code>&lt;img src="image.gif" /&gt;</code>. The <code>src=""</code> should always be a direct link: <code>&lt;img src="http://www.blindacre.com/blog/image.gif" /&gt;</code></p>
<p>SO, now that we&#8217;ve got the Top 8 things to remember, what we&#8217;re left with is a basic HTML shell that looks like this:</p>
<blockquote><p><code><br />
&lt;html&gt;<br />
&lt;body&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></p></blockquote>
<p>Adding in a 650 pixel wide column to contain the content of the email that is centered in the window should look something like this:</p>
<blockquote><p><code><br />
&lt;html&gt;<br />
&lt;body&gt;<br />
&lt;div align="center"&gt;<br />
&lt;table width="650"&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></p></blockquote>
<p>Now we basically have a shell ready, you can put all content between the <code>&lt;td&gt;&lt;/td&gt;</code> tag (the table cell) or separate your main table into rows and columns for your layout.</p>
<p>Now, let&#8217;s add some content</p>
<blockquote><p><code><br />
&lt;html&gt;<br />
&lt;body&gt;<br />
&lt;div align="center"&gt;<br />
&lt;table width="650"&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;</code><code><br />
&lt;h1&gt;</code>This is the Heading!<code>&lt;/h1&gt;</code><br />
<code>&lt;h2&gt;</code>This is a Sub-Heading<code>&lt;/h2&gt;</code><br />
<code>&lt;img src="http://www.blindacre.com/images/logo.png" /&gt;</code><br />
<code>&lt;p&gt;</code>Lorem ipsum dolor sit amet, consectetur <code>&lt;a href="http://www.blindacre.com/"&gt;</code>adipisicing elit<code>&lt;/a&gt;</code>, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<code>&lt;/p&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></p></blockquote>
<p>This bit of code gives us an email that looks like this:</p>
<p><a href="http://blindacre.com/blog/wp-content/uploads/2010/01/Picture-6.png"><img class="aligncenter size-full wp-image-72" title="Email with content - no styles" src="http://blindacre.com/blog/wp-content/uploads/2010/01/Picture-6.png" alt="" width="800" height="338" /></a>Ok, we&#8217;ve got the layout and we&#8217;ve got the content, now lets add some styles.</p>
<p>REMEMBER: Keep all styles and CSS in-line, and don&#8217;t use any shorthand!!!</p>
<blockquote style="width: 845px;"><p><code><br />
&lt;html&gt;<br />
&lt;body <span style="color: #ff0ff0;">style="margin-top:0px; margin-bottom:0px; background-color:#2d2d2d;",</span>&gt;<br />
&lt;div align="center"&gt;<br />
&lt;table width="650" cellpadding="20"&gt;<br />
&lt;tr&gt;<br />
&lt;td <span style="color: #ff0ff0;">style="background-color:#1d1d1d;"</span>&gt;<br />
&lt;h1 <span style="color: #ff0ff0;">style="font-size:35pt; color:#899C2D; font-family:Georgia, 'Times New Roman', Times, serif; margin-bottom:0px; padding-bottom:5px; font-weight:normal; border-bottom:1px solid #cccccc;"</span>&gt;</code>This is the Heading!<code>&lt;/h1&gt;</code><br />
<code>&lt;h2 <span style="color: #ff0ff0;">style="font-size:18pt; color:#899C2D; margin-top:0px; margin-bottom:20px; font-weight:normal; text-align:right; font-style:italic;"</span>&gt;</code>This is a Sub-Heading<code>&lt;/h2&gt;</code><br />
<code>&lt;center&gt;&lt;img src="http://www.blindacre.com/images/logo.png" border="0" /&gt;&lt;/center&gt;<br />
&lt;p <span style="color: #ff0ff0;">style="font-size:12pt; line-height:30px; font-family:'Lucida Grande', Arial, Verdana, sans-serif; color:#888888;"</span>&gt;</code>Lorem ipsum dolor sit amet, consectetur <code>&lt;a href="http://www.blindacre.com/" <span style="color: #ff0ff0;">style="color:#899C2D;"</span>&gt;</code>adipisicing elit<code>&lt;/a&gt;</code>, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<code>&lt;/p&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></p></blockquote>
<p>As you can see, all CSS is inline (and in pink).</p>
<p>The code above with the styles now gives us an email like this:</p>
<p><a href="http://blindacre.com/blog/wp-content/uploads/2010/01/Picture-8.png"><img class="aligncenter size-full wp-image-80" title="Email WITH Styles" src="http://blindacre.com/blog/wp-content/uploads/2010/01/Picture-8.png" alt="" width="821" height="423" /></a>Now, once you&#8217;re all done with your pretty HTML email design and you think it&#8217;s ready to send be sure to CHECK AND RE-CHECK THE EMAIL IN MULTIPLE EMAIL CLIENTS!!!</p>
<p>The email clients you&#8217;ll especially want to watch out for are:</p>
<ol>
<li>Outlook</li>
<li>Outlook Express</li>
<li>Mac Mail</li>
<li>Entourage</li>
<li>Thunderbird</li>
</ol>
<p>You&#8217;ll also want to sign up for a few different free email providers including:</p>
<ol>
<li>Gmail</li>
<li>Yahoo</li>
<li>Hotmail</li>
<li>AOL</li>
</ol>
<p>That&#8217;s all for now &#8211; if you have any questions or think we missed something important, leave us a comment and we&#8217;ll answer ASAP.</p>
<p>-Steve</p>
]]></content:encoded>
			<wfw:commentRss>http://blindacre.com/blog/2010/01/04/creating-an-html-email-for-blasts-and-newsletters/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iCal Invitations are an hour off</title>
		<link>http://blindacre.com/blog/2009/12/30/ical-invitations-are-an-hour-off/</link>
		<comments>http://blindacre.com/blog/2009/12/30/ical-invitations-are-an-hour-off/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 12:50:25 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[iCal]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blindacre.com/blog/?p=42</guid>
		<description><![CDATA[So, for the last month or so every iCal invitation I got has been an hour off. Meaning if there was a meeting scheduled for 1pm, it would show up in my iCal as being at 12pm.
OBVIOUSLY this was a huge frustration; everyone was blaming everyone else for their timezone being wrong, there was rioting [...]]]></description>
			<content:encoded><![CDATA[<p>So, for the last month or so every iCal invitation I got has been an hour off. Meaning if there was a meeting scheduled for 1pm, it would show up in my iCal as being at 12pm.</p>
<p>OBVIOUSLY this was a huge frustration; everyone was blaming everyone else for their timezone being wrong, there was rioting in the streets, etc.</p>
<p>After a quick Googling, I found a short forum post on the Apple Support site that explains what the problem is.</p>
<p>Go to iCal &gt; Preferences &gt; Advanced and UNCHECK &#8220;Turn on timezone support&#8221;.</p>
<div id="attachment_43" class="wp-caption aligncenter" style="width: 407px"><a href="http://blindacre.com/blog/wp-content/uploads/2009/12/Picture-6.png"><img class="size-full wp-image-43" title="iCal Times Wrong" src="http://blindacre.com/blog/wp-content/uploads/2009/12/Picture-6.png" alt="" width="397" height="319" /></a><p class="wp-caption-text">Turn off timezone support</p></div>
<p>Apparently this is another one of those bugs in iCal that Apple decided to overlook and send to market anyway&#8230;kind of like not being able to cancel the dialog window if you accidentally open the editing pane of an event.</p>
<div id="attachment_45" class="wp-caption aligncenter" style="width: 311px"><a href="http://blindacre.com/blog/wp-content/uploads/2009/12/Picture-81.png"><img class="size-full wp-image-45" title="Can't Cancel iCal Event Edit" src="http://blindacre.com/blog/wp-content/uploads/2009/12/Picture-81.png" alt="" width="301" height="406" /></a><p class="wp-caption-text">See...no cancel option. You HAVE TO sent it out.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blindacre.com/blog/2009/12/30/ical-invitations-are-an-hour-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vector Paths Between Pixels in Photoshop CS4</title>
		<link>http://blindacre.com/blog/2009/12/23/vector-paths-between-pixels-in-photoshop-cs4/</link>
		<comments>http://blindacre.com/blog/2009/12/23/vector-paths-between-pixels-in-photoshop-cs4/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 12:55:09 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[anchors]]></category>
		<category><![CDATA[cs4]]></category>
		<category><![CDATA[paths]]></category>
		<category><![CDATA[rectangle]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://blindacre.com/blog/?p=13</guid>
		<description><![CDATA[If you&#8217;re at all familiar or have any experience in Photoshop using vector paths and shapes than you&#8217;ve probably noticed sometimes when you&#8217;re making a rectangle that sometimes the lines just don&#8217;t quite seem very sharp. If you&#8217;ve got a keen eye, you&#8217;ll see exactly what I mean.
What&#8217;s really going on here?
For whatever reason, Adobe [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re at all familiar or have any experience in Photoshop using vector paths and shapes than you&#8217;ve probably noticed sometimes when you&#8217;re making a rectangle that sometimes the lines just don&#8217;t quite seem very sharp. If you&#8217;ve got a keen eye, you&#8217;ll see exactly what I mean.</p>
<div id="attachment_25" class="wp-caption aligncenter" style="width: 418px"><a href="http://blindacre.com/blog/wp-content/uploads/2009/12/example.png"><img class="size-full wp-image-25" title="Fuzzy edges vs. Crisp edges" src="http://blindacre.com/blog/wp-content/uploads/2009/12/example.png" alt="" width="408" height="192" /></a><p class="wp-caption-text">Fuzzy edges vs. Crisp edges</p></div>
<p>What&#8217;s really going on here?</p>
<p>For whatever reason, Adobe decided to allow vector paths to actually float BETWEEN pixels causing some amount of anti-aliasing to occur on sharp edges, thus making them not so sharp.</p>
<div id="attachment_16" class="wp-caption aligncenter" style="width: 458px"><a href="http://blindacre.com/blog/wp-content/uploads/2009/12/shift-between-pixels.png"><img class="size-full wp-image-16" title="Closeup of vector path sitting between pixels" src="http://blindacre.com/blog/wp-content/uploads/2009/12/shift-between-pixels.png" alt="" width="448" height="300" /></a><p class="wp-caption-text">Zoomed in you can clearly see that the path forming the rectangle is between pixels</p></div>
<p>There are, as far as I can tell 3 ways to avoid this.</p>
<ol>
<li>Have perfect mouse-eye coordination</li>
<li>Fix it after the fact</li>
<li>Make it so it doesn&#8217;t happen in the first place</li>
</ol>
<p>The first option is obviously NOT the best way to go&#8230;no one&#8217;s that good.</p>
<p>So, on to the second option.</p>
<p>If you notice that this happened to your vector shapes than you need to zoom in nearly to the max 3200%, grab each anchor point on a given side with your Direct Selection tool (the white arrow &#8211; keyboard shortcut &#8220;A&#8221;) and nudge the points into position with your arrow keys.</p>
<p>Aside from this being time consuming and annoying, there&#8217;s also potential for mathematical errors in the dimensions of your shape. What I mean is, because you&#8217;re shifting individual sides of your shape one at a time, it&#8217;s possible to turn your perfect 250&#215;250 pixel square into a 252&#215;248 pixel rectangle if you don&#8217;t keep track of which way you need to nudge your paths.</p>
<p>NOW, that leaves us with our third, final, and best option; avoid the situation all-together.</p>
<p>This is another one of those &#8220;why in the world didn&#8217;t Adobe turn this setting on by default instead of hiding it in a menu than no one opens with any kind of regularity?&#8221; Yes. There IS a setting to turn this off.</p>
<p>With any of the vector tools selected, look up top at your menu bar.</p>
<p><a href="http://blindacre.com/blog/wp-content/uploads/2009/12/menu-bar2.png"><img class="aligncenter size-full wp-image-24" title="Menu bar for the rectangle shape tool" src="http://blindacre.com/blog/wp-content/uploads/2009/12/menu-bar2.png" alt="" width="533" height="65" /></a></p>
<p>So, now, look at the bottom, almost in the dead center of the menu, just to the right of the Custom Shape Tool. Click on the menu drop down.</p>
<div id="attachment_40" class="wp-caption aligncenter" style="width: 295px"><a href="http://blindacre.com/blog/wp-content/uploads/2009/12/Picture-7.png"><img class="size-full wp-image-40" title="Drop Down Menu" src="http://blindacre.com/blog/wp-content/uploads/2009/12/Picture-7.png" alt="" width="285" height="156" /></a><p class="wp-caption-text">Drop down menu with Snap To Pixels selected</p></div>
<p>At the bottom right of that drop-down menu select the checkbox that reads &#8220;Snap to Pixels&#8221;.</p>
<p>There you go! Never again will you have to deal with fuzzy edged rectangles.</p>
<p>NOW, if anyone knows how to do this with the OTHER vector tools (pen, line, polygon) drop me a line at steve@blindacre.com. Until then, in order to fix THOSE shapes, I suggest reverting to Option 2.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 1172px; width: 1px; height: 1px;">So, now, look at the bottom, almost in the dead center of the menu, just to the right of the Custom Shape Tool. Click on the menu drop down.</div>
]]></content:encoded>
			<wfw:commentRss>http://blindacre.com/blog/2009/12/23/vector-paths-between-pixels-in-photoshop-cs4/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
