<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>webDevBlog: Technology and Web News - Graphic Design</title>
			<link>http://www.ll.georgetown.edu/webdevblog/index.cfm</link>
			<description>The webDevBlog presents news about technology and web development by and about the Georgetown Law Library.</description>
			<language>en-us</language>
			<pubDate>Sat, 21 Nov 2009 15:12:19 -0500</pubDate>
			<lastBuildDate>Mon, 09 Nov 2009 12:57:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>rvs5@law.georgetown.edu</managingEditor>
			<webMaster>rvs5@law.georgetown.edu</webMaster>
			
			<item>
				<title>Emphasizing Important Content</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/11/9/Emphasizing-Important-Content</link>
				<description>
				
				&lt;p&gt;At Georgetown Law Library, we assume our internal users (&lt;em&gt;e.g. &lt;/em&gt;current students and faculty) are the most frequent visitors to the library&apos;s homepage.&amp;nbsp; Today we launched a new section of the page we hope will be useful for this internal audience.&amp;nbsp; We&apos;re now featuring selected databases and research guides on the homepage, which we introduced by rearranging some content on the page.&lt;/p&gt;
&lt;p&gt;In using this, we can highlight updates to research guides and selectively promote our licensed databases and other resources.&amp;nbsp; We hope this helps us highlight useful content, and we see it as an alternative to using our &lt;a href=&quot;http://www.ll.georgetown.edu/blog/&quot;&gt;Due Process blog&lt;/a&gt; to promote new items. Due Process still works well for certain types of content and database news, but it doesn&apos;t seem approprite to use it for more routine reminders, such as telling people that U.S. Law Week is a good place to get Supreme Court news.&lt;/p&gt;
&lt;p&gt;Here&apos;s a view of the featured section at launch:&lt;/p&gt;
&lt;img alt=&quot;&quot; src=&quot;file:///C:/Users/rvs5/AppData/Local/Temp/moz-screenshot-1.png&quot; /&gt;&lt;img width=&quot;310&quot; height=&quot;194&quot; src=&quot;/documents/image/Featured-Items.png&quot; alt=&quot;Featured Items content block&quot; /&gt; &lt;br /&gt;
&lt;br /&gt;
In testing this feature, we first tried to include the feature in the center column, but the design challenge proved to be too complex.&amp;nbsp; It works well at some screen resolutions, but at lower resolutions (even just below 1024 pixel width), the content looks almost unreadable:&lt;br /&gt;
&lt;img width=&quot;462&quot; height=&quot;365&quot; border=&quot;1&quot; src=&quot;/documents/image/Featured-Snafu.png&quot; alt=&quot;Example of a bad design for featured content section&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;p&gt;Some of the more subtle changes are a shift from play control buttons under the Feedback Blog entries, as well as introduction of the &amp;quot;box-shadow&amp;quot; element to make the site look better in browsers that understand this feature.&amp;nbsp; Admittedly, we took elements of this directly from the book &amp;quot;&lt;a href=&quot;http://www.handcraftedcss.com/&quot;&gt;Handcrafted CSS&lt;/a&gt;&amp;quot; including the suggestion of using the &lt;abbr title=&quot;Cascading Style Sheet&quot;&gt;CSS&lt;/abbr&gt;3 properties &lt;a href=&quot;http://www.w3.org/TR/css3-background/#the-box-shadow&quot;&gt;box-shadow&lt;/a&gt; and &lt;a href=&quot;http://www.w3.org/TR/css3-background/#the-border-radius&quot;&gt;border-radius&lt;/a&gt;, even though they&apos;re not widely supported in current browsers. We &lt;a href=&quot;http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/8/20/Selective-Enhancement-Border-Radius&quot;&gt;added rounded corners&lt;/a&gt; to the boxes earlier this year. &lt;/p&gt;
&lt;p&gt;Let us know what you think.&amp;nbsp; Inevitably we&apos;ll tweak this based on feedback and usage data.&lt;/p&gt; 
				</description>
				
				<category>Web Development</category>				
				
				<category>Graphic Design</category>				
				
				<category>Site Enhancements</category>				
				
				<pubDate>Mon, 09 Nov 2009 12:57:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/11/9/Emphasizing-Important-Content</guid>
				
			</item>
			
			<item>
				<title>Simple Trick for Avoiding Cached CSS Files</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/9/28/Simple-Trick-for-Avoiding-Cached-CSS-Files</link>
				<description>
				
				&lt;p&gt;When implementing changes to a website design, often fundamental changes are made only to a site&apos;s &lt;abbr title=&quot;Cascading Style Sheet&quot;&gt;CSS&lt;/abbr&gt; file.  Perhaps you&apos;re tweaking font spacing, adjusting margins for sections of a page or making significant layout changes.  One problem that comes up when testing designs is that browsers like Firefox and Internet Explorer tend to cache a CSS file, making it hard to know whether intended changes actually work.  For users, getting a current copy of the (X)HTML file may still mean you get the &apos;old&apos; CSS file.&lt;/p&gt;
