Don Rickert was engaged at the NCR Human Interface Technology Center (HITC) as a consultant in the
User-Centered Design Group from 1995-1998.
In addition to ATMs and point-of-sale (POS) terminals, NCR is also the leader in the manufacturer of the Self-Checkout Terminals (SCOTS) that are appearing with increasing frequency in retail establishments. Don Rickert served as a research design/statistical analysis adviser during the consumer research stages of its Self-Checkout Terminal development. Don designed a number of User Experience (UX) and Usability studies as part of this initiative. He also performed many of the complex statistical analysis on the data from these studies.
Click on any of the images for larger views.
Hi, great progress bar .. works perceft .just an addition if you need the progress bar to change to a specific colour only at 100% (in my case red) here are the changes:in bramus/jsProgressBarHandler.js function:_setBgPosition: function(percentage)change var newBackIndex tovar newBackIndex= Math.floor((percentage-1) / (100/(this.options.barImage.length-1)));and add after that :if (percentage == 100){var newBackIndex = this.options.barImage.length-1;}so the way it works is it will cause the last image in your list of images for the progress bar to only show at 100 percent other than that whatever other images you use will work as it did before e.g. if i was using the example code where there are 4 images first one is a green bar, second yellow, thrid orange and fourth red, this new code will cause green to load until 33%, yellow until 66% and orange until 99% and red at 100%.
Posted by: Kimberly | 10/03/2012 at 11:27 PM