<?xml version="1.0"?>
<rss version="2.0"><channel><title>Uzilla, LLC: Tools for a Usable Web</title><link>http://www.blozom.com/blozom</link><description>News about the Uzilla, LLC product family including tools for web usability testing, card sorting, and heurisitc review.</description><copyright>Copyright 2003 Andy Edmonds</copyright><lastBuildDate>Wed, 08 Jan 2003 17:24:23 GMT</lastBuildDate><docs>http://backend.userland.com/rss</docs><generator>Blozom 0.1</generator><managingEditor>andyed@surfmind.com</managingEditor><webMaster>andyed@surfmind.com</webMaster><category domain="http://www.weblogs.com/rssUpdates/changes.xml">rssUpdates</category><skipHours><hour>3</hour><hour>4</hour><hour>2</hour><hour>5</hour><hour>1</hour><hour>6</hour><hour>10</hour><hour>17</hour></skipHours><ttl>60</ttl><item postdate="2004/06/15"><title>New Uzilla Component: Obzerver</title><description>The &lt;a href="http://uzilla.mozdev.org/obzerver.html"&gt;Obzerver module&lt;/a&gt; provides an open source implementation of a click
stream monitor.&amp;nbsp; It writes log files to the local hard drive in
Mozilla Firefox and the Mozilla suite.&lt;br&gt;
&lt;br&gt;
The stored data is in the &lt;a href="http://zing.ncsl.nist.gov/WebTools/FLUD/overview.html"&gt;FLUD format&lt;/a&gt;, proposed by NIST in 2002:&lt;br&gt;
&lt;code&gt;loghead 2004/6/15-8:55:39 subject=100 version=v1 time_zone=-5 generator=obzerver&lt;br&gt;
event 2004/7/15-8:55:40.401 1:0
url=http://www.mozilla.org/products/firefox/start/ #OP newpage complete
* url=http://www.mozilla.org/products/firefox/start/&lt;br&gt;
logend 2004/6/15-8:56:21&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
This FLUD sample shows only the page level data.&amp;nbsp; Low level event
data is also partially complete but not yet integrated with logging.&lt;br&gt;
&lt;br&gt;
The FLUD format calls for identifying the sources of navigation
elements and in the web scenario might allow us to quantify the
relative proportions of methods for accessing new content.&amp;nbsp;
C.Soules (a CMU CompSci grad student) crafted the Obzerver
implementation and is interested in the source events for a different
reason; for the meta data they provide.&amp;nbsp; &lt;br&gt;
&lt;br&gt;&lt;a href="http://uzilla.mozdev.org/obzerver.html"&gt;
Obzerver&lt;/a&gt; is ready for use today for simple url logging and with a bit
more effort for more complete event traces.&amp;nbsp; The Uzilla.net suite
provides these rich event traces, a way to model your test protocol,
and data analysis.&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/07/15/</guid><pubDate>Thu, 15 Jul 2004 12:58:13 GMT</pubDate></item><item postdate="2004/05/24"><title>A Better Multi-Select Widget: Open Source DHTML</title><description>In a recent usability study, we observed that &lt;b&gt;the intranet user base was
unfamiliar with the convention of control-click&lt;/b&gt; for selecting multiple
options in an HTML menulist widget.&lt;br&gt;
&lt;br&gt;
To address this issue, we used checkboxes and DHTML to eliminates the need to&amp;nbsp; control-click to select multiple
items. In addition to creating an affordance multiple selection, this
system also provides better system status information.&amp;nbsp;&amp;nbsp; &lt;br&gt;
&lt;br&gt;
An example is shown below in which the user has already selected
two options from the first two collections and is working on the third:
The design saves clicks and screen real esate by making the checkbox
containers collapsible.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://uzilla.net/uzilla/my/widgets/multiselect/"&gt;&lt;img src="http://uzilla.net/uzilla/blog/images/a_better_multi_select_widget.gif" alt="A better multiple select widget."&gt;&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
The code is available as open source using the business friendly MPL license. &lt;a href="http://uzilla.net/uzilla/my/widgets/multiselect/"&gt;More information, a live demo, and the source.&lt;/a&gt;&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/06/24/</guid><pubDate>Thu, 24 Jun 2004 20:33:51 GMT</pubDate></item><item postdate="2004/03/27"><title>Form Design: Chunking for Efficiency</title><description>&amp;nbsp;&lt;br&gt;
 In a recent evaluation with a moderately large sample of 30, the following form was tested.&lt;br&gt;