&lt;p&gt;By passing a variable as part of the CSS file, this can help avoid the problem.  Here&apos;s an example: &lt;br /&gt;
&lt;code&gt;
&lt;link type=&quot;text/css&quot; xhref=&quot;http://www.stefanhayden.com/style.css?version=1&quot; rel=&quot;stylesheet&quot; /&gt;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This tip was featured recently on the site: &lt;a href=&quot;http://webdosanddonts.com/dont-allow-css-caching&quot;&gt;The Do&apos;s and Don&apos;ts of Modern Web Design&lt;/a&gt;, which provides short posts describing best practices and things to avoid in creating websites.  As the site&apos;s subtitle states, these are &amp;quot;Snacksized Web Design Tips and Tricks.&amp;quot;  The site makes each available with a retweet function to share them with your world of followers.&lt;/p&gt;
&lt;p&gt;Online, the technique of the &lt;a href=&quot;http://www.stefanhayden.com/blog/2006/04/03/css-caching-hack/&quot;&gt;CSS Caching Hack&lt;/a&gt; dates back to (at least) 2006.  It&apos;s a nice trick to keep in mind, and we&apos;ll be using it for some site adjustments we&apos;re planning for the law library.&lt;/p&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Web Standards</category>				
				
				<category>Web Development</category>				
				
				<pubDate>Mon, 28 Sep 2009 13:06:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/9/28/Simple-Trick-for-Avoiding-Cached-CSS-Files</guid>
				
			</item>
			
			<item>
				<title>Audience-Oriented Menu Options</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/8/20/AudienceOriented-Menu-Options</link>
				<description>
				
				The Georgetown Law Library site uses a horizontal navigation bar for access to most sections of our site.&amp;nbsp; We introduced it with a redesigned site in January 2008, and people seem to like how it works.&amp;nbsp; In the course of conversations and a usability study this past Spring, we noticed that people sometimes pause, trying to decide which of five broad menu selections to choose.&amp;nbsp; We recently made a small change intended to make it easier for students and faculty to find what they need.&amp;nbsp; The audience-based items on our sitewide navigation are now in a different color, grouping them together visually.&amp;nbsp; Compare the difference: &lt;br /&gt;
&lt;strong&gt;Old:&lt;/strong&gt; &lt;br /&gt;
&lt;img height=&quot;35&quot; width=&quot;433&quot; src=&quot;/documents/image/NavBarOLD.png&quot; alt=&quot;Old navigation bar&quot; /&gt;&lt;br /&gt;
&lt;strong&gt;New: &lt;/strong&gt;&lt;br /&gt;
&lt;img height=&quot;36&quot; width=&quot;434&quot; src=&quot;/documents/image/navBarNEW.png&quot; alt=&quot;New Navigation Bar&quot; /&gt;&lt;br /&gt;
Following are two law schools that indicate different types of menu items for different audiences&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.law.harvard.edu&quot;&gt;Harvard Law School&lt;/a&gt;&lt;br /&gt;
&lt;img height=&quot;38&quot; width=&quot;472&quot; src=&quot;/documents/image/NavHarvard.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://library.lawschool.cornell.edu/&quot;&gt;Cornell Law School Library:&lt;/a&gt;&lt;br /&gt;
&lt;img height=&quot;34&quot; width=&quot;476&quot; src=&quot;/documents/image/NavCornell.png&quot; alt=&quot;&quot; /&gt;&lt;br type=&quot;_moz&quot; /&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<pubDate>Thu, 20 Aug 2009 14:43:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/8/20/AudienceOriented-Menu-Options</guid>
				
			</item>
			
			<item>
				<title>Selective Enhancement: Border Radius</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/8/20/Selective-Enhancement-Border-Radius</link>
				<description>
				
				&lt;p&gt;In the world of web design, there&apos;s a concept known as &amp;quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/Progressive_enhancement&quot;&gt;Progressive Enhancement&lt;/a&gt;&amp;quot; The basic definition on Wikipedia is as follows:&lt;/p&gt;
&lt;blockquote&gt;  &lt;b&gt;Progressive enhancement&lt;/b&gt; is a strategy for &lt;a title=&quot;Web design&quot; href=&quot;http://en.wikipedia.org/wiki/Web_design&quot;&gt;web design&lt;/a&gt; that emphasizes accessibility, semantic markup, and external stylesheet and scripting technologies. Progressive enhancement uses web technologies in a layered fashion that allows everyone to access the basic content and functionality of a web page, using any browser or Internet connection, while also providing those with better bandwidth or more advanced browser software an enhanced version of the page. &lt;/blockquote&gt;
&lt;p&gt;Today we updated the homepage at the Georgetown Law Library to include rounded corners for browsers that understand them.  This doesn&apos;t add functionality, and it is no more advanced than it was.  Given this, it seems more like &amp;quot;selective enhancement&amp;quot;.  We&apos;ve selectively enhanced things for people using Safari or Firefox, while leaving Internet Explorer users with angled corners.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Compare the difference:&lt;/strong&gt;&lt;br /&gt;
On a browser that interprets rounded corners: &lt;br /&gt;
&lt;img height=&quot;64&quot; width=&quot;264&quot; src=&quot;/documents/image/borderRadius-Firefox.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
On a browser that ignores this property: &lt;br /&gt;
&lt;img height=&quot;65&quot; width=&quot;263&quot; src=&quot;/documents/image/borderSquare.png&quot; alt=&quot;square radius border&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
For our own documentation, the corners are done with the &lt;abbr title=&quot;Cascading Style Sheets&quot;&gt;CSS&lt;/abbr&gt; Property &lt;a href=&quot;http://reference.sitepoint.com/css/moz-border-radius&quot;&gt;-moz-border-radius&lt;/a&gt;.&lt;/p&gt;
&lt;code&gt;    -webkit-border-radius: 6px;     -moz-border-radius: 6px; &lt;/code&gt;
&lt;p&gt;There are &lt;a href=&quot;http://www.smileycat.com/miaow/archives/000044.php&quot;&gt;dozens of alternative methods of creating rounded corners&lt;/a&gt;, some requiring images, some with JavaScript, and some in pure CSS.  For us, we decided that it&apos;s enough to selectively enhance the experience of visitors.  Maybe it&apos;s a way for us to show that Firefox users tend to think outside the box (pun intended).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Web Standards</category>				
				
				<category>Web Development</category>				
				
				<pubDate>Thu, 20 Aug 2009 14:20:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/8/20/Selective-Enhancement-Border-Radius</guid>
				
			</item>
			
			<item>
				<title>Adobe InContext Editing - Last Stop Before a Full CMS?</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/5/21/Adobe-InContext-Editing--Last-Stop-Before-a-Full-CMS</link>
				<description>
				
				&lt;p&gt;Unless you&apos;re running a one-person blog or website, there is always a need for distributed content management.&amp;nbsp; The worst-case scenario with web management is that everybody emails changes to one person to post them online.&amp;nbsp; It&apos;s inefficient and it is no fun to be that content funnel.  A better model is to give content editors tools they need to make changes themselves.&lt;/p&gt;
