home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 181.lha / Ticker / ReadME! < prev    next >
Text File  |  1988-04-28  |  2KB  |  47 lines

  1.  
  2. Ticker is PUBLIC DOMAIN and was written by Ray Lambert in 1988.
  3. Executable and source for Ticker may be distributed freely as long as
  4. no fee is charged for it and this file accompanies it.  If you make some
  5. super-incredible modifications to Ticker I'd like to see them!  Please
  6. send me a copy!  You can reach me via USSnail at: 415 Sanford Road,
  7. Westport, MA  02790        Thanx!!
  8.  
  9. Using Ticker:
  10.  
  11.     Ticker will open an Intuition window which consists of a close
  12. gadget, two depth gadgets and a drag bar.  The current system time will
  13. be continuously displayed upon the drag bar in twelve-hour format.  The
  14. window can be conveniently placed upon the Workbench Screen drag bar
  15. where it will be out of your way.  Ticker takes very little memory and
  16. uses very few microprocessor cycles, which means that it won't slow
  17. your system down.  It normally 'sleeps' until it is time to update the
  18. clock display (about every sixty seconds) or until a message from
  19. Intuition arrives to refresh the display, etc. 
  20.      
  21.     Running Ticker:  Using the supplied icon Ticker can be easily run
  22. from Workbench.  From the CLI however you will have to use the AmigaDOS
  23. RUN command ( eg. RUN Ticker ).  If you need to close the CLI that
  24. Ticker is RUN from however, you will have to use RUNBACK (PD) or the
  25. ARP replacement for RUN called ARUN.  If you use ARUN you must specify
  26. the NOIO option ( eg. ARUN Ticker NOIO ).
  27.  
  28.  
  29. Ticker for programmers:
  30.  
  31.     This program was an exercise in learning to work with devices.  In
  32. this program the timer.device is programmed to send a message to a port
  33. (that Ticker creates) every time the 'minute' advances in the system
  34. clock.  timer.device will also be polled for the time every sixty
  35. seconds or so when the time display is updated.  I've put many comments
  36. in here to make it easy to follow and learn from.
  37.  
  38.     Compiling:  Ticker was written with Lattice C then converted to Manx.
  39. It should still compile under Lattice with little or no modification
  40. using the command:  LC -v -L Ticker
  41.     Manx produces a smaller executable code size.  Use the make file
  42. (Ticker.make) to compile under Manx:  MAKE -f Ticker.mak
  43.  
  44.  
  45. Enjoy!!                                - Ray
  46.  
  47.