&lt;img alt="A two column form layout" border="1" src="http://uzilla.net/uzilla/blog/images/mich_form_thumbnail.png"&gt;&lt;br&gt;
&lt;br&gt;
&lt;img alt=" Observed orders of form completion" src="http://uzilla.net/uzilla/blog/images/mich_order_diagram.png" align="right"&gt;We
observed three different orders of execution in the data.&amp;nbsp; The
rather jumbled nature of the form layout contributed to this problem.&amp;nbsp; A
bigger issue was the lack of grouping of related fields, taking significant additional cognitive processing.&lt;br&gt;
&lt;br&gt;
HTML has fieldset and legend tags to solve this problem.&amp;nbsp; In this
case, re-ordering and changing the layout of the fields was
required.&amp;nbsp; Here's an example of a fieldset:&lt;br&gt;
&lt;br&gt;&lt;fieldset&gt;&lt;legend&gt;Uzilla Services&lt;/legend&gt;&lt;input type="checkbox" ="" id="testing"&gt;&lt;label for="testing"&gt;Test Design &amp;amp; Logging&lt;/label&gt;&lt;br&gt;&lt;input type="checkbox" id="screenshare"&gt;&lt;label for="screenshare"&gt;Screenshare&lt;/label&gt;&lt;br&gt;&lt;input t="" type="checkbox" id="realtime"&gt;&lt;label for="realtime"&gt;Realtime Monitor&lt;/label&gt;&lt;br&gt;&lt;/fieldset&gt;&lt;br&gt;
&lt;br clear="all"&gt;&lt;img alt="Expected ordering of revised form design." src="http://uzilla.net/uzilla/blog/images/mich_revised_order_diagram.png" align="left"&gt;We
project a more regular pattern, shown at left, in the revised design.
More importantly, we expect that the percentage of users skipping a
field will decrease dramatically.&amp;nbsp; Thirty percent of users missed
a field and lost time upwards of a minute in some cases.&lt;br&gt;
&lt;br&gt;
There is ROI on layout and visual design, in case there was any doubt.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;

</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/04/27/</guid><pubDate>Wed, 28 Apr 2004 01:25:24 GMT</pubDate><category>Prototyping</category><category>Testing</category></item><item postdate="2004/01/13"><title>Analyzing Usability Quantitatively</title><description>Jeff Sauro's site &lt;a href="http://www.measuringusability.com"&gt;measuring usability .com&lt;/a&gt;
is a great introduction into the issues and rewards of quantitatively
measuring usability.&amp;nbsp; Articles expound upon the intracies of &lt;a href="http://www.measuringusability.com/task_times.html"&gt;task timing&lt;/a&gt;, &lt;a href="http://www.measuringusability.com/random.htm"&gt;task order randomization&lt;/a&gt;, and a fresh approach to &lt;a href="http://www.measuringusability.com/sample.htm"&gt;thinking about sample size&lt;/a&gt;.&amp;nbsp;
Based upon a initial reading, these articles all express themes in line
with the design rationale of Uzilla.net. For instance, Uzilla.net allows partialing
out page load time, supports task order randomization, and of course,
by easing the preparation and analysis phases, enables a greater number
of participants.&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/02/13/</guid><pubDate>Fri, 13 Feb 2004 15:34:09 GMT</pubDate><category>Testing</category></item><item postdate="2004/00/12"><title>Open Source Credits and Related Resources</title><description>Two new pages, works in progress, offer &lt;a href="http://uzilla.net/uzilla/blog/credits.cfm"&gt;credits&lt;/a&gt; to open source code and related public resources utilized in Uzilla as well as code contributed back to open source.&amp;nbsp; The &lt;a href="http://www.uzilla.net/uzilla/blog/related/"&gt;related tools&lt;/a&gt; page points to other resources for web developers and user experience professionals.&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/01/12/</guid><pubDate>Tue, 13 Jan 2004 02:17:30 GMT</pubDate></item><item postdate="2003/11/01"><title> Macintosh OS X for Usability Professionals?</title><description>OS X is very popular among internet developers and designers, with the
availability of Macromedia and Adobe tools.&amp;nbsp; Is OS X a reasonable
choice for a usability professional?&lt;br&gt;
&lt;br&gt;
Uzilla, LLC's tools, the browser-based &lt;a href="http://uzilla.net/uzilla/info/products/"&gt;usability testing suite&lt;/a&gt;, &lt;a href="http://uzilla.mozdev.org/heuristicreview.html"&gt;uzReview&lt;/a&gt;, and &lt;a href="http://uzilla.mozdev.org/cardsort.html"&gt;uzCardSort&lt;/a&gt; all work on OS X.&amp;nbsp; &lt;a href="http://www.usersfirst.com/index.html"&gt;UsersFirst&lt;/a&gt; has recently introduced a video capture system that requires a mac laptop.&amp;nbsp; &lt;a href="http://www.itee.uq.edu.au/cerg/macshapa.htm"&gt;MacSHAPA&lt;/a&gt;, a longstanding video analysis tool, is coming to OS X.&lt;br&gt;
&lt;br&gt;
Hmm, a &lt;a href="http://www.apple.com/powermac/"&gt;g5&lt;/a&gt; or a &lt;a href="http://www.apple.com/powerbook/"&gt;tiBook&lt;/a&gt;?&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2003/12/01/</guid><pubDate>Mon, 01 Dec 2003 18:15:23 GMT</pubDate></item><item postdate="2003/10/17"><title>Quantifying Lost in Hyperspace</title><description>Smith (1996) proposed a measure of "lostness" in hypertext structures
that centers around page revisits.&amp;nbsp; The lostness measure shown
below, from a data table from the Uzilla.net reporting application ,
depicts the most lost users in a recent test.&amp;nbsp; &lt;br&gt;
&lt;br&gt;&lt;span title="Using client side dhtml"&gt;Sorted&lt;/span&gt; by lostness ascending, the pictured users exhibit
high rates of page revisitation which Smith argues indicates the users
are lost.&amp;nbsp; Efficiency on the other hand takes into account
redundant page views, but also deals with the total number of page
views versus the minimal (or "optimal") number.&amp;nbsp; The two measures
are correlated but not perfectly, as users with the same lostness may
vary in efficiency.&lt;br&gt;
&lt;br&gt;Lower values of lostness indicate more confusion and lower values of efficiency are better.&lt;br&gt;
&amp;nbsp;&lt;br&gt;
 &lt;img src="http://uzilla.net/uzilla/blog/images/pasmith_lostness_efficiency.gif" title="screenshot of P.A. Smith lostness and efficiency measures" alt="Table showing measures of lostness and efficiency"&gt;&lt;br&gt;