&lt;p&gt;Adobe just updated the &lt;a href=&quot;http://www.adobe.com/products/incontextediting/&quot;&gt;InContext Editing&lt;/a&gt; service, which is a system of distributed content management that could fill the gap for anybody not yet ready for a full web-based &lt;abbr title=&quot;Content Management System&quot;&gt;CMS&lt;/abbr&gt;. This is technically a product from Adobe, but it may be better described as a service, as it looks to be positioned as an entirely web-based subscription model for editing web content. &lt;img height=&quot;98&quot; align=&quot;right&quot; width=&quot;458&quot; src=&quot;/documents/image/InContext02.gif&quot; alt=&quot;InContext Screenshot&quot; /&gt;&lt;/p&gt;
&lt;p&gt;InContext editing is a web-based system that lets web developers give users the ability to edit content directly within the browser.  Unlike Adobe Contribute, InContext Editing does not require a desktop software installation.  It isn&apos;t as feature-rich as Contribute, but the &lt;a href=&quot;http://incontextediting.adobe.com/&quot;&gt;Live Demo of InContext Editing&lt;/a&gt; shows that simple text editing is possible without much trouble.  InContext Editing requires Adobe Dreamweaver CS4 to take advantage of all features, so this option ties you to the latest incarnations of Adobe&apos;s good (and not inexpensive) software tools.&lt;/p&gt;  [More]
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Web Development</category>				
				
				<pubDate>Thu, 21 May 2009 12:47:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/5/21/Adobe-InContext-Editing--Last-Stop-Before-a-Full-CMS</guid>
				
			</item>
			
			<item>
				<title>New Web Screenshot Showcase - 32,000 Images and Growing</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/2/26/New-Web-Screenshot-Showcase--32000-Images-and-Growing</link>
				<description>
				
				&lt;p&gt;The distributed screen capturing website &lt;a href=&quot;http://www.browsershots.org&quot;&gt;BrowserShots.org&lt;/a&gt;&amp;nbsp;recently released an &lt;a href=&quot;http://browsershots.org/showcase/&quot;&gt;online showcase of more than 32,000 image captures&lt;/a&gt; of website pages.&amp;nbsp; It looks like the content comes from sites their visitors have requested to have pictures taken of.&amp;nbsp; &lt;br /&gt;
&lt;a href=&quot;http://browsershots.org/showcase/&quot;&gt;&lt;img alt=&quot;Example of hovering over a page display&quot; src=&quot;http://www.ll.georgetown.edu/webdevblog/images/hover-example.gif&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
You can browse sites, rate them, and search for text within the sites.&amp;nbsp; It&apos;s not clear if the text searches indexed terms or a version of the site source code.&amp;nbsp; For random design inspiration, this is a great site.&amp;nbsp; Another search option is to look for sites of a particular color.&amp;nbsp; For instance, here&apos;s a view of sites matching the hex color 003366.&lt;br /&gt;
&lt;a href=&quot;http://browsershots.org/showcase/&quot;&gt;&lt;img alt=&quot;Hex Color Search 003366 example&quot; src=&quot;http://www.ll.georgetown.edu/webdevblog/images/003366-example.gif&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
It&apos;s especially nice because it includes many non-English sites, so you can just isolate design and feel without reading text.&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
As an aside, if you need to get lots of screenshots for websites, it is very much worth it to pay for priority processing.&amp;nbsp; We needed to collect lots of images in a short period, and with priority processing, images were returned in one or two minutes.&lt;/p&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Web Development</category>				
				
				<pubDate>Thu, 26 Feb 2009 16:03:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2009/2/26/New-Web-Screenshot-Showcase--32000-Images-and-Growing</guid>
				
			</item>
			
			<item>
				<title>In-Browser Web Editing: Not Just for Firebug and Web Developer Toolbar</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/12/22/InBrowser-Web-Editing-Not-Just-for-Firebug-and-Web-Developer-Toolbar</link>
				<description>
				
				People who develop websites have probably already heard of &lt;a href=&quot;http://getfirebug.com/&quot;&gt;Firebug&lt;/a&gt; and the &lt;a href=&quot;http://chrispederick.com/work/web-developer/&quot;&gt;Web Developer Toolbar&lt;/a&gt;. They are two very popular addon tools for Firefox that let you analyze web content as delivered to the browser.&amp;nbsp; The beauty of tools like this is that you don&apos;t have to leave a page you&apos;re viewing in order to debug it or test code.&amp;nbsp; There&apos;s no need to transfer files to/from a server and reload the page.&amp;nbsp; If you like these two tools, then consider several others profiled in an article from Smashing Magazine called: &lt;a href=&quot;http://www.smashingmagazine.com/2008/11/18/15-helpful-in-browser-web-development-tools/&quot;&gt;15 Helpful In-Browser Web Development Tools.&lt;/a&gt;&lt;br /&gt;Tools they profile include the following: &lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://developer.yahoo.com/yslow/&quot;&gt;YSlow&lt;/a&gt;: a tool from Yahoo! that integrates with Firebug to test website speed and suggest ways to improve it&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://78.46.108.98/images/in-browser-development-tools/04_ie_web_developer_toolbar.jpg&quot;&gt;Internet Explorer Web Developer Toolbar&lt;/a&gt;: A Microsoft program similar to the same addon for Firefox&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://screenshot-program.com/fireshot/&quot;&gt;FireShot&lt;/a&gt;: A tool for capturing and analyzing parts of images delivered to the browser, falling somewhere between &lt;a href=&quot;http://www.screengrab.org/&quot;&gt;Screengrab!&lt;/a&gt; and &lt;a href=&quot;http://www.techsmith.com/screen-capture.asp&quot;&gt;Snagit&lt;/a&gt; in terms of features&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://www.standards-schmandards.com/index.php?show/fangs&quot;&gt;Fangs&lt;/a&gt;: A free screenreader tool to test oral rendering and navigation of websites (similar to the commercial product &quot;&lt;a href=&quot;http://www.freedomscientific.com/fs_products/software_jaws.asp&quot;&gt;Jaws&lt;/a&gt;&quot;)&lt;/li&gt;&lt;/ul&gt;There&apos;s some overlap in features between the programs profiled.&amp;nbsp; For instance, the toolbar from chrispederick.com includes color analysis options similar to those in &lt;a href=&quot;http://www.colorzilla.com/firefox/&quot;&gt;Colorzilla&lt;/a&gt; (for color palette analysis). Nonetheless, it&apos;s nice to see a list of these tools that include addons for Internet Explorer, Opera and WebKit (aka Safari / Chrome).&amp;nbsp; Firefox isn&apos;t the only browser that supports in-browser editing, afterall!&lt;br /&gt;Hat tip: &lt;a href=&quot;http://boagworld.com/podcast/145/&quot;&gt;Boagworld podcast&lt;/a&gt; (which mentioned the Smashing Magazine article).&lt;br /&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Web Development</category>				
				
				<category>Software</category>				
				
				<pubDate>Mon, 22 Dec 2008 11:03:20 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/12/22/InBrowser-Web-Editing-Not-Just-for-Firebug-and-Web-Developer-Toolbar</guid>
				
			</item>
			
			<item>
				<title>CFPresentation and CFFEED Proof of Concept Demonstration</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/11/10/CFPresentation-and-CFFEED-Proof-of-Concept-Demonstration</link>
				<description>
				
				&lt;p&gt;One of the powers of the ColdFusion 8 tag CFPRESENTATION is that you can create presentations from dynamic database queries. A type of query introduced in Cold Fusion 8 is the CFFEED tag.  This takes a feed (rss or atom) and turns it into a query that you can loop over as needed.  Pairing the two together, following is a simple proof of concept that shows a series of slides using an RSS feed as the source.&lt;/p&gt;

