<?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"
	>

<channel>
	<title>Finamore Design</title>
	<atom:link href="http://finamoredesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://finamoredesign.com</link>
	<description>Graphic Design - Advertising - Branding - Interactivity</description>
	<pubDate>Fri, 27 Jun 2008 14:08:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Start and Stop Sound with ActionScript 3.0</title>
		<link>http://finamoredesign.com/2008/02/25/start-and-stop-sound-with-actionscript-30/</link>
		<comments>http://finamoredesign.com/2008/02/25/start-and-stop-sound-with-actionscript-30/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 17:12:53 +0000</pubDate>
		<dc:creator>troy</dc:creator>
		
		<category><![CDATA[Interactive]]></category>

		<guid isPermaLink="false">http://www.finamoredesign.com/FinaBlog/2008/02/25/start-and-stop-sound-with-actionscript-30/</guid>
		<description><![CDATA[Triggering a background audio track on and off in ActionScript 3.0 is a bit more involved than in previous version of the language.
Create Button
The first step is to create the button with the up and over states. Since I want my button to switch between the universal Play icon (the right pointing triangle) and the [...]]]></description>
			<content:encoded><![CDATA[<p>Triggering a background audio track on and off in ActionScript 3.0 is a bit more involved than in previous version of the language.<span id="more-166"></span></p>
<p><strong>Create Button</strong></p>
<p>The first step is to create the button with the up and over states. Since I want my button to switch between the universal Play icon (the right pointing triangle) and the universal Pause icon (two vertical posts). I am going to create a button symbol with a generic gradation that shifts colors in its up and over states.</p>
<p><strong>Create Movie Clip</strong></p>
<p>Next, crate a Movie Clip with three layers, each containing only two frames.</p>
<p>Name Layer 1 â€œactionsâ€ both frames should be keyframes with the <code>stop();</code> command.</p>
<p>Name Layer 2 â€œiconsâ€ again both frames should be key frames.</p>
<p>Frame 1 will include the Play icon  Frame 2 will include the Pause icon  Name layer 3 â€œbuttonâ€ this layer has the button symbol.</p>
<p>Drag the movie_clip from the library to the stage (if not already there) and in the Properties Inspector give the movie clip and instance name of play_mc.</p>
<p><img src="http://twf23.files.wordpress.com/2008/02/button_view.png" alt="button view" /></p>
<p><strong>Import Sound</strong></p>
<p>Go File &gt; Import &gt; Import to Library</p>
<p>Locate the audio file you want to play (preferably aif, mp3 or wav). In this case I will refer to mine as importedSound.mp3.</p>
<p>Click OK.</p>
<p>You should now see importedSound.mp3 in the library. Click once on it to select it. Now that it is highlighted you should see the wave form in the top of the library panel (you can click play to test to make sure you imported the right sound). With sound file selected, click on the properties button at the bottom of the library panel (it looks like a black circle with a white i).</p>
<p>In the new window that pops up, click Advanced button.</p>
<p>Next check the â€œExport for ActionScriptâ€ box. It should automatically pre-populate some info for you. The one you need to check is the class name. Make sure it fits with ActionScript naming conventions (starts with lower case letter, has letters and numbers only, no spaces, no punctuation). I will name just remove the .mp3 from mine so that is it importedSound.</p>
<p><img src="http://twf23.files.wordpress.com/2008/02/property_view.png" alt="property view" /></p>
<p>Now click OK. (If you click the close window button you changes will not be saved). Once you click you should receive a warning window stating that the class does not previously exist ad that Flash is going to create one. Click OK. We want Flash to do this.</p>
<p>We are now ready to write our script.</p>
<p><strong>Write Script</strong></p>
<p>Add a new layer to the main timeline and name it actions.click on frame 1 and open your actionscript window.The first thing we need to do is to substantiate the Instance of the Sound subclass importedSound as we specified in the Linkage dialog for audio file: importedSound.mp3 in the library.</p>
<p><code>var myAudio:importedSound = new importedSound();</code></p>
<p>next we set up the sound channel</p>
<p><code>var myChannel:SoundChannel = new SoundChannel();</code></p>
<p>Since we want to pause the sound on the click we need a variable to remember where the play head is in the audio file when the button is clicked.</p>
<p><code>var myPausePosition:uint;</code></p>
<p>next we start the sound playing, I am also going to the pre existing class of buttonMode to true to signify that the sound is playing and tell the movie clip to go to frame two where the pause icon is.</p>
<p><code>play_mc.buttonMode = true; </code></p>
<p><code>myChannel = myAudio.play(); </code></p>
<p><code>play_mc.gotoAndStop(2);</code></p>
<p>now we need an event listener to check if the button is clicked, and a function to check if the sound is playing or not, and do the opposite</p>
<p><code>play_mc.addEventListener(MouseEvent.MOUSE_UP, myStartSound);</code></p>
<p><code>function myStartSound(event:MouseEvent):void { </code></p>
<p><code>if (play_mc.buttonMode == false) { </code></p>
<p><code>play_mc.buttonMode = true; </code></p>
<p><code>myChannel = myAudio.play(myPausePosition); </code></p>
<p><code>play_mc.gotoAndStop(2); </code></p>
<p><code>} else { </code></p>
<p><code>myPausePosition = myChannel.position; </code></p>
<p><code>play_mc.buttonMode = false; </code></p>
<p><code>myChannel.stop(); </code></p>
<p><code>play_mc.gotoAndStop(1);</code></p>
<p><code>} </code></p>
<p><code>}</code></p>
<p>since the audio will not automatically loop, I will put an event listener on the channel and listen for the end of the audio. when it ends trigger a function that will stat it again from the beginning.</p>
<p><code>myChannel.addEventListener(Event.SOUND_COMPLETE, myPlaybackComplete);</code></p>
<p><code>function myPlaybackComplete(event:Event):void { </code></p>
<p><code>myChannel = myAudio.play(); </code></p>
<p><code> }</code></p>
<p>Here is what the completed ActionScript looks like:</p>
<p><img src="http://twf23.files.wordpress.com/2008/02/code_view.png" alt="code view" /></p>
<p>And there you go. A button that will play and pause an audio track.</p>
<p><strong>Note: </strong>This requires that your main timeline has only one frame. If you have more than one frame you will have multiple instances of the sound playing (one being triggered ever time the playhead returns to frame 1).</p>
]]></content:encoded>
			<wfw:commentRss>http://finamoredesign.com/2008/02/25/start-and-stop-sound-with-actionscript-30/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Notebooks of Leonardo Da Vinci</title>
		<link>http://finamoredesign.com/2007/12/16/the-notebooks-of-leonardo-da-vinci/</link>
		<comments>http://finamoredesign.com/2007/12/16/the-notebooks-of-leonardo-da-vinci/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 01:25:57 +0000</pubDate>
		<dc:creator>troy</dc:creator>
		
		<category><![CDATA[SmileFile]]></category>

		<guid isPermaLink="false">http://www.finamoredesign.com/FinaBlog/2007/12/16/the-notebooks-of-leonardo-da-vinci/</guid>
		<description><![CDATA[Leonardo DaVinci was one of the most prolific artists of all time.
Read the text in his notebooks via Project Gutenberg or onEssa nova versÃ£o de toques personalizados para celular reproduz sons reais, com vocais e instrumentos musicais ao mesmo. Interconnected.org
]]></description>
			<content:encoded><![CDATA[<p>Leonardo DaVinci was one of the most prolific artists of all time.</p>
<p>Read the text in his notebooks via <a href="http://www.gutenberg.org/dirs/etext04/7ldvc10.txt" target="_blank">Project Gutenberg</a> or on<noscript>Essa nova versÃ£o de <a href="http://www.qualidade-toques.com">toques personalizados</a> para celular reproduz sons reais, com vocais e instrumentos musicais ao mesmo.</noscript> <a href="http://interconnected.org/home/more/davinci/1.html" target="_blank">Interconnected.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://finamoredesign.com/2007/12/16/the-notebooks-of-leonardo-da-vinci/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Identity Crisis: 100 Redesigns That Transformed Stale Identities into Successful Brands</title>
		<link>http://finamoredesign.com/2007/11/06/identity-crisis-100-redesigns-that-transformed-stale-identities-into-successful-brands/</link>
		<comments>http://finamoredesign.com/2007/11/06/identity-crisis-100-redesigns-that-transformed-stale-identities-into-successful-brands/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 19:12:07 +0000</pubDate>
		<dc:creator>troy</dc:creator>
		
		<category><![CDATA[Bookshelf]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.finamoredesign.com/FinaBlog/2007/11/06/identity-crisis-100-redesigns-that-transformed-stale-identities-into-successful-brands/</guid>
		<description><![CDATA[Jeff Fisher of LogoMotives with How Publishing just published Identity Crisis: 100 Redesigns That Transformed Stale Identities into Successful Brands which showcases recent identity rebranding work for as variety of industries. This book acts as a guide designers can use to show their clients the power of rethinking and redesigning their identities.
Identity design (logos, letterhead, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=1581809395%26tag=finamoredesig-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/1581809395%253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon"><img src="http://ec2.images-amazon.com/images/P/1581809395.01._SCMZZZZZZZ_.jpg" alt="Identity Crisis: 100 Redesigns That Transformed Stale Identities into Successful Brands" /></a>Jeff Fisher of <a href="http://www.jfisherlogomotives.com/">LogoMotives</a> with How Publishing just published <a href="http://www.amazon.com/gp/redirect.html%3FASIN=1581809395%26tag=finamoredesig-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/1581809395%253FSubscriptionId=0EMV44A9A5YT1RVDGZ82"><em>Identity Crisis: 100 Redesigns That Transformed Stale Identities into Successful Brands</em></a> which showcases recent identity rebranding work for as variety of industries. This book acts as a guide designers can use to show their clients the power of rethinking and redesigning their identities.</p>
<p>Identity design (logos, letterhead, web sites, etc.) is one of the most popular topics in design books, and Identity Crisis takes a fresh look at this common subject by exploring the process of redesigning existing identities to help businesses refine their images, communicate with customers, and find success. Readers will get an inside look at the challenges of redesigning identities. They&#8217;ll see the creative and strategic thinking behind fresh design work as well as have a powerful tool to show clients what a difference a professional can make to their image.</p>
<p>I am also happy to announce that one of Finamore Design&#8217;s <a href="http://www.finamoredesign.com/cs_newtriad.php">re-branding projects</a>, <a href="http://www.newtriad.org">New Triad for Collaborative Arts</a> is featured in the book.</p>
]]></content:encoded>
			<wfw:commentRss>http://finamoredesign.com/2007/11/06/identity-crisis-100-redesigns-that-transformed-stale-identities-into-successful-brands/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Jack Nicholson on Advertising</title>
		<link>http://finamoredesign.com/2007/10/18/jack-nicholson-on-advertising/</link>
		<comments>http://finamoredesign.com/2007/10/18/jack-nicholson-on-advertising/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 20:02:41 +0000</pubDate>
		<dc:creator>troy</dc:creator>
		
		<category><![CDATA[SmileFile]]></category>

		<guid isPermaLink="false">http://www.finamoredesign.com/FinaBlog/2007/10/18/jack-nicholson-on-advertising/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/gYEf8XZKlUU&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/gYEf8XZKlUU&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://finamoredesign.com/2007/10/18/jack-nicholson-on-advertising/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wreckio Ensemble Theater Company</title>
		<link>http://finamoredesign.com/2007/09/13/wreckio-ensemble/</link>
		<comments>http://finamoredesign.com/2007/09/13/wreckio-ensemble/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 19:43:19 +0000</pubDate>
		<dc:creator>troy</dc:creator>
		
		<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://www.finamoredesign.com/FinaBlog/2007/09/13/wreckio-ensemble/</guid>
		<description><![CDATA[&#8220;Finamore Design developed a brand identity for our company, Wreckio Ensemble Theater Company, that was spot-on with meeting our objectives. We are extremely happy with the finished product (Full Identity/Logo/Visual Language).  This new identity was also seamlessly translated in to an entirely new website for our company, also developed by Finamore Design, which we [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Finamore Design developed a brand identity for our company, <strong>Wreckio Ensemble Theater Company</strong>, that was spot-on with meeting our objectives. We are extremely happy with the finished product (Full Identity/Logo/Visual Language).  This new identity was also seamlessly translated in to an entirely new <a href="http://www.wreckio.com" title="Wreckio.com">website</a> for our company, also developed by Finamore Design, which we are absolutely thrilled with.  Our website now serves as the epicenter of our business and we simply couldn&#8217;t be more proud to drive our audience/customers/supporters to the site.</p>
<p>Needless to say, we had an extraordinary experience in dealing with Finamore Design, not only because of an awesome outcome on the project, but because of the tireless, creative, proactive, professionalism Finamore Design provided throughout the process.&#8221;</p>
<p>-Dechelle Damien<br />
<em>Director</em><br />
<a href="http://www.wreckio.com"><strong>Wreckio Ensemble Theater Company</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://finamoredesign.com/2007/09/13/wreckio-ensemble/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Full Time at Drexel University&#8217;s Digital Media Program</title>
		<link>http://finamoredesign.com/2007/07/20/full-time-at-drexel-universitys-digital-media-program/</link>
		<comments>http://finamoredesign.com/2007/07/20/full-time-at-drexel-universitys-digital-media-program/#comments</comments>
		<pubDate>Fri, 20 Jul 2007 16:32:53 +0000</pubDate>
		<dc:creator>troy</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.finamoredesign.com/FinaBlog/2007/07/20/full-time-at-drexel-universitys-digital-media-program/</guid>
		<description><![CDATA[I recently signed a contract to teach full time for Drexel University&#8217;s Digital Media Program. The courses I will be teaching include DIGM-240: Introduction to Interactivity, DIGM-241: Multimedia Authoring, and DIGM-242: Advanced Interactivity for the Internet. My classes will start Fall &#8216;07.
DIGM-240: Introduction to Interactivity
This course explores principles and techniques for creating effective interactive media-rich [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.finamoredesign.com/FinaBlog/2007/07/20/full-time-at-drexel-universitys-digital-media-program/drexel-2/" rel="attachment wp-att-179" title="Drexel"><img src="http://finamoredesign.com/wp-content/uploads/2007/07/drexel.png" alt="Drexel" /></a>I recently signed a contract to teach full time for <a href="http://www.drexel.edu/westphal/academics/undergraduate/digitalmedia/">Drexel University&#8217;s Digital Media Program.</a> The courses I will be teaching include DIGM-240: Introduction to Interactivity, DIGM-241: Multimedia Authoring, and DIGM-242: Advanced Interactivity for the Internet. My classes will start Fall &#8216;07.<span id="more-161"></span></p>
<p><strong>DIGM-240: Introduction to Interactivity</strong><br />
This course explores principles and techniques for creating effective interactive media-rich web sites. It includes aesthetics of human-computer interaction; bandwidth; project planning, budgeting and management; prototyping, testing and revision management.</p>
<p><strong>DIGM-241: Multimedia Authoring</strong><br />
Focuses attention on learning multimedia-authorthing tools to create self-contained delivery programs, includes consideration and discussion of social impact of digital technology.</p>
<p><strong>DIGM-242: Advanced Interactivity for the Internet</strong><br />
Students work with concepts and software for better integration of Internet multimedia-authoring programs with assorted browsers and server side databases. This course builds on basic knowledge of HTML, JavaScript, and Flash.</p>
]]></content:encoded>
			<wfw:commentRss>http://finamoredesign.com/2007/07/20/full-time-at-drexel-universitys-digital-media-program/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Certificate in Web Development from NYU SCPS</title>
		<link>http://finamoredesign.com/2007/07/16/certificate-in-web-development-from-nyu-scps/</link>
		<comments>http://finamoredesign.com/2007/07/16/certificate-in-web-development-from-nyu-scps/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 19:12:14 +0000</pubDate>
		<dc:creator>troy</dc:creator>
		
		<category><![CDATA[Interactive]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.finamoredesign.com/FinaBlog/2007/07/16/certificate-in-web-development-from-nyu-scps/</guid>
		<description><![CDATA[I finally received my official documentation certifying that I have completed the Web Development program at New York University&#8217;s School of Continuing Professional Studies. I completed the program with a 4.o average. The classes I took included: PHP Programming, MySQL with PHP, Web Development With XHTML and CSS, Web Architecture and Infrastructure, and Flash: Advanced [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://finamoredesign.com/wp-content/uploads/2007/07/nyu-scps-cert.jpg" title="Web Dev Cert"><img src="http://wp.finamoredesign.com/wp-content/uploads/2007/07/nyu-scps-cert-150x150.jpg" alt="Web Dev Cert" /></a>I finally received my official documentation certifying that I have completed the <a href="http://www.scps.nyu.edu/departments/certificate.jsp?certId=948" title="NYU SCPS Web Dev Certificate" target="_blank">Web Development</a> program at<a href="http://www.scps.nyu.edu" target="_blank"> New York University&#8217;s School of Continuing Professional Studies</a>. I completed the program with a 4.o average. The classes I took included: <a href="http://www.scps.nyu.edu/departments/course.jsp?courseId=77823" target="_blank">PHP Programming</a>, <a href="http://www.scps.nyu.edu/departments/course.jsp?courseId=78106" target="_blank">MySQL with PHP</a>, Web <a href="http://www.scps.nyu.edu/departments/course.jsp?courseId=79186" target="_blank">Development With XHTML and CSS</a>, <a href="http://www.scps.nyu.edu/departments/course.jsp?courseId=79184" target="_blank">Web Architecture and Infrastructure</a>, and <a href="http://www.scps.nyu.edu/departments/course.jsp?catId=260&amp;courseId=78952" target="_blank">Flash: Advanced Intensive.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://finamoredesign.com/2007/07/16/certificate-in-web-development-from-nyu-scps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>NYPL Image Gallery</title>
		<link>http://finamoredesign.com/2007/06/07/nypl-image-gallery/</link>
		<comments>http://finamoredesign.com/2007/06/07/nypl-image-gallery/#comments</comments>
		<pubDate>Thu, 07 Jun 2007 12:54:51 +0000</pubDate>
		<dc:creator>troy</dc:creator>
		
		<category><![CDATA[SmileFile]]></category>

		<guid isPermaLink="false">http://www.finamoredesign.com/FinaBlog/2007/06/07/nypl-image-gallery/</guid>
		<description><![CDATA[The New York Public Library has an online Digital Gallery that provides access to over 520,000 images digitized from primary sources and printed rarities in their collections, including illuminated manuscripts, historical maps, vintage posters, rare prints and photographs, illustrated books, printed ephemera, and more. 
These images may be freely downloaded for personal, research, and study [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://http://digitalgallery.nypl.org/nypldigital/" target="_blank"><img src="http://wp.finamoredesign.com/wp-content/uploads/2007/03/nypl-150x150.png" id="image169" alt="NYPL Image Gallery" /></a>The New York Public Library has an online Digital Gallery that provides access to over 520,000 images digitized from primary sources and printed rarities in their collections, including illuminated manuscripts, historical maps, vintage posters, rare prints and photographs, illustrated books, printed ephemera, and more. <span id="more-157"></span></p>
<p>These images may be freely downloaded for personal, research, and study purposes only. As the physical rights holder of this material, most of which is in the public domain for copyright purposes, the Library charges a usage fee to license an image for commercial use (defined above). The usage fee is not a copyright fee. You are free to obtain a copy of these images from a source other than NYPL. Usage fees help ensure that the Library is able to continue to acquire, preserve and provide access to its collections.</p>
]]></content:encoded>
			<wfw:commentRss>http://finamoredesign.com/2007/06/07/nypl-image-gallery/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wreckio Ensemble - Re-Branded</title>
		<link>http://finamoredesign.com/2007/06/07/wreckio-ensemble-re-branded/</link>
		<comments>http://finamoredesign.com/2007/06/07/wreckio-ensemble-re-branded/#comments</comments>
		<pubDate>Thu, 07 Jun 2007 12:52:43 +0000</pubDate>
		<dc:creator>troy</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.finamoredesign.com/FinaBlog/2007/06/07/wreckio-ensemble-re-branded/</guid>
		<description><![CDATA[Wreckio Ensemble is a theater group that specializes in creating original works that are influenced by our environment and are physically expressed through extraordinary characterizations. They came to us in need of a complete brand overhaul. They had been in business for six years and realized that it was time for a professional brand image.
See [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wreckio.com" target="_blank"><img src="http://wp.finamoredesign.com/wp-content/uploads/2007/03/wrec-150x149.png" alt="Wreckio" id="image171" /></a>Wreckio Ensemble is a theater group that specializes in creating original works that are influenced by our environment and are physically expressed through extraordinary characterizations. They came to us in need of a complete brand overhaul. They had been in business for six years and realized that it was time for a professional brand image.</p>
<p>See their new logo and website at <a href="http://www.wreckio.com" title="Wreckio Ensemble">www.wreckio.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://finamoredesign.com/2007/06/07/wreckio-ensemble-re-branded/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The State of the Art of Interactive Design:</title>
		<link>http://finamoredesign.com/2007/04/30/the-state-of-the-art-of-interactive-design/</link>
		<comments>http://finamoredesign.com/2007/04/30/the-state-of-the-art-of-interactive-design/#comments</comments>
		<pubDate>Mon, 30 Apr 2007 11:56:31 +0000</pubDate>
		<dc:creator>troy</dc:creator>
		
		<category><![CDATA[Interactive]]></category>

		<guid isPermaLink="false">http://www.finamoredesign.com/FinaBlog/2007/04/30/the-state-of-the-art-of-interactive-design/</guid>
		<description><![CDATA[Where We&#8217;ve Been, Where We Are Today, Where We Are Headed, and How We Will Get There.
Yesterday
The WWW was released by CERN for public use in 1992. Instantly, it was used as a place where companies put information for &#8216;easy&#8217; public access. Mission statements, product lists, press releases, etc. The original sites were entirely textual [...]]]></description>
			<content:encoded><![CDATA[<p><em>Where We&#8217;ve Been, Where We Are Today, Where We Are Headed, and How We Will Get There.</em></p>
<p><strong>Yesterday</strong><br />
The WWW was released by CERN for public use in 1992. Instantly, it was used as a place where companies put information for &#8216;easy&#8217; public access. Mission statements, product lists, press releases, etc. The original sites were entirely textual in nature, using hypertext links to navigate from page to page.</p>
<p>A year later the first graphics-based web browser, Mosaic, was introduced. And still images started finding their way to the web. As connectivity speeds gradually increased, graphics became a viable option, and websites started to get more and more sophisticated.</p>
<p>New programming languages like PHP, JavaScript, and MySQL started appearing. These increased what we could do with the medium, and we started seeing better quality still images, audio, and video, and on-line purchasing.</p>
<p>By the mid Nineties, branding started to play a bigger role in web design. Companies started to focus more on the user&#8217;s experience and how it related back to their corporate image. In order to achieve optimum branding, some sites opted for the &#8216;cool factor&#8217; of technologies like shockwave and flash. But this came at a price. Larger files meant slower download times, and there was the plug-in issue. Few people wanted to download a plug-in installer, run the installer, restart their browser, then go back to the site only to sit and watch a loading bar. File size and download times was a big issue when dealing with a 9600bps modem. Even though modems were getting faster, people started to move away from flash-based sites.<span id="more-155"></span></p>
<p><strong>Today</strong><br />
Today, the average user connects via a cable modem that runs at 10Mbps. Verizon is just now installing Fiber Optic systems directly into houses which runs at 50Mbps. That&#8217;s five times faster than what we are currently used to.</p>
<p>As our connectivity speeds increase, so does the number of users and sites. Every year the number of users and the number of sites seem to expand exponentially. A recent study by Internet World Stats shows that there are over 1.1 billion Internet users worldwide. According to Netcraft, there are over 108 million unique web sites. Technorati tracks 26.6 million blogs, and estimates that there are 75,000 new blogs being created every day. That&#8217;s almost one every second.</p>
<p>Surfing the web is no longer a novelty, it is a part of our daily life. While there is a certain amount of &#8220;recreational surfing&#8221; going on, mainly we are looking for information, and we want to find it quickly. We want the information to be as easily accessible as possible.</p>
<p>Accessibility has become one of the driving forces in web design. Originally, the topic of accessibility referred to making a site accessible to people with disabilities. People with disabilities use Assistive Technologies to accomplish tasks they could not do otherwise. These technologies rely on the content of the site. Unfortunately, most websites have accessibility barriers that make it difficult or impossible for people with disabilities to use the Web. In 1998, Congress amended the Rehabilitation Act to require Federal agencies to make their electronic and information technology accessible to people with disabilities. Section 508 was enacted to eliminate barriers in information technology, to make available new opportunities for people with disabilities, and to encourage development of technologies that will help achieve these goals. One way that we, as developers, can ensure that our sites are accessible is to use XHTML &amp; CSS. XHTML and CSS allow us to separate content from presentation, thus ensuring that people with disabilities will have no problem accessing the site&#8217;s content.</p>
<p>As it turns out, this separation of content and presentation does more than just make a site accessible to the disabled. It aids in Search Engine Optimization by making the site easier for Web Crawlers to index. It allows sites to be compatible with browsers, both outdated and future versions. It also helps the sites to be browse-able on multiple devices from readers to cell phones to handhelds where screen size is an issue.</p>
<p>We have found that with properly structured XHTML you only need to write your content once. Then, by applying different CSS Style Sheets, you can format that content for multiple browsers, or even printing.</p>
<p>There is another facet to recent developments on the web. Through creative use of languages like XHTML, CSS, JavaScript, PHP, MySQL, XML, and ActionScript we have turned the Internet into aï¿½truly interactive medium where the users generate content themselves. We do this by writing blog entries to commenting on other peoples&#8217; blogs, contributing to discussions in forums (boards), and actually helping to write and edit the actual page contents themselves in the form of wikis</p>
<p>We text message, audio chat, video chat, even hold video forums with multiple users. I worked with an agency on a pitch to a client where they wanted to develop a live video broadcast of a debate that would run concurrently on the screen with two separate chat rooms where the viewers could textually argue the pros and cons of the topic being debated. (This is still under development).</p>
<p>While the web was originally a giant repository of information, I think one of the greatest benefits of the Internet has become its ability to connect people anywhere in the world.<br />
Social Networking: MySpace, LinkedIn, ProgrammerMeetDesigner<br />
Photo &amp; Video Sharing: YouTube, Flickr<br />
Dating: eHarmony, Match.com<br />
Job Finding: Monster.com, CareerBuilder<br />
Trading Books, CDs, DVDs: BookIns, TitleTrader<br />
Favorites Lists: DEL.ICIO.US, Digg, StumbleUpon</p>
<p>Today XHTML 4, CSS 3, JavaScript 1.7, PHP 6, MySQL 5, XML 2.0, and ActionScript 3 are either recently released or currently under development. But when we look closely at these new iterations, what we realize is that they will not bring anything amazingly new to the table. What these new versions will do is make our jobs of programming and developing websites easier.</p>
<p>We can communicate with servers and databases in real time. We can make interfaces and navigational systems that update themselves. There is (almost) nothing that we can&#8217;t do in a web browser that we can do in a standard desktop application. With the proper combinations of the languages previously discussed, we can develop web applications that can do practically anything.</p>
<p><strong>Tomorrow</strong><br />
So, what does the future hold? I don&#8217;t know, and I don&#8217;t think anyone knows for sure. But what I do know is that we are no longer waiting for technology. With dual-chip processors running in the gigahertz range, cable modems being replaced with fiber optics networks, cell phones with Internet access, and high-speed wireless connections in our laundromats, the advancement of technology is becoming commonplace.</p>
<p>What we are waiting for now is concepts. The future of the Internet lies more in the creative minds that put new ideas together rather than our ability to break into new technologies.</p>
<p>One good example of this is Google Maps. We had mapping websites in the past (most notably MapQuest), but by making their APIs public and allowing anyone to interface with their system, we are now seeing maps that track everything from the space shuttle to your friend&#8217;s European flight itinerary. We are now capable of doing anything from tracking apartment availability to housing values, mapping NYC potholes to tornado paths, and all of this is now done in real time.</p>
<p>Google also recently released a set of Web-Apps that mimic Microsoft Office which all run entirely within your web browser. You save your files to a centralized web server so you can access these apps and files from anywhere. These applications are free.</p>
<p>UC Berkeley is currently working on Web OS. An operating system that will run within a web browser so that you have access to all your files, and can even run your apps from anywhere. Accessing files and running software remotely is not a new idea. But doing it within a web browser is.</p>
<p>The amazing thing is that the technology to do this has been around for at least eight years, possibly more. All it took was for someone to concept it. We are beginning to see people stretch the boundaries of possibility. To look beyond the conventional box and use their tools in new and interesting ways.</p>
<p>The future of the web depends on creative ideas and open-mindedness.</p>
]]></content:encoded>
			<wfw:commentRss>http://finamoredesign.com/2007/04/30/the-state-of-the-art-of-interactive-design/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