&lt;br&gt;
We're not totally convinced this measure captures negative user
experiences in all cases.&amp;nbsp; Certainly, in a shopping scenario a
user might revisit a product page repeatedly while comparing it to
other options -- and that's a desirable business outcome. In other
applications, revisitation may be a clear indicator of confusion.&amp;nbsp;
&lt;br&gt;
&lt;br&gt;
We'll report on correlations between this measure of confusion and other measures we've been cultivating in the coming months.&lt;br&gt;
&lt;br&gt;


Smith, P.A.: Towards a practical measure of hypertext usability. Interacting with Computers 8 (4) (1996) pp. 365-381
&lt;a href="http://citeseer.nj.nec.com/context/898955/0"&gt;http://citeseer.nj.nec.com/context/898955/0&lt;/a&gt;&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2003/11/17/#index</guid><pubDate>Mon, 17 Nov 2003 05:02:20 GMT</pubDate><category>Web Usability</category></item><item postdate="2004/07/25"><title>New Uzilla Component: Obzerver</title><description>The &lt;a href="http://uzilla.mozdev.org/obzerver.html"&gt;Obzerver module&lt;/a&gt; provides an open source implementation of a click
stream monitor.&amp;nbsp; It writes log files to the local hard drive in
Mozilla Firefox and the Mozilla suite.&lt;br&gt;
&lt;br&gt;
The stored data is in the &lt;a href="http://zing.ncsl.nist.gov/WebTools/FLUD/overview.html"&gt;FLUD format&lt;/a&gt;, proposed by NIST in 2002:&lt;br&gt;
&lt;code&gt;loghead 2004/6/15-8:55:39 subject=100 version=v1 time_zone=-5 generator=obzerver&lt;br&gt;
event 2004/7/15-8:55:40.401 1:0
url=http://www.mozilla.org/products/firefox/start/&lt;br&gt;
#OP newpage complete
* url=http://www.mozilla.org/products/firefox/start/&lt;br&gt;
logend 2004/6/15-8:56:21&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
This FLUD sample shows only the page level data.&amp;nbsp; Low level event
data is also partially complete but not yet integrated with logging.&lt;br&gt;
&lt;br&gt;
The FLUD format calls for identifying the sources of navigation
elements and in the web scenario might allow us to quantify the
relative proportions of methods for accessing new content.&amp;nbsp;
C.Soules (a CMU CompSci grad student) crafted the Obzerver
implementation and is interested in the source events for a different
reason; for the meta data they provide.&amp;nbsp; &lt;br&gt;
&lt;br&gt;&lt;a href="http://uzilla.mozdev.org/obzerver.html"&gt;
Obzerver&lt;/a&gt; is ready for use today for simple url logging and with a bit
more effort for more complete event traces.&amp;nbsp; The Uzilla.net suite
provides these rich event traces, a way to model your test protocol,
and data analysis.&amp;nbsp; &lt;br&gt;
&lt;br&gt;
If you're interested in helping with the project, check the out the &lt;a href="http://bugzilla.mozdev.org/buglist.cgi?short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=uzilla&amp;amp;component=obzerver&amp;amp;long_desc_type=allwordssubstr&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=allwords&amp;amp;keywords=&amp;amp;bug_status=NEW&amp;amp;bug_status=ASSIGNED&amp;amp;bug_status=REOPENED&amp;amp;emailassigned_to1=1&amp;amp;emailtype1=substring&amp;amp;email1=&amp;amp;emailassigned_to2=1&amp;amp;emailreporter2=1&amp;amp;emailqa_contact2=1&amp;amp;emailcc2=1&amp;amp;emailtype2=substring&amp;amp;email2=&amp;amp;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;changedin=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;newqueryname=&amp;amp;order=Bug+Number&amp;amp;field0-0-0=noop&amp;amp;type0-0-0=noop&amp;amp;value0-0-0="&gt;bug list&lt;/a&gt;.&amp;nbsp;
Commenting on bugs and filing new ones is a great way to start getting
involved. For a meta-view on how this works, check the working paper &lt;a href="http://www.cs.waikato.ac.nz/%7Edaven/docs/wp-08-2004.html"&gt;Usability Discussions in Open Source&lt;/a&gt;.&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/07/15/</guid><pubDate>Thu, 15 Jul 2004 12:58:13 GMT</pubDate></item><item postdate="2004/05/24"><title>A Better Multi-Select Widget: Open Source DHTML</title><description>In a recent usability study, we observed that &lt;b&gt;the intranet user base was
unfamiliar with the convention of control-click&lt;/b&gt; for selecting multiple
options in an HTML menulist widget.&lt;br&gt;
&lt;br&gt;
To address this issue, we used checkboxes and DHTML to eliminates the need to&amp;nbsp; control-click to select multiple
items. In addition to creating an affordance multiple selection, this
system also provides better system status information.&amp;nbsp;&amp;nbsp; &lt;br&gt;
&lt;br&gt;
An example is shown below in which the user has already selected
two options from the first two collections and is working on the third:
The design saves clicks and screen real esate by making the checkbox
containers collapsible.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://uzilla.net/uzilla/my/widgets/multiselect/"&gt;&lt;img src="http://uzilla.net/uzilla/blog/images/a_better_multi_select_widget.gif" alt="A better multiple select widget."&gt;&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
The code is available as open source using the business friendly MPL license. &lt;a href="http://uzilla.net/uzilla/my/widgets/multiselect/"&gt;More information, a live demo, and the source.&lt;/a&gt;&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/06/24/</guid><pubDate>Thu, 24 Jun 2004 20:33:51 GMT</pubDate></item><item postdate="2004/03/27"><title>Form Design: Chunking for Efficiency</title><description>&amp;nbsp;&lt;br&gt;
 In a recent evaluation with a moderately large sample of 30, the following form was tested.&lt;br&gt;