&lt;p&gt;The source for this example is a feed of &lt;a href=&quot;http://www.edustyle.net/redesigned.php&quot;&gt;Recently Redesigned Websites&lt;/a&gt; from the site eduStyle: Inspiration for Campus Web Designers. This was chosen as the source, as the feed output is very uniform, presenting two screenshot images and minimal but predictable text in the source of the feed.&lt;/p&gt;

&lt;p&gt;First off, following is the pertinent code showing only the necessary CFFEED and CFPRESENTATION elements:

&lt;code&gt;
&lt;!--- Select an RSS source for the CFPRESENTATION demonstration ---&gt;
&lt;cffeed action=&quot;read&quot; source=&quot;http://feeds.feedburner.com/RedesignedSitesFromEdustyle&quot; query=&quot;qryEduStyle&quot;&gt;

&lt;!--- Using the RSS source, output content into a series of presentation slides.
      Limit query to 15 rows to reduce processing time ---&gt;
&lt;cfoutput maxrows=&quot;15&quot; query=&quot;qryEduStyle&quot;&gt;		
	&lt;cfpresentationslide
      title=&quot;#title#&quot;
      presenter=&quot;ColdFusion 8&quot;
	  duration=&quot;8&quot;&gt;
        &lt;h1&gt;#title#&lt;/h1&gt;
        
        &lt;div&gt;#content#&lt;/div&gt;
    &lt;/cfpresentationslide&gt;
&lt;/cfoutput&gt;      
&lt;/code&gt;

&lt;p&gt;With this, it generates 15 swf slides, each representing a single entry from the feed source. If I want to do this in a week or a month, all I have to do is re-run the ColdFusion file and it will get results live from that point in time.&lt;/p&gt;


The best way to view this is to &lt;a target=&quot;_blank&quot; href=&quot;http://www.ll.georgetown.edu/webdevblog/dev/cfpresent/&quot;&gt;view the demonstration in a new browser window.&lt;/a&gt; 

Alternately, you can also view an inline version of this presentation here.

&lt;object height=&quot;425&quot; width=&quot;525&quot;&gt;
	&lt;param name=&quot;movie&quot; value=&quot;http://www.ll.georgetown.edu/webdevblog/dev/cfpresent/viewer.swf&quot;/&gt;
	&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;/&gt;
	&lt;embed src=&quot;http://www.ll.georgetown.edu/webdevblog/dev/cfpresent/viewer.swf&quot; allowFullScreen=&quot;true&quot; height=&quot;425&quot; width=&quot;525&quot; type=&quot;application/x-shockwave-flash&quot; /&gt;
&lt;/object&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Multimedia</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 10 Nov 2008 15:05:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/11/10/CFPresentation-and-CFFEED-Proof-of-Concept-Demonstration</guid>
				
			</item>
			
			<item>
				<title>Useful CFPresentation Tips and Resources</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/11/10/Useful-CFPresentation-Tips-and-Resources</link>
				<description>
				
				&lt;p&gt;One of the tags introduced in ColdFusion 8 is CFPRESENTATION, which allows you to create a Flash-based presentation that is very slick and can take full advantage of many ColdFusion tools.  Also, once created, it&apos;s easy to tweak the content and render it anew.&lt;/p&gt;

