<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-13164798</id><updated>2011-04-22T06:30:28.339+10:00</updated><title type='text'>Web Usability</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-13164798.post-113262194996258726</id><published>2005-11-22T12:12:00.000+11:00</published><updated>2006-11-15T07:28:59.279+11:00</updated><title type='text'></title><content type='html'>Just got this cool application called Journler. It's great! Check it out here &lt;a href="http://journler.phildow.net/" target="_blank"&gt;http://journler.phildow.net/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13164798-113262194996258726?l=victorthesis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/113262194996258726/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13164798&amp;postID=113262194996258726' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/113262194996258726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/113262194996258726'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/2005/11/just-got-this-cool-application-called.html' title=''/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13164798.post-112601152980048006</id><published>2005-09-06T22:54:00.000+10:00</published><updated>2006-11-15T07:28:59.067+11:00</updated><title type='text'>mouseDown</title><content type='html'>Yes, I've finally captured mouss clicks. Ended up using the overlay view on top of the WebView. Now what I need to do is to pass all the other mouse events to be handled by the WebView.&lt;br /&gt;&lt;br /&gt;I was able to get around to capturing the mouse click by removing the overlay view, and using the hitTest method (to get to the deepest subview of the WebView), I was able to get to the right class to pass the NSEvent to. After the event has been handled the overlay view is put back on top.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13164798-112601152980048006?l=victorthesis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/112601152980048006/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13164798&amp;postID=112601152980048006' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112601152980048006'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112601152980048006'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/2005/09/mousedown.html' title='mouseDown'/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13164798.post-112497445918834607</id><published>2005-08-21T22:48:00.000+10:00</published><updated>2006-11-15T07:28:58.811+11:00</updated><title type='text'>Capture view</title><content type='html'>Tried using another view over the top of the WebView to capture mouse events. Not as straight forward as I thought. Sure the mouse events worked, but I was not able to pass the mouse events down to the WebView.&lt;br /&gt;&lt;br /&gt;The classes were arranged as follows:&lt;br /&gt;WebView -&gt; HawkView -&gt; HawkCaptureView&lt;br /&gt;&lt;br /&gt;From HawkCaptureView I had:&lt;br /&gt;&lt;br /&gt;- (void)mouseDown:(NSEvent *)theEvent&lt;br /&gt;{&lt;br /&gt; NSLog(@"mouseDown");&lt;br /&gt; [super mouseDown:theEvent];&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;The mousedown is detected and then passes it to HawkView which is the super class. However I just realised that I need to be passing it to the view which renders the HTML.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13164798-112497445918834607?l=victorthesis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/112497445918834607/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13164798&amp;postID=112497445918834607' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112497445918834607'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112497445918834607'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/2005/08/capture-view.html' title='Capture view'/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13164798.post-112497409651391127</id><published>2005-08-19T22:46:00.000+10:00</published><updated>2006-11-15T07:28:58.623+11:00</updated><title type='text'>First outputs</title><content type='html'>Here's some sample output from Hawk (my browser):&lt;br /&gt;&lt;br /&gt;page request made&lt;br /&gt;load complete&lt;br /&gt;mouseover&lt;br /&gt;&lt;br /&gt;Still need to add timestamps and descriptions.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13164798-112497409651391127?l=victorthesis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/112497409651391127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13164798&amp;postID=112497409651391127' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112497409651391127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112497409651391127'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/2005/08/first-outputs.html' title='First outputs'/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13164798.post-112418492851959679</id><published>2005-08-16T19:33:00.000+10:00</published><updated>2006-11-15T07:28:58.447+11:00</updated><title type='text'>Morae review</title><content type='html'>&lt;b&gt;What:&lt;/b&gt;&lt;br /&gt;Morae is a software package written for the Windows platform. It’s main objective is to provide an environment which is similar to a usability test lab. The software consists of Morae Recorder, Morae Remote Viewer and Morae Manager.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Why:&lt;/b&gt;&lt;br /&gt;- Eliminating the barriers of lab-based research.&lt;br /&gt;- Perform user testing anywhere, anytime.&lt;br /&gt;- Easily capture user experience.&lt;br /&gt;- Easily observer and log test sessions.&lt;br /&gt;- Quickly analyse user tests.&lt;br /&gt;- Easily communicate user needs.&lt;br /&gt;- Cheaper to run than having a usability lab.&lt;br /&gt;- Reduces the intimidating environment of a usability lab.&lt;br /&gt;- Having a real time recording allows for remote testing (even across the globe).&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Recorder:&lt;/i&gt;&lt;br /&gt;- Records everything done by the user and stored to a file.&lt;br /&gt;- Unobtrusive&lt;br /&gt;- How a website is navigated, click of the mouse, keystrokes, text on the screen, and windows and dialogues user interacts with.&lt;br /&gt;- Robust file recovery to protect critical data.&lt;br /&gt;- Markers, turn on specific elements to record&lt;br /&gt;- Specify when to start and stop&lt;br /&gt;- Built-in COM server, control recorder remotely&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Remote Viewer:&lt;/i&gt;&lt;br /&gt;- People from all over the world can see the test being done live.&lt;br /&gt;- Comments can also be made as the test is conducted.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Analyzer/Manager:&lt;/i&gt;&lt;br /&gt;- Markers are shown at points where comments were made.&lt;br /&gt;- Each marker is also linked to the time in video it was made.&lt;br /&gt;- Mouse click are kept and viewing it gives u the picture, showing the position of where the mouse click occurred.&lt;br /&gt;&lt;br /&gt;Morae is doing pretty much what I've been trying to do. &lt;br /&gt;For more info check out their website: &lt;a href="http://www.techsmith.com/products/morae/default.asp"&gt;http://www.techsmith.com/products/morae/default.asp&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13164798-112418492851959679?l=victorthesis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/112418492851959679/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13164798&amp;postID=112418492851959679' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112418492851959679'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112418492851959679'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/2005/08/morae-review.html' title='Morae review'/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13164798.post-112411230278281361</id><published>2005-08-15T23:19:00.000+10:00</published><updated>2006-11-15T07:28:58.188+11:00</updated><title type='text'>Output info</title><content type='html'>Met up with Wim (doing database backend) today and discussed what kind of data we would need to consider for usability tests. As a rough guide the most crucial things we would need would be:&lt;br /&gt;- Project ID (to distiguish between different projects we are testing)&lt;br /&gt;- Test ID (to distinguish between the different test subjects)&lt;br /&gt;- Timestamps (start and end of the test and also for every action)&lt;br /&gt;- Action (click, right-click, button press, page load, etc.)&lt;br /&gt;&lt;br /&gt;From these we should be able to query things like:&lt;br /&gt;- How many clicks were used on a specific test?&lt;br /&gt;- How many times was a particular page loaded?&lt;br /&gt;- How long did it take to do the tasks?&lt;br /&gt;- etc.&lt;br /&gt;&lt;br /&gt;We've decided to meet more often now, just so that we can get more done, and help each other along. So I should be updating this blog more often from now on, hopefully.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13164798-112411230278281361?l=victorthesis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/112411230278281361/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13164798&amp;postID=112411230278281361' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112411230278281361'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112411230278281361'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/2005/08/output-info.html' title='Output info'/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13164798.post-112272782918796665</id><published>2005-07-30T22:45:00.000+10:00</published><updated>2006-11-15T07:28:58.063+11:00</updated><title type='text'>poseAsClass</title><content type='html'>Using poseAsClass; when using poseAsClass to pose as another class, the posing class must be a subclass of the posed class.&lt;br /&gt;&lt;br /&gt;eg. Class A and Class B&lt;br /&gt;if B wants to pose as A,&lt;br /&gt;then B needs to be a subclass of A for it to work&lt;br /&gt;&lt;br /&gt;Now that I've got poseAsClass sorted out, all that is left is to figure out which class am I supposed to pose as exactly. Since WebFrameView is apparently not the right one. Just read a posting on cocoa-dev and WebHTMLView could be what I'm after.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13164798-112272782918796665?l=victorthesis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/112272782918796665/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13164798&amp;postID=112272782918796665' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112272782918796665'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112272782918796665'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/2005/07/poseasclass.html' title='poseAsClass'/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13164798.post-112169898985542298</id><published>2005-07-19T12:59:00.000+10:00</published><updated>2006-11-15T07:28:57.907+11:00</updated><title type='text'>Update</title><content type='html'>Well not much has happened due to studying for exams and holiday activities. Recently I've been pretty sick so I haven't had much time to do much. Will try to update ASAP. At the moment just revising over paper based designs about how to present statistical data, i.e. what kind of graphs to use, etc.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13164798-112169898985542298?l=victorthesis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/112169898985542298/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13164798&amp;postID=112169898985542298' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112169898985542298'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/112169898985542298'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/2005/07/update.html' title='Update'/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13164798.post-111708559536823076</id><published>2005-05-26T15:30:00.000+10:00</published><updated>2006-11-15T07:28:57.755+11:00</updated><title type='text'>Seminar</title><content type='html'>I DID IT!!&lt;br /&gt;yes the seminar is finally over and done with. I was feeling very nervous about 30 mins before the start, but as I got into the seminar room, it wasn't so bad. It could also be because nobody showed up. So it wasn't too bad.&lt;br /&gt;&lt;br /&gt;There were probably things I missed but overall I felt pretty good about it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13164798-111708559536823076?l=victorthesis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/111708559536823076/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13164798&amp;postID=111708559536823076' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/111708559536823076'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/111708559536823076'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/2005/05/seminar.html' title='Seminar'/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13164798.post-111702860334594526</id><published>2005-05-25T23:41:00.000+10:00</published><updated>2006-11-15T07:28:57.609+11:00</updated><title type='text'>Thesis blog</title><content type='html'>This is a blog about my thesis project, which is on Web Usabiity. &lt;br /&gt;The core of it involves building a web browser on the Mac OSX platform. The browser is capable of recording usability data.&lt;br /&gt;&lt;br /&gt;Thesis A is almost over. Report has been handed in, I have my seminar tomorrow.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13164798-111702860334594526?l=victorthesis.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://victorthesis.blogspot.com/feeds/111702860334594526/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13164798&amp;postID=111702860334594526' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/111702860334594526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13164798/posts/default/111702860334594526'/><link rel='alternate' type='text/html' href='http://victorthesis.blogspot.com/2005/05/thesis-blog.html' title='Thesis blog'/><author><name>Victor</name><uri>http://www.blogger.com/profile/00037745043062448968</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://static.flickr.com/51/168319512_7b143c2382_t.jpg'/></author><thr:total>0</thr:total></entry></feed>