&lt;img alt="A two column form layout" border="1" src="http://uzilla.net/uzilla/blog/images/mich_form_thumbnail.png"&gt;&lt;br&gt;
&lt;br&gt;
&lt;img alt=" Observed orders of form completion" src="http://uzilla.net/uzilla/blog/images/mich_order_diagram.png" align="right"&gt;We
observed three different orders of execution in the data.&amp;nbsp; The
rather jumbled nature of the form layout contributed to this problem.&amp;nbsp; A
bigger issue was the lack of grouping of related fields, taking significant additional cognitive processing.&lt;br&gt;
&lt;br&gt;
HTML has fieldset and legend tags to solve this problem.&amp;nbsp; In this
case, re-ordering and changing the layout of the fields was
required.&amp;nbsp; Here's an example of a fieldset:&lt;br&gt;
&lt;br&gt;&lt;fieldset&gt;&lt;legend&gt;Uzilla Services&lt;/legend&gt;&lt;input type="checkbox" ="" id="testing"&gt;&lt;label for="testing"&gt;Test Design &amp;amp; Logging&lt;/label&gt;&lt;br&gt;&lt;input type="checkbox" id="screenshare"&gt;&lt;label for="screenshare"&gt;Screenshare&lt;/label&gt;&lt;br&gt;&lt;input t="" type="checkbox" id="realtime"&gt;&lt;label for="realtime"&gt;Realtime Monitor&lt;/label&gt;&lt;br&gt;&lt;/fieldset&gt;&lt;br&gt;
&lt;br clear="all"&gt;&lt;img alt="Expected ordering of revised form design." src="http://uzilla.net/uzilla/blog/images/mich_revised_order_diagram.png" align="left"&gt;We
project a more regular pattern, shown at left, in the revised design.
More importantly, we expect that the percentage of users skipping a
field will decrease dramatically.&amp;nbsp; Thirty percent of users missed
a field and lost time upwards of a minute in some cases.&lt;br&gt;
&lt;br&gt;
There is ROI on layout and visual design, in case there was any doubt.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;

