home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / w3_image / backstar.arj / README.TXT < prev   
Text File  |  1992-01-31  |  1KB  |  44 lines

  1. Backstars v3.0 Copyright ⌐1992 Dave Carey.
  2.  
  3. This program replaces your windows desktop wallpaper with the
  4. ubiquitous animated 3d starfield. When you exit, the desktop wallpaper 
  5. is restored to normal. There is a control dialog box for the number of 
  6. stars (10 - 80) and the apparent speed (0 - 50). This can be accessed by
  7. double clicking on the program's icon.
  8.  
  9. Copy BACKSTAR.EXE and BLACK.BMP to any directory in your DOS path and add
  10. it to a program manager group if desired.
  11.  
  12. This program is shareware. Please send ú5 to:
  13.  
  14. Dave Carey
  15. 51 Hereson Road
  16. Ramsgate
  17. Kent
  18. CT11 7DR
  19.  
  20. You will receive the latest version without the shareware notice.
  21.  
  22. =========================================================================
  23. Technical note:
  24.  
  25. The program uses the undocumented call SETDESKWALLPAPER to make the
  26. black backdrop and uses the else part of a peekmessage loop to move
  27. the stars so that it does not interfere with other software although
  28. it may slow down the animations of some screen savers a little.
  29.  
  30.     repeat
  31.       if peekmessage(message,0,0,0,Pm_remove) then
  32.       begin
  33.         if (hdlg=0) or not(isdialogmessage(hdlg,message)) then
  34.         begin
  35.           translatemessage(message);
  36.           dispatchmessage(message);
  37.           if message.message=wm_quit then finished:=true;
  38.         end;
  39.           end
  40.       else
  41.         movestar;    { If no messages in queue then move a star}
  42.     until finished;
  43.  
  44. January 1992