&lt;p&gt;For a recent talk I had to give, I used CFPRESENTATION mostly to learn more about it. Following are five tips from others trying this out, together with some thoughts about those considering it.  In a separate post, I&apos;ll put up a simple proof of concept to show how it works.

&lt;p&gt;Five Useful CFPRESENTATION Tips&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm/2008/5/30/Adding-Attachments-To-A-CFPresentation&quot;&gt;Adding Attachments to a CFPresentation&lt;/a&gt;: As a mostly undocumented feature, you can add attachments to a presentation very easily.  Attachments can be web links or file references&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://blog.daemon.com.au/index.cfm?objectid=DE426F3C-13D4-B1F1-4812B988D8B8B67A&quot;&gt;CFPresentation: Presenter image tips&lt;/a&gt;: design suggestions for including presenter photos and a logo in your presentation&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.coldfusionjedi.com/index.cfm/2007/8/29/Cool-feature-in-CFPRESENTATION&quot;&gt;Cool-feature-in-CFPRESENTATION&lt;/a&gt;: CF Guru Ray Camden shows a technique for storing presentations for offline use.  I found that it works to set the directory path in the intro and then copy these from the server.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.forta.com/blog/index.cfm/2008/2/13/Tweaking-ColdFusion-8-Presentations&quot;&gt;Tweaking CF 8 Presentations&lt;/a&gt;: Ben Forta points out tips on where to tweak some internal settings for a presentation done with CFPRESENTATION&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=presentation_1.html#164787&quot;&gt;Creating Slide Presentations&lt;/a&gt;: Adobe documentation and examples for creating a presentation with this tag&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;In my opinion, it&apos;s best not to think of this as a PowerPoint alternative.  Instead, it&apos;s a slick way to create online (or offline) presentations where you want to include live content or render slides in a customizable manner.  Output for presentations is stored as a series of SWF files.  For this reason, don&apos;t expect to include hypertext links on your slides, as they won&apos;t work.&lt;/p&gt;


&lt;p&gt;The rendered content is not as easy to control as standard web markup.  When CFPRESENTATION converts images of webpages, it resizes everything to fit in a single screen.  For this reason, slides with minimal text show larger type.  Also, image presentation is a bit quirky.  For example, I was unable to insert a JPEG in an HTML table with a width of 50% to balance text and graphics.&lt;/p&gt;

&lt;p&gt;All in all, CFPRESENTATION is pretty useful, and it sure looks nice for the amount of code required (which is very minimal).&lt;/p&gt;
&lt;/p&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Web Development</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 10 Nov 2008 14:57:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/11/10/Useful-CFPresentation-Tips-and-Resources</guid>
				
			</item>
			
			<item>
				<title>Improving Options for Finding Course Materials: Custom Banner on TWEN</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/9/12/Custom-TWEN-Banner</link>
				<description>
				
				&lt;p&gt;Beginning this year, several faculty members at Georgetown Law have started using the course management system &lt;a href=&quot;https://lawschool.westlaw.com/twen/&quot;&gt;TWEN (The West Educational Network&lt;/a&gt;).&amp;nbsp; Students can also find course materials on a courseware system developed in -house several years ago.&amp;nbsp; In addition, there are some reserve materials available in the library, and syllabus materials are distributed through a centralized service.&amp;nbsp; Because having so many options can be confusing to our students, we try to link to all services at the same time.&amp;nbsp; On websites we manage, this is easy enough, so we can provide course information links on a &lt;a href=&quot;http://www.ll.georgetown.edu/students/&quot;&gt;main student page&lt;/a&gt;, an &lt;a href=&quot;http://www.ll.georgetown.edu/students/orientation.cfm&quot;&gt;orientation page designed for new students&lt;/a&gt;, and &lt;a href=&quot;http://www.ll.georgetown.edu/blog/index.cfm/2008/8/26/Course-Materials-and-Course-Resources&quot;&gt;other places&lt;/a&gt;. Westlaw recently added a feature to TWEN to let law schools customize a banner on the system.&amp;nbsp; In addition to providing a logo and link back to the law school, there&apos;s enough room to include a few links.&lt;/p&gt;