</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/04/27/</guid><pubDate>Wed, 28 Apr 2004 01:25:24 GMT</pubDate><category>Prototyping</category><category>Testing</category></item><item postdate="2004/01/13"><title>Analyzing Usability Quantitatively</title><description>Jeff Sauro's site &lt;a href="http://www.measuringusability.com"&gt;measuring usability .com&lt;/a&gt;
is a great introduction into the issues and rewards of quantitatively
measuring usability.&amp;nbsp; Articles expound upon the intracies of &lt;a href="http://www.measuringusability.com/task_times.html"&gt;task timing&lt;/a&gt;, &lt;a href="http://www.measuringusability.com/random.htm"&gt;task order randomization&lt;/a&gt;, and a fresh approach to &lt;a href="http://www.measuringusability.com/sample.htm"&gt;thinking about sample size&lt;/a&gt;.&amp;nbsp;
Based upon a initial reading, these articles all express themes in line
with the design rationale of Uzilla.net. For instance, Uzilla.net allows partialing
out page load time, supports task order randomization, and of course,
by easing the preparation and analysis phases, enables a greater number
of participants.&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/02/13/</guid><pubDate>Fri, 13 Feb 2004 15:34:09 GMT</pubDate><category>Testing</category></item><item postdate="2004/00/12"><title>Open Source Credits and Related Resources</title><description>Two new pages, works in progress, offer &lt;a href="http://uzilla.net/uzilla/blog/credits.cfm"&gt;credits&lt;/a&gt; to open source code and related public resources utilized in Uzilla as well as code contributed back to open source.&amp;nbsp; The &lt;a href="http://www.uzilla.net/uzilla/blog/related/"&gt;related tools&lt;/a&gt; page points to other resources for web developers and user experience professionals.&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/01/12/</guid><pubDate>Tue, 13 Jan 2004 02:17:30 GMT</pubDate></item><item postdate="2003/11/01"><title> Macintosh OS X for Usability Professionals?</title><description>OS X is very popular among internet developers and designers, with the
availability of Macromedia and Adobe tools.&amp;nbsp; Is OS X a reasonable
choice for a usability professional?&lt;br&gt;
&lt;br&gt;
Uzilla, LLC's tools, the browser-based &lt;a href="http://uzilla.net/uzilla/info/products/"&gt;usability testing suite&lt;/a&gt;, &lt;a href="http://uzilla.mozdev.org/heuristicreview.html"&gt;uzReview&lt;/a&gt;, and &lt;a href="http://uzilla.mozdev.org/cardsort.html"&gt;uzCardSort&lt;/a&gt; all work on OS X.&amp;nbsp; &lt;a href="http://www.usersfirst.com/index.html"&gt;UsersFirst&lt;/a&gt; has recently introduced a video capture system that requires a mac laptop.&amp;nbsp; &lt;a href="http://www.itee.uq.edu.au/cerg/macshapa.htm"&gt;MacSHAPA&lt;/a&gt;, a longstanding video analysis tool, is coming to OS X.&lt;br&gt;
&lt;br&gt;
Hmm, a &lt;a href="http://www.apple.com/powermac/"&gt;g5&lt;/a&gt; or a &lt;a href="http://www.apple.com/powerbook/"&gt;tiBook&lt;/a&gt;?&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2003/12/01/</guid><pubDate>Mon, 01 Dec 2003 18:15:23 GMT</pubDate></item><item postdate="2003/10/17"><title>Quantifying Lost in Hyperspace</title><description>Smith (1996) proposed a measure of "lostness" in hypertext structures
that centers around page revisits.&amp;nbsp; The lostness measure shown
below, from a data table from the Uzilla.net reporting application ,
depicts the most lost users in a recent test.&amp;nbsp; &lt;br&gt;
&lt;br&gt;&lt;span title="Using client side dhtml"&gt;Sorted&lt;/span&gt; by lostness ascending, the pictured users exhibit
high rates of page revisitation which Smith argues indicates the users
are lost.&amp;nbsp; Efficiency on the other hand takes into account
redundant page views, but also deals with the total number of page
views versus the minimal (or "optimal") number.&amp;nbsp; The two measures
are correlated but not perfectly, as users with the same lostness may
vary in efficiency.&lt;br&gt;
&lt;br&gt;Lower values of lostness indicate more confusion and lower values of efficiency are better.&lt;br&gt;
&amp;nbsp;&lt;br&gt;
 &lt;img src="http://uzilla.net/uzilla/blog/images/pasmith_lostness_efficiency.gif" title="screenshot of P.A. Smith lostness and efficiency measures" alt="Table showing measures of lostness and efficiency"&gt;&lt;br&gt;
