<?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/"
		xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>EduTechnorama &#187; Accessibility</title>
	<atom:link href="http://www.edutechie.ws/category/accessibility/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.edutechie.ws</link>
	<description>Educational Experiences and Experiments of a Computer Scientist/Educational Psychologist/Technologist</description>
	<lastBuildDate>Tue, 08 Dec 2009 20:14:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<copyright>2006-2007 </copyright>
	<managingEditor>jeffrey.midiman@gmail.com (EduTechnorama)</managingEditor>
	<webMaster>jeffrey.midiman@gmail.com (EduTechnorama)</webMaster>
	<image>
		<url>http://www.edutechie.ws/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>EduTechnorama</title>
		<link>http://www.edutechie.ws</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>Educational Experiences and Experiments of a Computer Scientist/Educational Psychologist/Technologist</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &#38; Culture" />
	<itunes:author>EduTechnorama</itunes:author>
	<itunes:owner>
		<itunes:name>EduTechnorama</itunes:name>
		<itunes:email>jeffrey.midiman@gmail.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.edutechie.ws/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>Ajax and user experience</title>
		<link>http://www.edutechie.ws/2008/11/13/ajax-and-user-experience/</link>
		<comments>http://www.edutechie.ws/2008/11/13/ajax-and-user-experience/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 17:18:09 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[HCI]]></category>

		<guid isPermaLink="false">http://www.edutechie.ws/?p=92</guid>
		<description><![CDATA[&#160;
I&#8217;ve alluded in a previous post about the fact that the typical request-view-reload experience for web pages is capable of becoming a thing of the past with the advent of properly programed and usable web experiences via what has been coined as Rich Internet Applications. What this means is that your typical desktop user experience [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>I&#8217;ve alluded in a <a href="http://www.edutechie.ws/2007/12/27/hci-design-implications-for-education/">previous post</a> about the fact that the typical request-view-reload experience for web pages is capable of becoming a thing of the past with the advent of properly programed and usable web experiences via what has been coined as Rich Internet Applications. What this means is that your typical desktop user experience for a program reports an immediate response in updating the UI (user interface) so that the interactions signal to the user that they are getting something done in the browser. Read on for more of what I mean&#8230;</p>
<p><span id="more-92"></span></p>
<p>In the past, when you tell your browser to request a new web document by either:</p>
<ol>
<li>Typing in the web address in the browser address bar</li>
<li>Clicking on a hyperlink (which in effect does the same thing as item 1&#8211;it&#8217;s just your browser doing the typing for you)</li>
</ol>
<p>This invokes what is known as an HTTP request which sends a bunch of text across the network to the web server you are talking to. Contained within this request is the items or document that contains other items such as pictures and media, etc. Typically this caused your web browser&#8217;s page to go white or blank for a few moments while the web server is working on your task and the network is doing its darndest to push all that information back to you. If either of those two things are slow for whatever reason the user may think they&#8217;ve done something wrong.</p>
<p>Typical user feedback that the browser is working (and I see people ignoring these ALL the time) are what are known as spinners. These are usually the logos in the browser that show animations.&nbsp;</p>
<p>For example here&#8217;s the one from the now historical precursor to Mozilla Firefox: Netscape Navigator 4.8:</p>
<p style="text-align: center;"><img width="36" height="36" src="http://www.edutechie.ws/wp-content/uploads/netscape_logo_animated(1).gif" alt="Netscape Spinner Logo" /></p>
<p>&nbsp;</p>
<p>If users don&#8217;t see their requested web page come right up, often times they think they did something wrong when in fact the browser is just chugging away waiting for the network and/or web server to respond to their request. (In some cases their own computer may be just multitasking). So they will hit the reload button or click the link again, or my favorite: double-click the link. What I&#8217;m saying here is that it&#8217;s just not intuitive to the user what they are supposed to do if they don&#8217;t see something right away, when in fact they are really being asked to do is be patient. Imagine that.</p>
<p>With Ajax (a coined term for Asynchronous JavaScript and XML) is that the browser is making little tine HTTP requests for updating little parts of the page without browser supported built-in feedback in the way of spinning logos. Sometimes these are present but not always. A lot of the time it&#8217;s not even worth it because we have faster networks and faster computers, and the data being requested is teeny-tiny compared to a whole entire page of text and images. An example of this is <a href="http://www.google.com/support/bin/answer.py?answer=106230&amp;hl=en">google suggest. </a></p>
<p>All of this stuff updates the typical web user&#8217;s experience to a point somewhere in between a desktop application where all the computing power and data to complete the task is local to the machine and not on the network or &quot;in the cloud&quot; as it is now becoming popular to say.</p>
<p>With that all said, here is a presentation I saw earlier this week on a talk given by some Ajax user experience experts that I think really hit on this. If you have a spare hour I suggest taking a look at it. A lot of programming terminology is in there but I think it&#8217;s important if you are a technologist and expect &quot;cloud computing&quot; or &quot;RIA&quot; or &quot;AJAX&quot; to become part of your instruction</p>
<p>&nbsp;</p>
<p style="text-align: center;"><embed width="486" height="412" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" swliveconnect="true" type="application/x-shockwave-flash" seamlesstabbing="false" name="flashObj" base="http://admin.brightcove.com" flashvars="videoId=1825879418&amp;playerId=1596744118&amp;viewerSecureGatewayURL=https://console.brightcove.com/services/amfgateway&amp;servicesURL=http://services.brightcove.com/services&amp;cdnURL=http://admin.brightcove.com&amp;domain=embed&amp;autoStart=false&amp;" bgcolor="#FFFFFF" src="http://services.brightcove.com/services/viewer/federated_f8/1596744118"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/11/13/ajax-and-user-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screens Everywhere</title>
		<link>http://www.edutechie.ws/2008/05/02/screens-everywhere/</link>
		<comments>http://www.edutechie.ws/2008/05/02/screens-everywhere/#comments</comments>
		<pubDate>Fri, 02 May 2008 15:42:22 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[HCI]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.edutechie.ws/?p=67</guid>
		<description><![CDATA[I&#8217;d like you to meet someone:

This is Sarah Outwater, a young woman who has been blind since she was 3 years old. She&#8217;s a cancer survivor (metastatic retinoblastoma) and has been in her condition ever since she had surgery on her eyes to protect her from the deadly disease.
I was invited to participate in a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like you to meet someone:</p>
<p><a href="http://www.flickr.com/photos/midiman/72820502/" title="Sarah Outwater And Her Dog by midiman, on Flickr"><img height="240" border="0" align="left" width="180" src="http://farm1.static.flickr.com/20/72820502_fef0a62cc0_m.jpg" alt="Sarah Outwater And Her Dog" /></a></p>
<p>This is Sarah Outwater, a young woman who has been blind since she was 3 years old. She&#8217;s a cancer survivor (metastatic retinoblastoma) and has been in her condition ever since she had surgery on her eyes to protect her from the deadly disease.</p>
<p>I was invited to participate in a charity project for a little girl she had heard of on the news who was in a similar condition as she was at her age, except technology has advanced and this little girl (last I heard) was free of her cancer and still able to see.</p>
<p>Sarah is an extremely intelligent girl and can play several different musical instruments and uses technology to support her education and professional career goals. In her charity project, she was compiling a music album and asking for donations to help the family of the girl who was receiving cancer treatments. As part of my donation, I offered to build a web site and create/donate some multimedia presentations for benefit concerts and post them on the website (This was before I heard of YouTube). Sarah brought her laptop to my workplace and we cut some video interviews together and I showed her how to edit content for the website. Later we were joking together in a group meeting about how people and technology interact. I made the quip that people who talk to their technology to get it to do obscure things are borderline bonkers, and she retorted &quot;well that&#8217;s nothing. My technology talks to me!&quot;</p>
<p>Of course it was true. In our interactions for her laptop was equipped with screen reading technology that allowed her to complete her work for school and work on her music projects. This is a prime example of adaptive use of technology for a population that predominantly gets their work done despite the fact that they can&#8217;t see what they are doing.</p>
<p>However, that&#8217;s not the only way people who can&#8217;t make use of their eyes to do their work continue to survive. They must be able to use their other senses. Audio alone in my humble opinion is not the savior of interaction with technology. People must be able to use their other senses too. Which of the remaining&nbsp; 4 senses makes the most sense for HCI for blind people? Touch or tactile surfaces is what&#8217;s coming to mind.</p>
<p><a href="http://www.adobe.com/openscreenproject/" target="_blank">Here is something</a> that Macrodobia (<a href="http://en.wikipedia.org/wiki/Adobe_Systems" target="_blank">Adobe </a>the company and <a href="http://en.wikipedia.org/wiki/Macromedia" target="_blank">Macromedia</a>&#8216;s Technology) have been pushing for a while&#8230;the idea that consistent technology for authoring multimedia content be available on a multitude of devices. What this means is that soon someday we will be seeing flash on tons of personal handheld devices.</p>
<p>I also suspect we will see flash interfaces on other devices too such as kitchen appliances and home entertainment center components. Even more sobering would be to see it in public facilities and transportation devices such as elevators.</p>
<p>Adobe is really pushing their flash platform which is really good for people like me who enjoy learning about their platform. What I would really like to see is an concerted effort to research what accessibility options exist for persons who can&#8217;t use their eyes to interact with interfaces that will potentially be flat and non-tactile.</p>
<p>Even Apple&#8217;s iPhone with all its glitz and glory has its issues. How does a person who can&#8217;t see be excited about an iPhone for their communication needs? Sarah had no problem using her cell phone to communicate, and could very easily find the buttons to push because she could <strong>feel them with her fingers</strong>. Voice activation is probably on the horizon and may become mandatory for devices using these interfaces, and I will be waiting to see what advances are on their way with Adobe&#8217;s technology.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/05/02/screens-everywhere/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

