home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / webobjects / resources / Counter.README < prev    next >
Encoding:
Text File  |  1996-08-23  |  1.1 KB  |  49 lines

  1. WebObject: Counter.wos - Reusable Component
  2. Author: Yann Lechelle - _yann@cam-ani.co.uk_
  3. Date: 15 May 1996
  4. Function: Displays a number with individual digit bitmaps.
  5. Note: Here, we assume that the digits are to be found
  6. in Counter.wo/digits/?.gif with wildcard from 0 to 9
  7. (if not, change the format in the last method)
  8. Artwork: you can find some cool digits at the following URL:
  9. _http://www.dnc.net/users/gsmith/bak/counter.html_
  10.  
  11.  
  12. -----------------------------
  13. Yann posted this a while ago on the mailing list, so now I put it here on the archive.
  14.  
  15. I modified it slightly, so you can now indicate the width and height of the digits to make your page load faster.
  16.  
  17. I also included some digits, not to cool, but you can test this right away.
  18.  
  19. How to use it???
  20. Well, say you put this in your Main.wo:
  21.  
  22. .html
  23. ------------------
  24. <WEBOBJECT NAME="Count"></WEBOBJECT>
  25.  
  26. .wod
  27. -------------------
  28. Count:Counter {
  29.   digitHeight=20;
  30.   digitWidth=20;
  31.   value = WOApp.counter;
  32. };
  33.  
  34. .wos
  35. -----------------------
  36. - willPrepareForRequest:r inContext:c
  37. {
  38.   [WOApp setCounter:[WOApp counter]+1];
  39. }
  40.  
  41. Application.wos
  42. -----------------------
  43. id counter;
  44.  
  45. - awake
  46. {
  47.   counter = 0;
  48. }
  49.