&lt;br&gt;
We're not totally convinced this measure captures negative user
experiences in all cases.&amp;nbsp; Certainly, in a shopping scenario a
user might revisit a product page repeatedly while comparing it to
other options -- and that's a desirable business outcome. In other
applications, revisitation may be a clear indicator of confusion.&amp;nbsp;
&lt;br&gt;
&lt;br&gt;
We'll report on correlations between this measure of confusion and other measures we've been cultivating in the coming months.&lt;br&gt;
&lt;br&gt;


Smith, P.A.: Towards a practical measure of hypertext usability. Interacting with Computers 8 (4) (1996) pp. 365-381
&lt;a href="http://citeseer.nj.nec.com/context/898955/0"&gt;http://citeseer.nj.nec.com/context/898955/0&lt;/a&gt;&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2003/11/17/#index</guid><pubDate>Mon, 17 Nov 2003 05:02:20 GMT</pubDate><category>Web Usability</category></item><item postdate="2004/07/25"><title>New Uzilla Component: Obzerver</title><description>The &lt;a href="http://uzilla.mozdev.org/obzerver.html"&gt;Obzerver module&lt;/a&gt; provides an open source implementation of a click
stream monitor.&amp;nbsp; It writes log files to the local hard drive in
Mozilla Firefox and the Mozilla suite.&lt;br&gt;
&lt;br&gt;
The stored data is in the &lt;a href="http://zing.ncsl.nist.gov/WebTools/FLUD/overview.html"&gt;FLUD format&lt;/a&gt;, proposed by NIST in 2002:&lt;br&gt;
&lt;code&gt;loghead 2004/6/15-8:55:39 subject=100 version=v1 time_zone=-5 generator=obzerver&lt;br&gt;
event 2004/7/15-8:55:40.401 1:0
url=http://www.mozilla.org/products/firefox/start/&lt;br&gt;
#OP newpage complete
* url=http://www.mozilla.org/products/firefox/start/&lt;br&gt;
logend 2004/6/15-8:56:21&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
This FLUD sample shows only the page level data.&amp;nbsp; Low level event
data is also partially complete but not yet integrated with logging.&lt;br&gt;
&lt;br&gt;
The FLUD format calls for identifying the sources of navigation
elements and in the web scenario might allow us to quantify the
relative proportions of methods for accessing new content.&amp;nbsp;
C.Soules (a CMU CompSci grad student) crafted the Obzerver
implementation and is interested in the source events for a different
reason; for the meta data they provide.&amp;nbsp; &lt;br&gt;
&lt;br&gt;&lt;a href="http://uzilla.mozdev.org/obzerver.html"&gt;
Obzerver&lt;/a&gt; is ready for use today for simple url logging and with a bit
more effort for more complete event traces.&amp;nbsp; The Uzilla.net suite
provides these rich event traces, a way to model your test protocol,
and data analysis.&amp;nbsp; &lt;br&gt;
&lt;br&gt;
If you're interested in helping with the project, check the out the &lt;a href="http://bugzilla.mozdev.org/buglist.cgi?short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=uzilla&amp;amp;component=obzerver&amp;amp;long_desc_type=allwordssubstr&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=allwords&amp;amp;keywords=&amp;amp;bug_status=NEW&amp;amp;bug_status=ASSIGNED&amp;amp;bug_status=REOPENED&amp;amp;emailassigned_to1=1&amp;amp;emailtype1=substring&amp;amp;email1=&amp;amp;emailassigned_to2=1&amp;amp;emailreporter2=1&amp;amp;emailqa_contact2=1&amp;amp;emailcc2=1&amp;amp;emailtype2=substring&amp;amp;email2=&amp;amp;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;changedin=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;newqueryname=&amp;amp;order=Bug+Number&amp;amp;field0-0-0=noop&amp;amp;type0-0-0=noop&amp;amp;value0-0-0="&gt;bug list&lt;/a&gt;.&amp;nbsp;
Commenting on bugs and filing new ones is a great way to start getting
involved. For a meta-view on how this works, check the working paper &lt;a href="http://www.cs.waikato.ac.nz/%7Edaven/docs/wp-08-2004.html"&gt;Usability Discussions in Open Source&lt;/a&gt;.&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/07/15/</guid><pubDate>Thu, 15 Jul 2004 12:58:13 GMT</pubDate></item><item postdate="2004/05/24"><title>A Better Multi-Select Widget: Open Source DHTML</title><description>In a recent usability study, we observed that &lt;b&gt;the intranet user base was
unfamiliar with the convention of control-click&lt;/b&gt; for selecting multiple
options in an HTML menulist widget.&lt;br&gt;
&lt;br&gt;
To address this issue, we used checkboxes and DHTML to eliminates the need to&amp;nbsp; control-click to select multiple
items. In addition to creating an affordance multiple selection, this
system also provides better system status information.&amp;nbsp;&amp;nbsp; &lt;br&gt;
&lt;br&gt;
An example is shown below in which the user has already selected
two options from the first two collections and is working on the third:
The design saves clicks and screen real esate by making the checkbox
containers collapsible.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://uzilla.net/uzilla/my/widgets/multiselect/"&gt;&lt;img src="http://uzilla.net/uzilla/blog/images/a_better_multi_select_widget.gif" alt="A better multiple select widget."&gt;&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
The code is available as open source using the business friendly MPL license. &lt;a href="http://uzilla.net/uzilla/my/widgets/multiselect/"&gt;More information, a live demo, and the source.&lt;/a&gt;&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/06/24/</guid><pubDate>Thu, 24 Jun 2004 20:33:51 GMT</pubDate></item><item postdate="2004/03/27"><title>Form Design: Chunking for Efficiency</title><description>&amp;nbsp;&lt;br&gt;
 In a recent evaluation with a moderately large sample of 30, the following form was tested.&lt;br&gt;
