<?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>A Brand New Way &#187; process</title>
	<atom:link href="http://abrandnewway.com/blog/archives/tag/process/feed/" rel="self" type="application/rss+xml" />
	<link>http://abrandnewway.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 13 Apr 2010 04:56:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
		<item>
		<title>Build Leaner Flash Projects with 8-Bit PNGs</title>
		<link>http://abrandnewway.com/blog/archives/build-leaner-flash-projects-with-8-bit-pngs/</link>
		<comments>http://abrandnewway.com/blog/archives/build-leaner-flash-projects-with-8-bit-pngs/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 18:32:18 +0000</pubDate>
		<dc:creator>Justin Giovanetti</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[fireworks]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://abrandnewway.com/blog/?p=103</guid>
		<description><![CDATA[In case you have not stumbled upon this, there is a way to turn heavyweight 24-bit PNG images, into fraction their file size. From the 24-bit, we create the 8-Bit form. We loose the fat, but not the quality.]]></description>
			<content:encoded><![CDATA[<p>In case you have not stumbled upon this, there is a way to turn heavyweight 24-bit PNG images, into fraction their file size. From the 24-bit, we create the 8-Bit form. We loose the fat, but not the quality.</p>
<p>The 8-bit PNG is an ideal format for Flash. Because they are small in file size, your Flash will be lighter and your website will download faster. Lighter file size also means graphics will move smoother and will be easier on the computer. You will get more wow from Flash.</p>
<p>Besides the size and gain in performance, the core feature of the 8-bit, is its alpha transparency. This is the only format that supports this type of transparency while also keeping a small file size. With this support, you can create visuals that would otherwise not be possible with an opaque image. For example, with the 8-bit version, you can have blurred drop-shadows multiplied over top other graphics.</p>
<h3>How to Create the 8-bit PNG</h3>
<p><strong>Step 1:</strong> In Photoshop, make your alpha transparent 24-bit PNG.</p>
<p><strong>Step 2:</strong> Bring your 24-bit into Fireworks, and now in the optimize panel set the optimization to 8-bit, with an alpha transparency.</p>
<p><strong>Step 3:</strong> Import into Flash.</p>
<h3>Things to Watch</h3>
<p>Once you have the 8-bit, you should check its resolution. Depending on the version of the creative suite, and the platform you work on, there may be slight shifts in resolution. Check this in Fireworks, because once saved out as 8-bit, you will NOT be able to open the file in Photoshop.</p>
]]></content:encoded>
			<wfw:commentRss>http://abrandnewway.com/blog/archives/build-leaner-flash-projects-with-8-bit-pngs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross-Browser CSS Testing</title>
		<link>http://abrandnewway.com/blog/archives/cross-browser-css-testing/</link>
		<comments>http://abrandnewway.com/blog/archives/cross-browser-css-testing/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 22:01:04 +0000</pubDate>
		<dc:creator>Patrick Ashamalla</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://abrandnewway.com/blog/?p=31</guid>
		<description><![CDATA[WIth so many browsers out there, it can get very challenging to test CSS across all the different ones. Fixing a layout problem in one can end up causing errors in another. Anyone who has spent anytime doing any CSS work knows that this can be a bear of a task to handle.

Over the years browsers have become increasingly standardized with some key exceptions to the rule. In order to accommodate for these variants we've set up a standard process to check for browser compatibility.]]></description>
			<content:encoded><![CDATA[<p>WIth so many browsers out there, it can get very challenging to test CSS across all the different ones. Fixing a layout problem in one can end up causing errors in another. Anyone who has spent anytime doing any CSS work knows that this can be a bear of a task to handle.</p>
<p>Over the years browsers have become increasingly standardized with some key exceptions to the rule. In order to accommodate for these variants we&#8217;ve set up a standard process to check for browser compatibility. Right out of the gates we&#8217;ll identify, with our client, the necessary browser targets for a given project. This usually runs the typical gamut unless there is something unique about the project that explicitly requires additional browsers and devices. </p>
<p>One key thing to note &#8211; we will set up HTML code and content beforehand so that content is laid out correctly. We will rarely begin integrating CSS until we&#8217;ve identified and setup all elements on the page.</p>
<h4>From Newest to Oldest</h4>
<p>Fortunately the above rule about standardization has been pretty consistent. The groups pushing the latest browsers have worked very hard to meet the standards set forth by the W3C and development community. This makes it the best place for us to start since it will help us insure that our CSS is setup to meet those standards. Once we have met the proper display requirements in these newer browsers we&#8217;ll continue through the older versions until we reach our minimum requirement. </p>
<p>Our first step is to select a specific browser in which to develop. This will typically be Firefox 3, or Safari 3/4. With the recent launch of Internet Explorer 8, this browser also becomes a viable option, but since our production environment is run primarily on Macs, it&#8217;s easier for us to pick one of the cross-platform browsers over Internet Explorer.</p>
<p>After layout, styles and sprite functionality display correctly in the latest browsers we continue down to our next tier. This tier is usually closely related to the above tier in that they use similar browser frameworks, but we run tests nonetheless to guarantee consistency. This next tier usually consists of Google Chrome, Firefox 2, and Opera.</p>
<p>The first two tiers will typically consist of small rendering issues &#8211; independent browser correction of CSS mistakes; incorrect style declaration that gets too browser specific, or something else similar. From here we&#8217;ll move down into Internet Explorer 7. While IE 7 showed significant improvements over it&#8217;s predecessor it still contains several CSS rendering problems. For this reason we will address IE 7 in a separate tier. Corrections made at this level will usually live in a separate CSS file that overrides previous declarations. To avoid any conflicts we&#8217;ll incorporate this new CSS file using IE conditionals that check for IE 7. </p>
<p>After all the above browsers have been addressed, we&#8217;ll move to IE 6, which is commonly known for it&#8217;s severe problems with rendering standards-based CSS. Following the same method taken for IE 7, we&#8217;ll finally include a conditional for IE 6 browsers that address the specific problems inherent with this browser.</p>
<h4>Browser Version Testing Order</h4>
<p>To review, we would go through browsers in the following order to address cross-browser CSS:</p>
<ol>
<li><strong>Tier 1:</strong> Safari 3/4, Firefox 3, Internet Explorer 8</li>
<li><strong>Tier 2:</strong> Safari 3, Firefox 2, Opera</li>
<li><strong>Tier 3:</strong> Internet Explorer 7</li>
<li><strong>Tier 4:</strong> Internet Explorer 6</li>
</ol>
<p>This approach has proven to cut down significant amounts of development time because we will have: </p>
<ul>
<li>avoided using potentially harmful hacks in our core CSS, </li>
<li>created clean standard-based code at the top level, </li>
<li>progressively corrected any issues as moved forward with development without the need having to move back up the version ladder</li>
</ul>
<p>Of course, other browsers can be added to or removed from your list, but the idea is to move down the chain so that you avoid including erroneous code in your more standards compliant browsers. </p>
]]></content:encoded>
			<wfw:commentRss>http://abrandnewway.com/blog/archives/cross-browser-css-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