&lt;p&gt;To allow us to include several links, we looked at setting up a dropdown menu with categories of links.&amp;nbsp; While letting us provide course information sources in one place, this also lets us link to services like Hein Online and our E-Journal Finder, which provide important course materials not found on Westlaw, the quasi-default source for legal information on TWEN.&amp;nbsp; Here&apos;s what it looks like:&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;
&lt;style type=&quot;text/css&quot;&gt;
#gtownWrapper {
max-width: 590px;
}
/* ***********************************************************************************
Convertable Nestled list menu by DUNCAL Productions
&amp;#169; 2007 by Duncan Hill and Alan Gresley
Adapted by Roger Skalbeck, Georgetown Law Library
*********************************************************************************** */
ul#GTOWNnavigation{
position:absolute;
left:0px;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: bold;
}
ul#GTOWNnavigation, ul#GTOWNnavigation ul {
list-style: none;
border-left: 1px solid #CCC;
border-bottom: 0.04em solid #CCC;
padding: 0;
margin: 0;
}
ul#GTOWNnavigation li {
line-height : 1.35em;
position: relative;
float: left;
}
ul#GTOWNnavigation&gt;li li { /* Needed for Opera 9, maybe because it&apos;s decent CSS. Hide from IE6 */
float: none;
}
#GTOWNnavigation a {
display: block;
width: 135px;
color: #333;
background-color: #F3F3F3;
padding: 4px 0.5em;
text-decoration: none;
border-top: 1px solid #01144f;
border-right: 1px solid #01144f;
}
ul#GTOWNnavigation a:hover {
color: #000;
background-color: #CEE8FB;
}
ul#GTOWNnavigation li li a {
width: 135px;
}
ul#GTOWNnavigation li li a {
width: 135px;
}
ul#GTOWNnavigation li ul {
position : absolute;
left: -999em;
}
#GTOWNnavigation li:hover ul ul, #GTOWNnavigation li.sfhover ul ul {
left: -999em;
}
#GTOWNnavigation li:hover ul, #GTOWNnavigation li li:hover ul, #GTOWNnavigation li.sfhover ul, #GTOWNnavigation li li.sfhover ul {
top: 0;
left: -1px;
margin-left: 100%;
}
/*     ****DISPLAYS HORIZONTAL MENU**** */
#GTOWNnavigation li:active ul, #GTOWNnavigation li:hover ul, #GTOWNnavigation li.sfhover ul {
top: 100%;
margin-left: 0;
}
&lt;/style&gt; &lt;!--[if lt IE 7]&gt;
&lt;style type=&quot;text/css&quot;&gt;
ul#GTOWNnavigation li ul { /* Just to help IE6 along */
 width : 130px;
}
&lt;/style&gt;
&lt;![endif]--&gt;
&lt;div id=&quot;gtownWrapper&quot;&gt;&lt;a title=&quot;Georgetown Law homepage&quot; href=&quot;/documents/file/georgetownlogo.jpg&quot;&gt;&lt;img vspace=&quot;5&quot; border=&quot;0&quot; alt=&quot;Georgetown Law Center&quot; src=&quot;http://lscontent.westlaw.com/images/schools/georgetownlogo.jpg&quot; /&gt;&lt;/a&gt; &lt;br /&gt;
&lt;div style=&quot;width: 595px; position: relative; height: 20px;&quot;&gt;
&lt;ul class=&quot;GTOWNmain&quot; id=&quot;GTOWNnavigation&quot;&gt;
    &lt;li&gt;&lt;a href=&quot;http://www.ll.georgetown.edu&quot;&gt;Law Library&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;http://www.ll.georgetown.edu/students/&quot;&gt;Library Resources &amp;raquo;&lt;/a&gt;
    &lt;ul&gt;
        &lt;li&gt;&lt;a href=&quot;http://gull.georgetown.edu/&quot;&gt;GULLiver: Law Library Catalog&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://gull.georgetown.edu/screens/reserves.html&quot;&gt;Reserve Materials&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;https://gull.georgetown.edu/screens/exams.html&quot;&gt;Past Exams&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.ll.georgetown.edu/research/&quot;&gt;Research Guides&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.ll.georgetown.edu/tutorials/&quot;&gt;Research Tutorials&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;http://www.ll.georgetown.edu/connect/&quot;&gt;Popular Databases &amp;raquo;&lt;/a&gt;
    &lt;ul&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.ll.georgetown.edu/services/ejournal.cfm&quot;&gt;E-Journal Finder&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.ll.georgetown.edu/connect/hein_access.cfm&quot;&gt;Hein Online&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.ll.georgetown.edu/connect/jstor.cfm&quot;&gt;JSTOR&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.ll.georgetown.edu/faculty/bna.cfm&quot;&gt;BNA Newsletters&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.lexisnexis.com/lawschool/&quot;&gt;LexisNexis&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://lawschool.westlaw.com&quot;&gt;Westlaw&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;http://www.law.georgetown.edu/&quot;&gt;Law Center &amp;raquo;&lt;/a&gt;
    &lt;ul&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.law.georgetown.edu/registrar/&quot;&gt;Registrar&apos;s Office&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;https://mail.law.georgetown.edu/&quot;&gt;Law Center Email&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.law.georgetown.edu/students.html&quot;&gt;Student Services&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.law.georgetown.edu/Courseware/&quot;&gt;Georgetown Courseware&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;http://www.law.georgetown.edu/CourseMaterials/&quot;&gt;Course Materials&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;This menu uses a version of the something called the &lt;a href=&quot;http://css-class.com/articles/ursidae/&quot;&gt;Sons of Ursidae Menu&lt;/a&gt; (thanks Sara K!) which requires no JavaScript and can be rendered with only a few lines of &lt;abbr title=&quot;Cascading Style Sheet&quot;&gt;CSS&lt;/abbr&gt; code.  The dropdown menus don&apos;t work in Internet Explorer 6, but the four links under the Georgetown logo point to pages that contain all items.&amp;nbsp; We&apos;re going to look at changing our main site navigation menu (which uses &lt;a href=&quot;http://www.opencube.com/index.asp&quot;&gt;Open Cube&apos;s Infinite Menus&lt;/a&gt;), as it requires more complex CSS and complicated JavaScript.&lt;/p&gt;
&lt;p&gt;One interesting thing about our custom menu is that Westlaw&apos;s blue and grey color scheme match nicely with the school&apos;s main colors.&lt;/p&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Web Standards</category>				
				
				<category>Web Development</category>				
				
				<pubDate>Fri, 12 Sep 2008 15:25:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/9/12/Custom-TWEN-Banner</guid>
				
			</item>
			
			<item>
				<title>AJAX Design Enhancements to Georgetown Research Guides</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/7/28/AJAX-Design-Enhancements-to-Georgetown-Research-Guides</link>
				<description>
				
				&lt;p&gt;On the Georgetown Law Library website, we have a pretty big collection of research guides, which we&apos;ve recently expanded to include treatise finder resources, as well as an expanding list of tutorials.  In order to make it easier to cross-reference the guides, we&apos;ve added a new expandable box showing related resources.  Here are two images showing related resources for our &lt;a href=&quot;http://www.ll.georgetown.edu/guides/accounting.cfm&quot;&gt;Accounting Research Guide&lt;/a&gt;.&lt;br /&gt;

&lt;img src=&quot;http://www.ll.georgetown.edu/webdevblog/images/ResGuideClosed.png&quot; align=&quot;top&quot; /&gt; 
&lt;img src=&quot;http://www.ll.georgetown.edu/webdevblog/images/ResGuideOpen.png&quot; align=&quot;top&quot; /&gt;
&lt;/p&gt;