&lt;img alt="A two column form layout" border="1" src="http://uzilla.net/uzilla/blog/images/mich_form_thumbnail.png"&gt;&lt;br&gt;
&lt;br&gt;
&lt;img alt=" Observed orders of form completion" src="http://uzilla.net/uzilla/blog/images/mich_order_diagram.png" align="right"&gt;We
observed three different orders of execution in the data.&amp;nbsp; The
rather jumbled nature of the form layout contributed to this problem.&amp;nbsp; A
bigger issue was the lack of grouping of related fields, taking significant additional cognitive processing.&lt;br&gt;
&lt;br&gt;
HTML has fieldset and legend tags to solve this problem.&amp;nbsp; In this
case, re-ordering and changing the layout of the fields was
required.&amp;nbsp; Here's an example of a fieldset:&lt;br&gt;
&lt;br&gt;&lt;fieldset&gt;&lt;legend&gt;Uzilla Services&lt;/legend&gt;&lt;input type="checkbox" ="" id="testing"&gt;&lt;label for="testing"&gt;Test Design &amp;amp; Logging&lt;/label&gt;&lt;br&gt;&lt;input type="checkbox" id="screenshare"&gt;&lt;label for="screenshare"&gt;Screenshare&lt;/label&gt;&lt;br&gt;&lt;input t="" type="checkbox" id="realtime"&gt;&lt;label for="realtime"&gt;Realtime Monitor&lt;/label&gt;&lt;br&gt;&lt;/fieldset&gt;&lt;br&gt;
&lt;br clear="all"&gt;&lt;img alt="Expected ordering of revised form design." src="http://uzilla.net/uzilla/blog/images/mich_revised_order_diagram.png" align="left"&gt;We
project a more regular pattern, shown at left, in the revised design.
More importantly, we expect that the percentage of users skipping a
field will decrease dramatically.&amp;nbsp; Thirty percent of users missed
a field and lost time upwards of a minute in some cases.&lt;br&gt;
&lt;br&gt;
There is ROI on layout and visual design, in case there was any doubt.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;

