home *** CD-ROM | disk | FTP | other *** search
- WebObject: Counter.wos - Reusable Component
- Author: Yann Lechelle - _yann@cam-ani.co.uk_
- Date: 15 May 1996
- Function: Displays a number with individual digit bitmaps.
- Note: Here, we assume that the digits are to be found
- in Counter.wo/digits/?.gif with wildcard from 0 to 9
- (if not, change the format in the last method)
- Artwork: you can find some cool digits at the following URL:
- _http://www.dnc.net/users/gsmith/bak/counter.html_
-
-
- -----------------------------
- Yann posted this a while ago on the mailing list, so now I put it here on the archive.
-
- I modified it slightly, so you can now indicate the width and height of the digits to make your page load faster.
-
- I also included some digits, not to cool, but you can test this right away.
-
- How to use it???
- Well, say you put this in your Main.wo:
-
- .html
- ------------------
- <WEBOBJECT NAME="Count"></WEBOBJECT>
-
- .wod
- -------------------
- Count:Counter {
- digitHeight=20;
- digitWidth=20;
- value = WOApp.counter;
- };
-
- .wos
- -----------------------
- - willPrepareForRequest:r inContext:c
- {
- [WOApp setCounter:[WOApp counter]+1];
- }
-
- Application.wos
- -----------------------
- id counter;
-
- - awake
- {
- counter = 0;
- }
-