&lt;p&gt;To create the expandable boxes, we used elements of the &lt;a href=&quot;http://labs.adobe.com/technologies/spry/home.html&quot;&gt;Adobe Spry JavaScript library&lt;/a&gt;.  Specifically, it uses the accordion widget.  In our implementation, we use a folder icon with an arror to indicate that there&apos;s more information under that heading.  At it&apos;s heart, this is just a fancy stylized list, so it should display fine with JavaScript turned off, and there should be no reason screen readers can&apos;t interact with this added feature.&lt;/p&gt;

&lt;p&gt;This summer, we&apos;re enhancing our research guides and treatise finder resources in other ways, so stay tuned for other enhancements.&lt;/p&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Ajax</category>				
				
				<pubDate>Mon, 28 Jul 2008 12:33:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/7/28/AJAX-Design-Enhancements-to-Georgetown-Research-Guides</guid>
				
			</item>
			
			<item>
				<title>New Usability Software Released - Mac Only</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/7/25/New-Usability-Software-Released--Mac-Only</link>
				<description>
				
				&lt;p&gt;&lt;img src=&quot;http://www.ll.georgetown.edu/webdevblog/enclosures/gorilla.png&quot; width=&quot;165&quot; align=&quot;right&quot; height=&quot;183&quot; /&gt;If you&apos;ve ever wanted to do any usability testing of your website, there&apos;s a new program just released that may be a great option. It&apos;s called &lt;a href=&quot;http://www.silverbackapp.com&quot;&gt;Silverback&lt;/a&gt;, and it sounds like a promising program.  The one downside is that it is only available for the Mac platform, so an unappologetic Windows user like me has to wait  for a while before using this.&lt;/p&gt;

&lt;p&gt;If you&apos;re in the market for usability software, consider Silverback.  You can try it free for 30 days, and a single copy is around $50, which is much better than the roughly $1500 street price for &lt;a href=&quot;http://www.techsmith.com/morae.asp&quot;&gt;Morae from TechSmith&lt;/a&gt;.  That said, we used Morae for usability testing when we redesigned our website at Georgetown, and it was well worth the money we spent on it.&lt;/p&gt;

&lt;p&gt;At the risk of providing lots of free advertising for a company&apos;s product I haven&apos;t tested, here&apos;s a video explaining Silverback:&lt;br/&gt;

&lt;br/&gt;
&lt;div class=&quot;youtube-video&quot;&gt;&lt;object width=&quot;400&quot; height=&quot;300&quot;&gt;	&lt;param name=&quot;allowfullscreen&quot; value=&quot;true&quot; &gt; &lt;/param&gt;	&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot; &gt; &lt;/param&gt;	&lt;param name=&quot;movie&quot; value=&quot;http://www.vimeo.com/moogaloop.swf?clip_id=1393885&amp;server=www.vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1&quot; &gt; &lt;/param&gt;	&lt;embed src=&quot;http://www.vimeo.com/moogaloop.swf?clip_id=1393885&amp;server=www.vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; allowscriptaccess=&quot;always&quot; width=&quot;400&quot; height=&quot;300&quot;&gt; &lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;br /&gt;&lt;a href=&quot;http://www.vimeo.com/1393885?pg=embed&amp;amp;sec=1393885&quot;&gt;Silverback screencast&lt;/a&gt; from &lt;a href=&quot;http://www.vimeo.com/user196031?pg=embed&amp;amp;sec=1393885&quot;&gt;Jeremy Keith&lt;/a&gt; on &lt;a href=&quot;http://vimeo.com?pg=embed&amp;amp;sec=1393885&quot;&gt;Vimeo&lt;/a&gt;.
&lt;/p&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Web Development</category>				
				
				<category>Software</category>				
				
				<pubDate>Fri, 25 Jul 2008 15:57:09 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/7/25/New-Usability-Software-Released--Mac-Only</guid>
				
			</item>
			
			<item>
				<title>Three Options for Bookmarking / Sharing Content Online: ShareThis, AddThis, AddToAny</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/5/27/Three-Options-for-Bookmarking--Sharing-Content-Online-ShareThis-AddThis-AddToAny</link>
				<description>
				
				Once you publish anything online, you inevitably want to make it easy for users to return to important content and share it with others.  When designing for the web, there is often limited screen real estate where you can insert images for people to post to Facebook, del.icio.us, Newsvine, Digg or whatever.  Typically you either choose a few you like or you use a tool that lets users choose their service(s) of preference.  Personally, I like the second option.  On the Georgetown Law Library site, we use the free widget for AddThis.com (&lt;a href=&quot;/about/bookmark.cfm&quot;&gt;which we describe on our site here&lt;/a&gt;). AddThis.com is not &quot;the only game in town&quot;, so following are highlights of three options for integrating a bookmark tools on your site.