</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/04/27/</guid><pubDate>Wed, 28 Apr 2004 01:25:24 GMT</pubDate><category>Prototyping</category><category>Testing</category></item><item postdate="2004/01/13"><title>Analyzing Usability Quantitatively</title><description>Jeff Sauro's site &lt;a href="http://www.measuringusability.com"&gt;measuring usability .com&lt;/a&gt;
is a great introduction into the issues and rewards of quantitatively
measuring usability.&amp;nbsp; Articles expound upon the intracies of &lt;a href="http://www.measuringusability.com/task_times.html"&gt;task timing&lt;/a&gt;, &lt;a href="http://www.measuringusability.com/random.htm"&gt;task order randomization&lt;/a&gt;, and a fresh approach to &lt;a href="http://www.measuringusability.com/sample.htm"&gt;thinking about sample size&lt;/a&gt;.&amp;nbsp;
Based upon a initial reading, these articles all express themes in line
with the design rationale of Uzilla.net. For instance, Uzilla.net allows partialing
out page load time, supports task order randomization, and of course,
by easing the preparation and analysis phases, enables a greater number
of participants.&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/02/13/</guid><pubDate>Fri, 13 Feb 2004 15:34:09 GMT</pubDate><category>Testing</category></item><item postdate="2004/00/12"><title>Open Source Credits and Related Resources</title><description>Two new pages, works in progress, offer &lt;a href="http://uzilla.net/uzilla/blog/credits.cfm"&gt;credits&lt;/a&gt; to open source code and related public resources utilized in Uzilla as well as code contributed back to open source.&amp;nbsp; The &lt;a href="http://www.uzilla.net/uzilla/blog/related/"&gt;related tools&lt;/a&gt; page points to other resources for web developers and user experience professionals.&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2004/01/12/</guid><pubDate>Tue, 13 Jan 2004 02:17:30 GMT</pubDate></item><item postdate="2003/11/01"><title> Macintosh OS X for Usability Professionals?</title><description>OS X is very popular among internet developers and designers, with the
availability of Macromedia and Adobe tools.&amp;nbsp; Is OS X a reasonable
choice for a usability professional?&lt;br&gt;
&lt;br&gt;
Uzilla, LLC's tools, the browser-based &lt;a href="http://uzilla.net/uzilla/info/products/"&gt;usability testing suite&lt;/a&gt;, &lt;a href="http://uzilla.mozdev.org/heuristicreview.html"&gt;uzReview&lt;/a&gt;, and &lt;a href="http://uzilla.mozdev.org/cardsort.html"&gt;uzCardSort&lt;/a&gt; all work on OS X.&amp;nbsp; &lt;a href="http://www.usersfirst.com/index.html"&gt;UsersFirst&lt;/a&gt; has recently introduced a video capture system that requires a mac laptop.&amp;nbsp; &lt;a href="http://www.itee.uq.edu.au/cerg/macshapa.htm"&gt;MacSHAPA&lt;/a&gt;, a longstanding video analysis tool, is coming to OS X.&lt;br&gt;
&lt;br&gt;
Hmm, a &lt;a href="http://www.apple.com/powermac/"&gt;g5&lt;/a&gt; or a &lt;a href="http://www.apple.com/powerbook/"&gt;tiBook&lt;/a&gt;?&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2003/12/01/</guid><pubDate>Mon, 01 Dec 2003 18:15:23 GMT</pubDate></item><item postdate="2003/10/17"><title>Quantifying Lost in Hyperspace</title><description>Smith (1996) proposed a measure of "lostness" in hypertext structures
that centers around page revisits.&amp;nbsp; The lostness measure shown
below, from a data table from the Uzilla.net reporting application ,
depicts the most lost users in a recent test.&amp;nbsp; &lt;br&gt;
&lt;br&gt;&lt;span title="Using client side dhtml"&gt;Sorted&lt;/span&gt; by lostness ascending, the pictured users exhibit
high rates of page revisitation which Smith argues indicates the users
are lost.&amp;nbsp; Efficiency on the other hand takes into account
redundant page views, but also deals with the total number of page
views versus the minimal (or "optimal") number.&amp;nbsp; The two measures
are correlated but not perfectly, as users with the same lostness may
vary in efficiency.&lt;br&gt;
&lt;br&gt;Lower values of lostness indicate more confusion and lower values of efficiency are better.&lt;br&gt;
&amp;nbsp;&lt;br&gt;
 &lt;img src="http://uzilla.net/uzilla/blog/images/pasmith_lostness_efficiency.gif" title="screenshot of P.A. Smith lostness and efficiency measures" alt="Table showing measures of lostness and efficiency"&gt;&lt;br&gt;
&lt;br&gt;
We're not totally convinced this measure captures negative user
experiences in all cases.&amp;nbsp; Certainly, in a shopping scenario a
user might revisit a product page repeatedly while comparing it to
other options -- and that's a desirable business outcome. In other
applications, revisitation may be a clear indicator of confusion.&amp;nbsp;
&lt;br&gt;
&lt;br&gt;
We'll report on correlations between this measure of confusion and other measures we've been cultivating in the coming months.&lt;br&gt;
&lt;br&gt;


Smith, P.A.: Towards a practical measure of hypertext usability. Interacting with Computers 8 (4) (1996) pp. 365-381
&lt;a href="http://citeseer.nj.nec.com/context/898955/0"&gt;http://citeseer.nj.nec.com/context/898955/0&lt;/a&gt;&lt;br&gt;
</description><guid isPermaLink="true">http://uzilla.net/uzilla/blog/2003/11/17/#index</guid><pubDate>Mon, 17 Nov 2003 05:02:20 GMT</pubDate><category>Web Usability</category></item></channel></rss>
