home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Games / GameTracker / docs / pop.doc < prev    next >
Encoding:
Text File  |  1997-12-27  |  1.2 KB  |  42 lines

  1. POP - A little popup message program using ClassAct
  2. ---------------------------------------------------
  3.  
  4. Pop is a cli command that displays a little message
  5. box with message and image for a user specified time
  6. period.
  7.  
  8. It can be used to display a message while a large
  9. program loads.
  10.  
  11. Usage:
  12.  
  13. pop <image filename> <message> <delay value>
  14.  
  15. image filename selects the filename of the pic to view,
  16. it should be a fairly small image and one that can
  17. be loaded by datatypes.
  18.  
  19. message is a string message, place it in quotes if it
  20. has any spaces in it, note: it can only be a single
  21. line message and C style '\n' won't work.
  22.  
  23. delay value, 20 is a fair amount, it uses Intuiticks
  24. so the speed of your CPU shouldn't affect it.
  25. Just experiment with the values.
  26.  
  27. ALL of these parameters are required, if you make
  28. a mistake and forget any of these you can CTRL C
  29. the program or use 'break'.
  30.  
  31.  
  32. An Example of Usage.
  33.  
  34. pop c:pic.iff "Loading Blah...." 20
  35. -----------------------------------------------------
  36.  
  37. This program is just a quick exercise and has not
  38. been tested extensively. There could be bugs and
  39. sideaffects, if there are then don't use it.
  40. Also please don't ask me to do a non-ClassAct or MUI
  41. version.
  42.