&lt;p&gt;&lt;strong&gt;AddThis.com&lt;/strong&gt; (&lt;a href=&quot;http://www.addthis.com&quot;&gt;www.addthis.com&lt;/a&gt;)
&lt;br/&gt;
&lt;img src=&quot;http://www.ll.georgetown.edu/webdevblog/images/AddThis.gif&quot;/&gt;
 The default is for a single button integrated on your site.  After you&apos;ve created an account with AddThis.com, you can use their service online to track which services people use to bookmark your content.  Also, account owners can get rudimentary statistics about which pages people bookmark. They have easy-to-use blog integration for WordPress, TypePad and Blogger.  Also, they have a feed bookmark, which we&apos;re not using yet.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AddToAny&lt;/strong&gt; (&lt;a href=&quot;http://www.addtoany.com/&quot;&gt;www.addtoany.com&lt;/a&gt;
&lt;br/&gt; &lt;img src=&quot;http://www.ll.georgetown.edu/webdevblog/images/AddToAny-subscribe.gif&quot; /&gt;
 This service was apparently introduced a few months before AddThis.com, but it might not be getting as much press due to a lower profile site.  AddToAny has two button options: Save/Share is for posting to bookmark and news sites.  Subscribe is for adding RSS feeds to services that support them (e.g. iTunes or Google Reader). To Track statistics, they show how to use Google Analytics on your site to know who is using each service.  There&apos;s no requirement that you have an account with them to use it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ShareThis&lt;/strong&gt; (&lt;a href=&quot;http://www.sharethis.com/&quot;&gt;www.sharethis.com&lt;/a&gt;)&lt;br/&gt;
&lt;img src=&quot;http://www.ll.georgetown.edu/webdevblog/images/ShareThisDemo.gif&quot;&gt;
 This one looks different than the other two services, but the core features are quite similar.  One nice feature is that they have an option to send links, which can be via email or SMS.  They also break out the idea of posting this to a service as a separate option.  In this third area is where you would post to a service like Facebook, Twitter, or WordPress. In setting up an account with ShareThis, you can customize the way the button displays.  It looks like they have decent online metrics for analyzing who is using the tool on your site. &lt;/p&gt;

Any of the three options should seems good to use.  My suggestion is to pick only one and use it for all of your traffic. 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Web Development</category>				
				
				<pubDate>Tue, 27 May 2008 14:13:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/5/27/Three-Options-for-Bookmarking--Sharing-Content-Online-ShareThis-AddThis-AddToAny</guid>
				
			</item>
			
			<item>
				<title>Play .FLV Files Off-Line With Adobe Media Player</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/4/22/Play-FLV-Files-OffLine-With-Adobe-Media-Player</link>
				<description>
				
				&lt;p&gt;&lt;img style=&quot;max-width: 800px;&quot; src=&quot;http://www.ll.georgetown.edu/webdevblog/enclosures/amp_icon.jpg&quot; align=&quot;left&quot; /&gt;Just out of beta testing, the new &lt;a href=&quot;http://get.adobe.com/amp/&quot;&gt;Adobe Media Player&lt;/a&gt; is a pretty slick way to play media files on your computer.  If you&apos;ve already got iTunes and Windows Media Player (oh, and maybe the Yahoo! Jukebox or Real Player), you might wonder:  Why do I need yet another player?  As it turns out, there&apos;s one really good reason you might want it:  To play .FLV video files.  These are Flash video files designed for streaming over the Internet.  YouTube videos, for instance, are in this format, and a few sites let you download .FLV files from YouTube.  There are also other sites that let you download these media types.&lt;/p&gt;
&lt;p&gt;Previously you had to look for more obscure media players like &lt;a href=&quot;http://www.videolan.org&quot;&gt;VLC Media Player&lt;/a&gt; to play the files.  Now Adobe Media Player lets you view FLV files off-line.  Interestingly, the latest version of &lt;a href=&quot;http://www.real.com/&quot;&gt;RealPlayer&lt;/a&gt; software lets you do this, and they also have an option to &quot;download this video&quot; to play it locally. Perhaps Microsoft and Apple won&apos;t be far behind in extending media format support.  Or maybe not.&lt;/p&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<pubDate>Tue, 22 Apr 2008 21:16:19 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/4/22/Play-FLV-Files-OffLine-With-Adobe-Media-Player</guid>
				
			</item>
			
			<item>
				<title>Kuler Color Generator From Adobe</title>
				<link>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/4/17/Kuler-Color-Generator-From-Adobe</link>
				<description>
				
				&lt;p&gt;If you haven&apos;t seen it before, Adobe makes a great (and free) online color palette generator called &lt;a href=&quot;http://kuler.adobe.com&quot;&gt;Kuler&lt;/a&gt;.  This is a Flash-based application where you can generate, share and export color palettes.
&lt;/p&gt;&lt;p&gt;Here&apos;s a screenshot of the Flash application in a browser window:&lt;br/&gt;
&lt;img src=&quot;http://www.ll.georgetown.edu/webdevblog/images//kulerScreenshot.jpg&quot;&gt;
&lt;/p&gt;If you know Kuler but don&apos;t like it, take a look at this list of &lt;a href=&quot;http://www.cssjuice.com/25-popular-color-scheme-and-palette-generators/&quot;&gt;25 Popular Color Scheme Palette Generators&lt;/a&gt; available at the site CSS Juice.  On this list, Kuler is mentioned towards the end, so clearly some folks don&apos;t like it.  That said, I&apos;ve found it to be a great way to develop new color themes, and I see no reason to try out multiple generators.
&lt;p&gt;Since we manage our site almost exclusively in Dreamweaver, there&apos;s one more reason why Kuler works well for us.  WebAssist.com recently introduced a free Dreamweaver extension called &quot;&lt;a href=&quot;http://www.webassist.com/professional/products/productdetails.asp?PID=147&quot;&gt;Dreamweaver Tools for Kuler&lt;/a&gt;&quot; that lets you integrate Kuler directly so you can search and use palettes in the context of updating your site&apos;s stylesheet or other graphic elements.  What could be cooler than that?  (or is that: What could be um... Kuler?)&lt;br/&gt;&lt;img src=&quot;http://www.ll.georgetown.edu/webdevblog/images/KulerDW.jpg&quot;&gt; &lt;/p&gt; 
				</description>
				
				<category>Graphic Design</category>				
				
				<category>Web Development</category>				
				
				<pubDate>Thu, 17 Apr 2008 16:20:00 -0500</pubDate>
				<guid>http://www.ll.georgetown.edu/webdevblog/index.cfm/2008/4/17/Kuler-Color-Generator-From-Adobe</guid>
				
			</item>
			</channel></rss>